Compound device edit dialog
77
Software/PC_Application/Device/compounddevice.cpp
Normal file
@ -0,0 +1,77 @@
|
||||
#include "compounddevice.h"
|
||||
|
||||
CompoundDevice::CompoundDevice()
|
||||
{
|
||||
name = "";
|
||||
sync = Synchronization::USB;
|
||||
}
|
||||
|
||||
nlohmann::json CompoundDevice::toJSON()
|
||||
{
|
||||
nlohmann::json j;
|
||||
j["name"] = name.toStdString();
|
||||
j["synchronization"] = SyncToString(sync).toStdString();
|
||||
nlohmann::json jserials;
|
||||
for(auto d : deviceSerials) {
|
||||
jserials.push_back(d.toStdString());
|
||||
}
|
||||
j["devices"] = jserials;
|
||||
nlohmann::json jmappings;
|
||||
for(auto m : portMapping) {
|
||||
nlohmann::json jmapping;
|
||||
jmapping["device"] = m.device;
|
||||
jmapping["port"] = m.port;
|
||||
jmappings.push_back(jmapping);
|
||||
}
|
||||
j["mapping"] = jmappings;
|
||||
|
||||
return j;
|
||||
}
|
||||
|
||||
void CompoundDevice::fromJSON(nlohmann::json j)
|
||||
{
|
||||
name = QString::fromStdString(j.value("name", "CompoundDevice"));
|
||||
sync = SyncFromString(QString::fromStdString(j.value("synchronization", "USB")));
|
||||
deviceSerials.clear();
|
||||
if(j.contains("devices")) {
|
||||
for(auto js : j["devices"]) {
|
||||
deviceSerials.push_back(QString::fromStdString(js));
|
||||
}
|
||||
}
|
||||
portMapping.clear();
|
||||
if(j.contains("mapping")) {
|
||||
for(auto jm : j["mapping"]) {
|
||||
PortMapping mapping;
|
||||
mapping.device = jm.value("device", 0);
|
||||
mapping.port = jm.value("port", 0);
|
||||
portMapping.push_back(mapping);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
QString CompoundDevice::SyncToString(CompoundDevice::Synchronization sync)
|
||||
{
|
||||
switch(sync) {
|
||||
case Synchronization::USB: return "USB";
|
||||
case Synchronization::ExtRef: return "Ext. Ref.";
|
||||
case Synchronization::Trigger: return "Trigger";
|
||||
default:
|
||||
case Synchronization::Last: return "Invalid";
|
||||
}
|
||||
}
|
||||
|
||||
CompoundDevice::Synchronization CompoundDevice::SyncFromString(QString s)
|
||||
{
|
||||
for(int i=0;i<(int) Synchronization::Last;i++) {
|
||||
if(SyncToString((Synchronization)i) == s) {
|
||||
return (Synchronization) i;
|
||||
}
|
||||
}
|
||||
// default to USB
|
||||
return Synchronization::USB;
|
||||
}
|
||||
|
||||
QString CompoundDevice::getDesription()
|
||||
{
|
||||
return name + ", "+QString::number(deviceSerials.size())+" devices, "+QString::number(portMapping.size())+" ports in total";
|
||||
}
|
43
Software/PC_Application/Device/compounddevice.h
Normal file
@ -0,0 +1,43 @@
|
||||
#ifndef COMPOUNDDEVICE_H
|
||||
#define COMPOUNDDEVICE_H
|
||||
|
||||
#include "savable.h"
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include <QString>
|
||||
|
||||
class CompoundDevice : public Savable
|
||||
{
|
||||
friend class CompoundDeviceEditDialog;
|
||||
public:
|
||||
CompoundDevice();
|
||||
|
||||
virtual nlohmann::json toJSON();
|
||||
virtual void fromJSON(nlohmann::json j);
|
||||
|
||||
class PortMapping {
|
||||
public:
|
||||
unsigned int device;
|
||||
unsigned int port;
|
||||
};
|
||||
|
||||
enum class Synchronization {
|
||||
USB,
|
||||
ExtRef,
|
||||
Trigger,
|
||||
Last
|
||||
};
|
||||
|
||||
static QString SyncToString(Synchronization sync);
|
||||
static Synchronization SyncFromString(QString s);
|
||||
|
||||
QString getDesription();
|
||||
|
||||
QString name;
|
||||
Synchronization sync;
|
||||
std::vector<QString> deviceSerials;
|
||||
std::vector<PortMapping> portMapping;
|
||||
};
|
||||
|
||||
#endif // COMPOUNDDEVICE_H
|
548
Software/PC_Application/Device/compounddeviceeditdialog.cpp
Normal file
@ -0,0 +1,548 @@
|
||||
#include "compounddeviceeditdialog.h"
|
||||
#include "ui_compounddeviceeditdialog.h"
|
||||
|
||||
#include "device.h"
|
||||
|
||||
#include <QPushButton>
|
||||
#include <QDrag>
|
||||
#include <QMimeData>
|
||||
#include <QMouseEvent>
|
||||
#include <QStandardItemModel>
|
||||
|
||||
using namespace std;
|
||||
|
||||
CompoundDeviceEditDialog::CompoundDeviceEditDialog(CompoundDevice *cdev, QWidget *parent) :
|
||||
QDialog(parent),
|
||||
ui(new Ui::CompoundDeviceEditDialog)
|
||||
{
|
||||
ldev = *cdev;
|
||||
ui->setupUi(this);
|
||||
|
||||
connect(ui->name, &QLineEdit::editingFinished, [=](){
|
||||
ldev.name = ui->name->text();
|
||||
checkIfOkay();
|
||||
});
|
||||
for(int i=0;i<(int)CompoundDevice::Synchronization::Last;i++) {
|
||||
ui->sync->addItem(CompoundDevice::SyncToString((CompoundDevice::Synchronization) i));
|
||||
if((CompoundDevice::Synchronization) i == CompoundDevice::Synchronization::Trigger) {
|
||||
// Disable for now
|
||||
auto *model = qobject_cast<QStandardItemModel *>(ui->sync->model());
|
||||
Q_ASSERT(model != nullptr);
|
||||
bool disabled = true;
|
||||
auto *item = model->item(i);
|
||||
item->setFlags(disabled ? item->flags() & ~Qt::ItemIsEnabled
|
||||
: item->flags() | Qt::ItemIsEnabled);
|
||||
}
|
||||
}
|
||||
connect(ui->sync, &QComboBox::currentTextChanged, [=](){
|
||||
ldev.sync = CompoundDevice::SyncFromString(ui->sync->currentText());
|
||||
updateDeviceFrames();
|
||||
});
|
||||
|
||||
connect(ui->buttonBox->button(QDialogButtonBox::Ok), &QPushButton::clicked, [=](){
|
||||
*cdev = ldev;
|
||||
accept();
|
||||
});
|
||||
connect(ui->buttonBox->button(QDialogButtonBox::Cancel), &QPushButton::clicked, this, &QDialog::reject);
|
||||
|
||||
connect(ui->buttonBox->button(QDialogButtonBox::Save), &QPushButton::clicked, [=](){
|
||||
ldev.saveToFileDialog("Save compound device", "Compound device file (*.cdev)", ".cdev");
|
||||
});
|
||||
connect(ui->buttonBox->button(QDialogButtonBox::Open), &QPushButton::clicked, [=](){
|
||||
if(ldev.openFromFileDialog("Load compound device", "Compound device file (*.cdev)")) {
|
||||
setInitialGUI();
|
||||
}
|
||||
});
|
||||
|
||||
ui->status->setStyleSheet("QLabel { color : red; }");
|
||||
|
||||
graph = new QWidget();
|
||||
ui->scrollArea->setWidget(graph);
|
||||
auto layout = new QHBoxLayout();
|
||||
graph->setLayout(layout);
|
||||
graph->setAcceptDrops(true);
|
||||
graph->setObjectName("Graph");
|
||||
graph->installEventFilter(this);
|
||||
ui->lLibreVNA1->installEventFilter(this);
|
||||
layout->setContentsMargins(0,0,0,0);
|
||||
layout->setSpacing(0);
|
||||
|
||||
setInitialGUI();
|
||||
}
|
||||
|
||||
CompoundDeviceEditDialog::~CompoundDeviceEditDialog()
|
||||
{
|
||||
delete ui;
|
||||
}
|
||||
|
||||
void CompoundDeviceEditDialog::checkIfOkay()
|
||||
{
|
||||
ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(false);
|
||||
ui->buttonBox->button(QDialogButtonBox::Save)->setEnabled(false);
|
||||
|
||||
if(deviceFrames.size() != ldev.deviceSerials.size()) {
|
||||
// probably still populating the GUI, skip check
|
||||
return;
|
||||
}
|
||||
|
||||
if(ldev.name.isEmpty()) {
|
||||
ui->status->setText("Name must not be empty");
|
||||
return;
|
||||
}
|
||||
if(ldev.deviceSerials.size() < 2) {
|
||||
ui->status->setText("At least two devices are required");
|
||||
return;
|
||||
}
|
||||
if(ldev.deviceSerials.size() > 4) {
|
||||
ui->status->setText("Only up to four devices supported");
|
||||
return;
|
||||
}
|
||||
// Check serials
|
||||
for(int i=0;i<ldev.deviceSerials.size();i++) {
|
||||
ldev.deviceSerials[i] = deviceFrames[i]->getSerial();
|
||||
if(ldev.deviceSerials[i].isEmpty()) {
|
||||
ui->status->setText("Device "+QString::number(i+1)+" has no serial number");
|
||||
return;
|
||||
}
|
||||
}
|
||||
// Check serials for duplicates
|
||||
for(int i=0;i<ldev.deviceSerials.size();i++) {
|
||||
for(int j=i+1;j<ldev.deviceSerials.size();j++) {
|
||||
if(ldev.deviceSerials[i] == ldev.deviceSerials[j]) {
|
||||
ui->status->setText("Duplicate serial number ("+ldev.deviceSerials[i]+") in devices "+QString::number(i+1)+" and "+QString::number(j+1));
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
// Check port mapping
|
||||
// Looking for duplicate and missing ports
|
||||
bool highestPortFound = false;
|
||||
int highestPort;
|
||||
for(int port=0;port<2*ldev.deviceSerials.size();port++) {
|
||||
int num = 0;
|
||||
for(int i=0;i<deviceFrames.size();i++) {
|
||||
if(deviceFrames[i]->getPort1() == port) {
|
||||
num++;
|
||||
}
|
||||
if(deviceFrames[i]->getPort2() == port) {
|
||||
num++;
|
||||
}
|
||||
}
|
||||
if(num > 1) {
|
||||
ui->status->setText("Duplicate port "+QString::number(port+1));
|
||||
return;
|
||||
} else if(num == 0) {
|
||||
if(port == 0) {
|
||||
ui->status->setText("Port 1 must be present");
|
||||
return;
|
||||
}
|
||||
if(!highestPortFound) {
|
||||
highestPort = port;
|
||||
}
|
||||
highestPortFound = true;
|
||||
} else if(highestPortFound) {
|
||||
// port is present, but earlier port was missing
|
||||
ui->status->setText("Missing port: "+QString::number(port+1)+" is selected, but port "+QString::number(port)+" is not present.");
|
||||
return;
|
||||
}
|
||||
}
|
||||
if(!highestPortFound) {
|
||||
highestPort = 2*ldev.deviceSerials.size();
|
||||
}
|
||||
|
||||
// All good, actually create the port mapping
|
||||
ldev.portMapping.clear();
|
||||
for(int port=0;port<highestPort;port++) {
|
||||
CompoundDevice::PortMapping map;
|
||||
bool found = false;
|
||||
for(int i=0;i<deviceFrames.size();i++) {
|
||||
if(deviceFrames[i]->getPort1() == port) {
|
||||
found = true;
|
||||
map.device = i;
|
||||
map.port = 0;
|
||||
break;
|
||||
}
|
||||
if(deviceFrames[i]->getPort2() == port) {
|
||||
found = true;
|
||||
map.device = i;
|
||||
map.port = 1;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if(!found) {
|
||||
ui->status->setText("Failed to find port "+QString::number(port+1)+" (likely a bug)");
|
||||
return;
|
||||
}
|
||||
ldev.portMapping.push_back(map);
|
||||
}
|
||||
|
||||
ui->status->clear();
|
||||
|
||||
ui->buttonBox->button(QDialogButtonBox::Save)->setEnabled(true);
|
||||
ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(true);
|
||||
}
|
||||
|
||||
void CompoundDeviceEditDialog::setInitialGUI()
|
||||
{
|
||||
ui->name->setText(ldev.name);
|
||||
ui->sync->setCurrentText(CompoundDevice::SyncToString(ldev.sync));
|
||||
|
||||
// Removing the old frames actually modifies the state of ldev as well. Block signals to prevent this from happening
|
||||
for(auto f : deviceFrames) {
|
||||
f->blockSignals(true);
|
||||
}
|
||||
|
||||
QHBoxLayout* layout = (QHBoxLayout*) graph->layout();
|
||||
// remove all widgets from the layout
|
||||
if (layout != NULL ) {
|
||||
QLayoutItem* item;
|
||||
while ((item = layout->takeAt(0)) != NULL ) {
|
||||
delete item->widget();
|
||||
delete item;
|
||||
}
|
||||
}
|
||||
deviceFrames.clear();
|
||||
layout->addStretch(1);
|
||||
for(int i=0;i<ldev.deviceSerials.size();i++) {
|
||||
auto frame = new DeviceFrame(&ldev, i);
|
||||
connect(frame, &DeviceFrame::settingChanged, this, &CompoundDeviceEditDialog::checkIfOkay);
|
||||
addFrame(i, frame);
|
||||
}
|
||||
layout->addStretch(1);
|
||||
|
||||
checkIfOkay();
|
||||
}
|
||||
|
||||
DeviceFrame *CompoundDeviceEditDialog::frameAtPosition(int pos)
|
||||
{
|
||||
pos -= graph->layout()->itemAt(0)->geometry().width();
|
||||
if(pos > 0 && pos <= (int) deviceFrames.size() * frameSize) {
|
||||
return deviceFrames[pos / frameSize];
|
||||
}
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
unsigned int CompoundDeviceEditDialog::findInsertPosition(int xcoord)
|
||||
{
|
||||
xcoord -= graph->layout()->itemAt(0)->geometry().width();
|
||||
// added in port 1 network
|
||||
int index = (xcoord + frameSize / 2) / frameSize;
|
||||
if(index < 0) {
|
||||
index = 0;
|
||||
} else if(index > (int) deviceFrames.size()) {
|
||||
index = deviceFrames.size();
|
||||
}
|
||||
// add 1 (first widget is always the stretch)
|
||||
return index + 1;
|
||||
}
|
||||
|
||||
void CompoundDeviceEditDialog::addFrameAtPosition(int pos, DeviceFrame *c)
|
||||
{
|
||||
auto index = findInsertPosition(pos);
|
||||
|
||||
// add component to the deviceFrame vector
|
||||
index -= 1; // first widget is fixed
|
||||
if(index <= deviceFrames.size()) {
|
||||
addFrame(index, c);
|
||||
}
|
||||
}
|
||||
|
||||
void CompoundDeviceEditDialog::addFrame(int index, DeviceFrame *c)
|
||||
{
|
||||
if(deviceFrames.size() == ldev.deviceSerials.size()) {
|
||||
ldev.deviceSerials.insert(ldev.deviceSerials.begin() + index, "");
|
||||
}
|
||||
deviceFrames.insert(deviceFrames.begin() + index, c);
|
||||
deviceFrames[index]->setPosition(index);
|
||||
// remove from list when the component deletes itself
|
||||
connect(c, &DeviceFrame::deleted, [=](){
|
||||
removeDeviceFrame(c);
|
||||
});
|
||||
QHBoxLayout *l = static_cast<QHBoxLayout*>(graph->layout());
|
||||
l->insertWidget(index + 1, c);
|
||||
c->show();
|
||||
updateDeviceFrames();
|
||||
}
|
||||
|
||||
void CompoundDeviceEditDialog::createDragFrame(DeviceFrame *c)
|
||||
{
|
||||
QDrag *drag = new QDrag(this);
|
||||
QMimeData *mimeData = new QMimeData;
|
||||
|
||||
QByteArray encodedPointer;
|
||||
QDataStream stream(&encodedPointer, QIODevice::WriteOnly);
|
||||
stream << quintptr(c);
|
||||
|
||||
mimeData->setData("compoundDeviceFrame/pointer", encodedPointer);
|
||||
drag->setMimeData(mimeData);
|
||||
|
||||
drag->exec(Qt::MoveAction);
|
||||
}
|
||||
|
||||
void CompoundDeviceEditDialog::updateInsertIndicator(int xcoord)
|
||||
{
|
||||
auto index = findInsertPosition(xcoord);
|
||||
QHBoxLayout *l = static_cast<QHBoxLayout*>(graph->layout());
|
||||
l->removeWidget(insertIndicator);
|
||||
l->insertWidget(index, insertIndicator);
|
||||
}
|
||||
|
||||
bool CompoundDeviceEditDialog::eventFilter(QObject *object, QEvent *event)
|
||||
{
|
||||
if(object->objectName() == "Graph") {
|
||||
if(event->type() == QEvent::MouseButtonPress) {
|
||||
auto mouseEvent = static_cast<QMouseEvent*>(event);
|
||||
if (mouseEvent->button() == Qt::LeftButton) {
|
||||
dragFrame = frameAtPosition(mouseEvent->pos().x());
|
||||
if(dragFrame) {
|
||||
dragStartPosition = mouseEvent->pos();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
} else if(event->type() == QEvent::MouseMove) {
|
||||
auto mouseEvent = static_cast<QMouseEvent*>(event);
|
||||
if (!(mouseEvent->buttons() & Qt::LeftButton)) {
|
||||
return false;
|
||||
}
|
||||
if (!dragFrame) {
|
||||
return false;
|
||||
}
|
||||
if ((mouseEvent->pos() - dragStartPosition).manhattanLength()
|
||||
< QApplication::startDragDistance()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// remove and hide component while it is being dragged
|
||||
graph->layout()->removeWidget(dragFrame);
|
||||
dragFrame->hide();
|
||||
removeDeviceFrame(dragFrame);
|
||||
graph->update();
|
||||
|
||||
createDragFrame(dragFrame);
|
||||
return true;
|
||||
} else if(event->type() == QEvent::DragEnter) {
|
||||
auto dragEvent = static_cast<QDragEnterEvent*>(event);
|
||||
if(dragEvent->mimeData()->hasFormat("compoundDeviceFrame/pointer")) {
|
||||
dropPending = true;
|
||||
auto data = dragEvent->mimeData()->data("compoundDeviceFrame/pointer");
|
||||
QDataStream stream(&data, QIODevice::ReadOnly);
|
||||
quintptr dropPtr;
|
||||
stream >> dropPtr;
|
||||
dropFrame = (DeviceFrame*) dropPtr;
|
||||
dragEvent->acceptProposedAction();
|
||||
insertIndicator = new QWidget();
|
||||
insertIndicator->setMinimumSize(2, frameSize);
|
||||
insertIndicator->setMaximumSize(2, frameSize);
|
||||
insertIndicator->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
|
||||
insertIndicator->setStyleSheet("background-color:red;");
|
||||
updateInsertIndicator(dragEvent->pos().x());
|
||||
return true;
|
||||
}
|
||||
} else if(event->type() == QEvent::DragMove) {
|
||||
auto dragEvent = static_cast<QDragMoveEvent*>(event);
|
||||
updateInsertIndicator(dragEvent->pos().x());
|
||||
return true;
|
||||
} else if(event->type() == QEvent::Drop) {
|
||||
auto dragEvent = static_cast<QDropEvent*>(event);
|
||||
delete insertIndicator;
|
||||
addFrameAtPosition(dragEvent->pos().x(), dropFrame);
|
||||
return true;
|
||||
} else if(event->type() == QEvent::DragLeave) {
|
||||
dropPending = false;
|
||||
dropFrame = nullptr;
|
||||
delete insertIndicator;
|
||||
}
|
||||
} else {
|
||||
// clicked/dragged one of the components outside of the graph
|
||||
if(event->type() == QEvent::MouseButtonPress) {
|
||||
auto mouseEvent = static_cast<QMouseEvent*>(event);
|
||||
if (mouseEvent->button() == Qt::LeftButton) {
|
||||
dragStartPosition = mouseEvent->pos();
|
||||
if(object->objectName() == "lLibreVNA1") {
|
||||
dragFrame = new DeviceFrame(&ldev, 0);
|
||||
connect(dragFrame, &DeviceFrame::settingChanged, this, &CompoundDeviceEditDialog::checkIfOkay);
|
||||
} else {
|
||||
dragFrame = nullptr;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
} else if(event->type() == QEvent::MouseMove) {
|
||||
auto mouseEvent = static_cast<QMouseEvent*>(event);
|
||||
if (!(mouseEvent->buttons() & Qt::LeftButton)) {
|
||||
return false;
|
||||
}
|
||||
if (!dragFrame) {
|
||||
return false;
|
||||
}
|
||||
if ((mouseEvent->pos() - dragStartPosition).manhattanLength()
|
||||
< QApplication::startDragDistance()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
createDragFrame(dragFrame);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
void CompoundDeviceEditDialog::removeDeviceFrame(DeviceFrame *dev)
|
||||
{
|
||||
auto it = std::find(deviceFrames.begin(), deviceFrames.end(), dev);
|
||||
if(it == deviceFrames.end()) {
|
||||
// not found, shouldn't happen
|
||||
return;
|
||||
}
|
||||
auto pos = it - deviceFrames.begin();
|
||||
deviceFrames.erase(it);
|
||||
ldev.deviceSerials.erase(ldev.deviceSerials.begin() + pos);
|
||||
// remove all port mappings from the removed device
|
||||
bool mappingFound;
|
||||
do {
|
||||
mappingFound = false;
|
||||
for(int i=0;i<ldev.portMapping.size();i++) {
|
||||
if(ldev.portMapping[i].device == pos) {
|
||||
mappingFound = true;
|
||||
ldev.portMapping.erase(ldev.portMapping.begin() + i);
|
||||
break;
|
||||
}
|
||||
}
|
||||
} while(mappingFound);
|
||||
updateDeviceFrames();
|
||||
}
|
||||
|
||||
void CompoundDeviceEditDialog::updateDeviceFrames()
|
||||
{
|
||||
int i=0;
|
||||
for(auto df : deviceFrames) {
|
||||
df->setPosition(i++);
|
||||
}
|
||||
}
|
||||
|
||||
DeviceFrame::DeviceFrame(CompoundDevice *dev, int position) :
|
||||
dev(dev),
|
||||
position(position)
|
||||
{
|
||||
setMinimumSize(frameSize, frameSize);
|
||||
setMaximumSize(frameSize, frameSize);
|
||||
setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
|
||||
setFocusPolicy(Qt::FocusPolicy::ClickFocus);
|
||||
|
||||
serial = new QComboBox();
|
||||
serial->setEditable(true);
|
||||
port1 = new QComboBox();
|
||||
port2 = new QComboBox();
|
||||
|
||||
connect(serial, &QComboBox::currentTextChanged, this, &DeviceFrame::settingChanged);
|
||||
connect(port1, &QComboBox::currentTextChanged, this, &DeviceFrame::settingChanged);
|
||||
connect(port2, &QComboBox::currentTextChanged, this, &DeviceFrame::settingChanged);
|
||||
|
||||
auto layout = new QVBoxLayout;
|
||||
layout->addStretch(1);
|
||||
auto l1 = new QHBoxLayout;
|
||||
l1->addStretch(1);
|
||||
l1->addWidget(serial);
|
||||
l1->addStretch(1);
|
||||
layout->addLayout(l1);
|
||||
layout->addStretch(1);
|
||||
auto l2 = new QHBoxLayout;
|
||||
l2->addWidget(port1);
|
||||
l2->addStretch(1);
|
||||
l2->addWidget(port2);
|
||||
layout->addLayout(l2);
|
||||
setLayout(layout);
|
||||
|
||||
update();
|
||||
|
||||
// Set initial state
|
||||
if(position < dev->deviceSerials.size()) {
|
||||
serial->setCurrentText(dev->deviceSerials[position]);
|
||||
for(int i=0;i<dev->portMapping.size();i++) {
|
||||
if(dev->portMapping[i].device == position) {
|
||||
if(dev->portMapping[i].port == 0) {
|
||||
port1->setCurrentIndex(i + 1);
|
||||
} else if(dev->portMapping[i].port == 1) {
|
||||
port2->setCurrentIndex(i + 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
DeviceFrame::~DeviceFrame()
|
||||
{
|
||||
emit deleted();
|
||||
}
|
||||
|
||||
void DeviceFrame::setPosition(int pos)
|
||||
{
|
||||
position = pos;
|
||||
update();
|
||||
}
|
||||
|
||||
void DeviceFrame::update()
|
||||
{
|
||||
auto p1 = port1->currentText();
|
||||
auto p2 = port2->currentText();
|
||||
auto s = serial->currentText();
|
||||
port1->clear();
|
||||
port2->clear();
|
||||
serial->clear();
|
||||
|
||||
port1->addItem("Unused");
|
||||
port2->addItem("Unused");
|
||||
for(int i=0;i<dev->deviceSerials.size();i++) {
|
||||
port1->addItem("Port "+QString::number(i*2+1));
|
||||
port2->addItem("Port "+QString::number(i*2+1));
|
||||
port1->addItem("Port "+QString::number(i*2+2));
|
||||
port2->addItem("Port "+QString::number(i*2+2));
|
||||
}
|
||||
if(port1->findText(p1) >= 0) {
|
||||
port1->setCurrentText(p1);
|
||||
} else {
|
||||
port1->setCurrentIndex(0);
|
||||
}
|
||||
if(port2->findText(p2) >= 0) {
|
||||
port2->setCurrentText(p2);
|
||||
} else {
|
||||
port2->setCurrentIndex(0);
|
||||
}
|
||||
|
||||
auto devices = Device::GetDevices();
|
||||
for(auto d : devices) {
|
||||
serial->addItem(d);
|
||||
}
|
||||
// if(!serial->findText(s) >= 0) {
|
||||
// serial->addItem(s);
|
||||
// }
|
||||
serial->setCurrentText(s);
|
||||
|
||||
if(dev->sync == CompoundDevice::Synchronization::USB) {
|
||||
setStyleSheet("image: url(:/icons/compound_V1_USB.png);");
|
||||
} else if(dev->sync == CompoundDevice::Synchronization::ExtRef) {
|
||||
if(position == 0) {
|
||||
setStyleSheet("image: url(:/icons/compound_V1_Ref_Left.png);");
|
||||
} else if(position == dev->deviceSerials.size() - 1) {
|
||||
setStyleSheet("image: url(:/icons/compound_V1_Ref_Right.png);");
|
||||
} else {
|
||||
setStyleSheet("image: url(:/icons/compound_V1_Ref_Middle.png);");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
QString DeviceFrame::getSerial()
|
||||
{
|
||||
return serial->currentText();
|
||||
}
|
||||
|
||||
int DeviceFrame::getPort1()
|
||||
{
|
||||
return port1->currentIndex() - 1;
|
||||
}
|
||||
|
||||
int DeviceFrame::getPort2()
|
||||
{
|
||||
return port2->currentIndex() - 1;
|
||||
}
|
74
Software/PC_Application/Device/compounddeviceeditdialog.h
Normal file
@ -0,0 +1,74 @@
|
||||
#ifndef COMPOUNDDEVICEEDITDIALOG_H
|
||||
#define COMPOUNDDEVICEEDITDIALOG_H
|
||||
|
||||
#include "compounddevice.h"
|
||||
|
||||
#include <QDialog>
|
||||
#include <QLabel>
|
||||
#include <QComboBox>
|
||||
|
||||
namespace Ui {
|
||||
class CompoundDeviceEditDialog;
|
||||
}
|
||||
|
||||
class DeviceFrame : public QFrame {
|
||||
Q_OBJECT
|
||||
public:
|
||||
DeviceFrame(CompoundDevice *dev, int position);
|
||||
~DeviceFrame();
|
||||
void setPosition(int pos);
|
||||
void update();
|
||||
QString getSerial();
|
||||
int getPort1();
|
||||
int getPort2();
|
||||
signals:
|
||||
void deleted();
|
||||
void settingChanged();
|
||||
private:
|
||||
static constexpr int frameSize = 350;
|
||||
QComboBox *serial;
|
||||
QComboBox *port1, *port2;
|
||||
QLabel *image;
|
||||
|
||||
int position;
|
||||
CompoundDevice *dev;
|
||||
};
|
||||
|
||||
class CompoundDeviceEditDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit CompoundDeviceEditDialog(CompoundDevice *cdev, QWidget *parent = nullptr);
|
||||
~CompoundDeviceEditDialog();
|
||||
|
||||
private slots:
|
||||
void checkIfOkay();
|
||||
private:
|
||||
static constexpr int frameSize = 350;
|
||||
void setInitialGUI();
|
||||
DeviceFrame *frameAtPosition(int pos);
|
||||
unsigned int findInsertPosition(int xcoord);
|
||||
void addFrameAtPosition(int pos, DeviceFrame *c);
|
||||
void addFrame(int index, DeviceFrame *c);
|
||||
void createDragFrame(DeviceFrame *c);
|
||||
void updateInsertIndicator(int xcoord);
|
||||
bool eventFilter(QObject *object, QEvent *event) override;
|
||||
|
||||
void removeDeviceFrame(DeviceFrame *dev);
|
||||
|
||||
void updateDeviceFrames();
|
||||
|
||||
Ui::CompoundDeviceEditDialog *ui;
|
||||
CompoundDevice ldev;
|
||||
|
||||
QWidget *graph, *insertIndicator;
|
||||
QPoint dragStartPosition;
|
||||
bool dropPending;
|
||||
DeviceFrame *dragFrame;
|
||||
DeviceFrame *dropFrame;
|
||||
|
||||
std::vector<DeviceFrame*> deviceFrames;
|
||||
};
|
||||
|
||||
#endif // COMPOUNDDEVICEEDITDIALOG_H
|
183
Software/PC_Application/Device/compounddeviceeditdialog.ui
Normal file
@ -0,0 +1,183 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>CompoundDeviceEditDialog</class>
|
||||
<widget class="QDialog" name="CompoundDeviceEditDialog">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>1097</width>
|
||||
<height>598</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Compound Device Edit</string>
|
||||
</property>
|
||||
<property name="modal">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||
<item>
|
||||
<layout class="QFormLayout" name="formLayout">
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="label">
|
||||
<property name="text">
|
||||
<string>Name:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QLineEdit" name="name"/>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QLabel" name="label_2">
|
||||
<property name="text">
|
||||
<string>Synchronization:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QComboBox" name="sync"/>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="horizontalSpacer">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QGroupBox" name="groupBox_2">
|
||||
<property name="title">
|
||||
<string>Standalone Devices</string>
|
||||
</property>
|
||||
<layout class="QGridLayout" name="gridLayout">
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="label_9">
|
||||
<property name="font">
|
||||
<font>
|
||||
<pointsize>8</pointsize>
|
||||
</font>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Drag/drop into compound device</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignCenter</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QFrame" name="frame">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>80</width>
|
||||
<height>80</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="frameShape">
|
||||
<enum>QFrame::StyledPanel</enum>
|
||||
</property>
|
||||
<property name="frameShadow">
|
||||
<enum>QFrame::Raised</enum>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_2">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="leftMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QLabel" name="lLibreVNA1">
|
||||
<property name="font">
|
||||
<font>
|
||||
<pointsize>9</pointsize>
|
||||
</font>
|
||||
</property>
|
||||
<property name="styleSheet">
|
||||
<string notr="true">border-image: url(:/icons/LibreVNAV1.svg);</string>
|
||||
</property>
|
||||
<property name="frameShape">
|
||||
<enum>QFrame::NoFrame</enum>
|
||||
</property>
|
||||
<property name="frameShadow">
|
||||
<enum>QFrame::Plain</enum>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>LibreVNA V1</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignCenter</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QScrollArea" name="scrollArea">
|
||||
<property name="widgetResizable">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<widget class="QWidget" name="scrollAreaWidgetContents">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>1077</width>
|
||||
<height>372</height>
|
||||
</rect>
|
||||
</property>
|
||||
</widget>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="status">
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QDialogButtonBox" name="buttonBox">
|
||||
<property name="standardButtons">
|
||||
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok|QDialogButtonBox::Open|QDialogButtonBox::Save</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<resources/>
|
||||
<connections/>
|
||||
</ui>
|
@ -136,6 +136,7 @@ VirtualDevice::VirtualDevice(QString serial)
|
||||
info{},
|
||||
status{}
|
||||
{
|
||||
cdev = nullptr;
|
||||
isCompound = false;
|
||||
zerospan = false;
|
||||
auto dev = new Device(serial);
|
||||
@ -243,6 +244,11 @@ Device *VirtualDevice::getDevice()
|
||||
}
|
||||
}
|
||||
|
||||
CompoundDevice *VirtualDevice::getCompoundDevice()
|
||||
{
|
||||
return cdev;
|
||||
}
|
||||
|
||||
std::vector<Device *> VirtualDevice::getDevices()
|
||||
{
|
||||
return devices;
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
#include "device.h"
|
||||
#include "Tools/parameters.h"
|
||||
#include "compounddevice.h"
|
||||
|
||||
#include <set>
|
||||
#include <complex>
|
||||
@ -52,6 +53,7 @@ public:
|
||||
|
||||
bool isCompoundDevice() const;
|
||||
Device *getDevice();
|
||||
CompoundDevice *getCompoundDevice();
|
||||
std::vector<Device*> getDevices();
|
||||
const Info& getInfo() const;
|
||||
static const VirtualDevice::Info &getInfo(VirtualDevice *vdev);
|
||||
@ -179,6 +181,8 @@ private:
|
||||
bool zerospan;
|
||||
|
||||
std::map<Device*, Device::TransmissionResult> results;
|
||||
|
||||
CompoundDevice *cdev;
|
||||
};
|
||||
|
||||
Q_DECLARE_METATYPE(VirtualDevice::Status)
|
||||
|
@ -18,6 +18,8 @@ HEADERS += \
|
||||
CustomWidgets/tilewidget.h \
|
||||
CustomWidgets/toggleswitch.h \
|
||||
CustomWidgets/touchstoneimport.h \
|
||||
Device/compounddevice.h \
|
||||
Device/compounddeviceeditdialog.h \
|
||||
Device/device.h \
|
||||
Device/devicelog.h \
|
||||
Device/firmwareupdatedialog.h \
|
||||
@ -153,6 +155,8 @@ SOURCES += \
|
||||
CustomWidgets/tilewidget.cpp \
|
||||
CustomWidgets/toggleswitch.cpp \
|
||||
CustomWidgets/touchstoneimport.cpp \
|
||||
Device/compounddevice.cpp \
|
||||
Device/compounddeviceeditdialog.cpp \
|
||||
Device/device.cpp \
|
||||
Device/devicelog.cpp \
|
||||
Device/firmwareupdatedialog.cpp \
|
||||
@ -249,6 +253,7 @@ SOURCES += \
|
||||
mode.cpp \
|
||||
modewindow.cpp \
|
||||
preferences.cpp \
|
||||
savable.cpp \
|
||||
scpi.cpp \
|
||||
tcpserver.cpp \
|
||||
touchstone.cpp \
|
||||
@ -274,6 +279,7 @@ FORMS += \
|
||||
CustomWidgets/jsonpickerdialog.ui \
|
||||
CustomWidgets/tilewidget.ui \
|
||||
CustomWidgets/touchstoneimport.ui \
|
||||
Device/compounddeviceeditdialog.ui \
|
||||
Device/devicelog.ui \
|
||||
Device/firmwareupdatedialog.ui \
|
||||
Device/manualcontroldialog.ui \
|
||||
|
@ -7,7 +7,7 @@ class QPointerVariant {
|
||||
public:
|
||||
template <typename T> QPointerVariant(T *ptr)
|
||||
: ptr(static_cast<void*>(ptr)),
|
||||
variant(QVariant(*ptr)){};
|
||||
variant(QVariant(*ptr)){}
|
||||
void setValue(const QVariant &value) {
|
||||
auto destType = variant.type();
|
||||
if(!value.canConvert(destType)) {
|
||||
|
@ -58,5 +58,14 @@
|
||||
<file>icons/parallelL.png</file>
|
||||
<file>icons/parallelC.png</file>
|
||||
<file>icons/definedThrough.png</file>
|
||||
<file>icons/LibreVNAV1.svg</file>
|
||||
<file>icons/compound_V1_Ref_Left.svg</file>
|
||||
<file>icons/compound_V1_Ref_Middle.svg</file>
|
||||
<file>icons/compound_V1_Ref_Right.svg</file>
|
||||
<file>icons/compound_V1_USB.svg</file>
|
||||
<file>icons/compound_V1_Ref_Left.png</file>
|
||||
<file>icons/compound_V1_Ref_Middle.png</file>
|
||||
<file>icons/compound_V1_Ref_Right.png</file>
|
||||
<file>icons/compound_V1_USB.png</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
BIN
Software/PC_Application/icons/DUT2.png
Normal file
After Width: | Height: | Size: 275 B |
640
Software/PC_Application/icons/LibreVNAV1.svg
Normal file
@ -0,0 +1,640 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="113.386pt" height="113.386pt" viewBox="0 0 113.386 113.386" version="1.1">
|
||||
<defs>
|
||||
<clipPath id="clip2">
|
||||
<path d="M 83 0.835938 L 89 0.835938 L 89 2 L 83 2 Z M 83 0.835938 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip3">
|
||||
<path d="M 88 0.835938 L 89 0.835938 L 89 2 L 88 2 Z M 88 0.835938 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip4">
|
||||
<path d="M 83 0.835938 L 85 0.835938 L 85 2 L 83 2 Z M 83 0.835938 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip5">
|
||||
<path d="M 83 0.835938 L 89 0.835938 L 89 9 L 83 9 Z M 83 0.835938 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip6">
|
||||
<path d="M 97 0.835938 L 103 0.835938 L 103 2 L 97 2 Z M 97 0.835938 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip7">
|
||||
<path d="M 102 0.835938 L 103 0.835938 L 103 2 L 102 2 Z M 102 0.835938 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip8">
|
||||
<path d="M 97 0.835938 L 99 0.835938 L 99 2 L 97 2 Z M 97 0.835938 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip9">
|
||||
<path d="M 97 0.835938 L 104 0.835938 L 104 9 L 97 9 Z M 97 0.835938 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip10">
|
||||
<path d="M 9 107 L 15 107 L 15 108.550781 L 9 108.550781 Z M 9 107 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip11">
|
||||
<path d="M 9 108 L 15 108 L 15 108.550781 L 9 108.550781 Z M 9 108 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip12">
|
||||
<path d="M 8 98 L 16 98 L 16 108.550781 L 8 108.550781 Z M 8 98 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip13">
|
||||
<path d="M 9 107 L 10 107 L 10 108.550781 L 9 108.550781 Z M 9 107 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip14">
|
||||
<path d="M 13 103 L 17 103 L 17 108.550781 L 13 108.550781 Z M 13 103 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip15">
|
||||
<path d="M 96 107 L 103 107 L 103 108.550781 L 96 108.550781 Z M 96 107 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip16">
|
||||
<path d="M 96 108 L 102 108 L 102 108.550781 L 96 108.550781 Z M 96 108 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip17">
|
||||
<path d="M 96 98 L 103 98 L 103 108.550781 L 96 108.550781 Z M 96 98 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip18">
|
||||
<path d="M 96 107 L 98 107 L 98 108.550781 L 96 108.550781 Z M 96 107 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip19">
|
||||
<path d="M 101 103 L 104 103 L 104 108.550781 L 101 108.550781 Z M 101 103 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip20">
|
||||
<path d="M 0.796875 9 L 110.589844 9 L 110.589844 10 L 0.796875 10 Z M 0.796875 9 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip21">
|
||||
<path d="M 0.796875 9 L 110.589844 9 L 110.589844 98 L 0.796875 98 Z M 0.796875 9 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip22">
|
||||
<path d="M 0.796875 9 L 2 9 L 2 98 L 0.796875 98 Z M 0.796875 9 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip23">
|
||||
<path d="M 109 93 L 110.589844 93 L 110.589844 97 L 109 97 Z M 109 93 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip24">
|
||||
<path d="M 0.796875 93 L 2 93 L 2 97 L 0.796875 97 Z M 0.796875 93 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip25">
|
||||
<path d="M 0.796875 68 L 2 68 L 2 72 L 0.796875 72 Z M 0.796875 68 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip26">
|
||||
<path d="M 0.796875 42 L 2 42 L 2 46 L 0.796875 46 Z M 0.796875 42 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip27">
|
||||
<path d="M 0.796875 10 L 2 10 L 2 14 L 0.796875 14 Z M 0.796875 10 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip28">
|
||||
<path d="M 109 74 L 110.589844 74 L 110.589844 78 L 109 78 Z M 109 74 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip29">
|
||||
<path d="M 109 37 L 110.589844 37 L 110.589844 40 L 109 40 Z M 109 37 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip30">
|
||||
<path d="M 109 10 L 110.589844 10 L 110.589844 14 L 109 14 Z M 109 10 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip1">
|
||||
<rect x="0" y="0" width="111" height="109"/>
|
||||
</clipPath>
|
||||
<g id="surface5" clip-path="url(#clip1)">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.799102 108.472371 L 275.034746 108.236726 L 275.15877 108.001082 L 275.034746 107.753036 L 274.799102 107.517391 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.034746 109.080085 L 275.394414 109.080085 L 275.394414 106.909677 L 275.034746 106.909677 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.799102 91.443973 L 275.034746 91.195926 L 275.15877 90.960282 L 275.034746 90.712235 L 274.799102 90.476591 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.034746 92.039285 L 275.394414 92.039285 L 275.394414 89.868877 L 275.034746 89.868877 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.799102 82.91117 L 275.034746 82.675526 L 275.15877 82.439882 L 275.034746 82.191835 L 274.799102 81.956191 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.034746 83.518884 L 275.394414 83.518884 L 275.394414 81.360879 L 275.034746 81.360879 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.799102 74.39077 L 275.034746 74.155126 L 275.15877 73.919482 L 275.034746 73.671435 L 274.799102 73.435791 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.034746 74.998484 L 275.394414 74.998484 L 275.394414 72.840479 L 275.034746 72.840479 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.799102 65.87037 L 275.034746 65.634726 L 275.15877 65.399081 L 275.034746 65.151035 L 274.799102 64.915391 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.034746 66.478084 L 275.394414 66.478084 L 275.394414 64.320079 L 275.034746 64.320079 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.799102 57.34997 L 275.034746 57.114326 L 275.15877 56.878681 L 275.034746 56.643037 L 274.799102 56.39499 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.034746 57.957684 L 275.394414 57.957684 L 275.394414 55.799679 L 275.034746 55.799679 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.799102 48.841972 L 275.034746 48.593925 L 275.15877 48.358281 L 275.034746 48.122637 L 274.799102 47.87459 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.034746 49.437284 L 275.394414 49.437284 L 275.394414 47.279279 L 275.034746 47.279279 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.799102 40.433193 L 275.034746 40.197549 L 275.15877 39.961904 L 275.034746 39.713858 L 274.799102 39.478213 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.034746 41.040907 L 275.394414 41.040907 L 275.394414 38.870499 L 275.034746 38.870499 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.799102 31.912793 L 275.034746 31.677148 L 275.15877 31.441504 L 275.034746 31.193458 L 274.799102 30.957813 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.034746 32.520507 L 275.394414 32.520507 L 275.394414 30.350099 L 275.034746 30.350099 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.439435 99.951971 L 274.675079 99.716326 L 274.799102 99.480682 L 274.675079 99.232635 L 274.439435 98.996991 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.799102 100.559685 L 275.034746 100.559685 L 275.034746 98.389277 L 274.799102 98.389277 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.003492 107.517391 L 278.767847 107.753036 L 278.643824 108.001082 L 278.767847 108.236726 L 279.003492 108.472371 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.767847 106.909677 L 278.395778 106.909677 L 278.395778 109.080085 L 278.767847 109.080085 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.003492 90.476591 L 278.767847 90.712235 L 278.643824 90.960282 L 278.767847 91.195926 L 279.003492 91.443973 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.767847 89.868877 L 278.395778 89.868877 L 278.395778 92.039285 L 278.767847 92.039285 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.003492 81.956191 L 278.767847 82.191835 L 278.643824 82.439882 L 278.767847 82.675526 L 279.003492 82.91117 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.767847 81.360879 L 278.395778 81.360879 L 278.395778 83.518884 L 278.767847 83.518884 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.003492 73.435791 L 278.767847 73.671435 L 278.643824 73.919482 L 278.767847 74.155126 L 279.003492 74.39077 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.767847 72.840479 L 278.395778 72.840479 L 278.395778 74.998484 L 278.767847 74.998484 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.003492 64.915391 L 278.767847 65.151035 L 278.643824 65.399081 L 278.767847 65.634726 L 279.003492 65.87037 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.767847 64.320079 L 278.395778 64.320079 L 278.395778 66.478084 L 278.767847 66.478084 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.003492 56.39499 L 278.767847 56.643037 L 278.643824 56.878681 L 278.767847 57.114326 L 279.003492 57.34997 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.767847 55.799679 L 278.395778 55.799679 L 278.395778 57.957684 L 278.767847 57.957684 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.003492 47.87459 L 278.767847 48.122637 L 278.643824 48.358281 L 278.767847 48.593925 L 279.003492 48.841972 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.767847 47.279279 L 278.395778 47.279279 L 278.395778 49.437284 L 278.767847 49.437284 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.003492 39.478213 L 278.767847 39.713858 L 278.643824 39.961904 L 278.767847 40.197549 L 279.003492 40.433193 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.767847 38.870499 L 278.395778 38.870499 L 278.395778 41.040907 L 278.767847 41.040907 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.003492 30.957813 L 278.767847 31.193458 L 278.643824 31.441504 L 278.767847 31.677148 L 279.003492 31.912793 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.767847 30.350099 L 278.395778 30.350099 L 278.395778 32.520507 L 278.767847 32.520507 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.767847 98.996991 L 278.519801 99.232635 L 278.395778 99.480682 L 278.519801 99.716326 L 278.767847 99.951971 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395778 98.389277 L 278.160133 98.389277 L 278.160133 100.559685 L 278.395778 100.559685 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.643824 109.080085 L 278.395778 109.080085 M 275.394414 109.080085 L 275.034746 109.080085 M 275.034746 106.798056 L 275.394414 106.798056 M 278.395778 106.798056 L 278.643824 106.798056 M 278.643824 92.039285 L 278.395778 92.039285 M 275.394414 92.039285 L 275.034746 92.039285 M 275.034746 89.868877 L 275.394414 89.868877 M 278.395778 89.868877 L 278.643824 89.868877 M 278.643824 83.518884 L 278.395778 83.518884 M 275.394414 83.518884 L 275.034746 83.518884 M 275.034746 81.360879 L 275.394414 81.360879 M 278.395778 81.360879 L 278.643824 81.360879 M 278.643824 74.998484 L 278.395778 74.998484 M 275.394414 74.998484 L 275.034746 74.998484 M 275.034746 72.840479 L 275.394414 72.840479 M 278.395778 72.840479 L 278.643824 72.840479 M 278.643824 66.478084 L 278.395778 66.478084 M 275.394414 66.478084 L 275.034746 66.478084 M 275.034746 64.320079 L 275.394414 64.320079 M 278.395778 64.320079 L 278.643824 64.320079 M 278.643824 58.069305 L 278.395778 58.069305 M 275.394414 58.069305 L 275.034746 58.069305 M 275.034746 55.799679 L 275.394414 55.799679 M 278.395778 55.799679 L 278.643824 55.799679 M 278.643824 49.548905 L 278.395778 49.548905 M 275.394414 49.548905 L 275.034746 49.548905 M 275.034746 47.279279 L 275.394414 47.279279 M 278.395778 47.279279 L 278.643824 47.279279 M 278.643824 41.040907 L 278.395778 41.040907 M 275.394414 41.040907 L 275.034746 41.040907 M 275.034746 38.758878 L 275.394414 38.758878 M 278.395778 38.758878 L 278.643824 38.758878 M 278.643824 32.520507 L 278.395778 32.520507 M 275.394414 32.520507 L 275.034746 32.520507 M 275.034746 30.238478 L 275.394414 30.238478 M 278.395778 30.238478 L 278.643824 30.238478 M 278.395778 100.559685 L 278.160133 100.559685 M 275.034746 100.559685 L 274.799102 100.559685 M 274.799102 98.277656 L 275.034746 98.277656 M 278.160133 98.277656 L 278.395778 98.277656 M 278.395778 109.080085 L 278.395778 106.798056 M 275.394414 106.798056 L 275.394414 109.080085 M 278.395778 109.080085 L 278.519801 109.080085 M 278.395778 106.798056 L 278.519801 106.798056 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395778 109.080085 L 278.395778 106.798056 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 106.798056 L 275.64246 106.798056 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.64246 106.798056 L 275.64246 109.080085 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.64246 109.080085 L 278.160133 109.080085 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 109.080085 L 278.160133 106.798056 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.394414 106.798056 L 275.64246 106.798056 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 106.798056 L 278.395778 106.798056 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395778 109.080085 L 278.160133 109.080085 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.64246 109.080085 L 275.394414 109.080085 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.394414 106.798056 L 275.394414 109.080085 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395778 92.039285 L 278.395778 89.868877 M 275.394414 89.868877 L 275.394414 92.039285 M 278.395778 92.039285 L 278.519801 92.039285 M 278.395778 89.868877 L 278.519801 89.868877 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395778 92.039285 L 278.395778 89.868877 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 89.868877 L 275.64246 89.868877 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.64246 89.868877 L 275.64246 92.039285 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.64246 92.039285 L 278.160133 92.039285 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 92.039285 L 278.160133 89.868877 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.394414 89.868877 L 275.64246 89.868877 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 89.868877 L 278.395778 89.868877 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395778 92.039285 L 278.160133 92.039285 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.64246 92.039285 L 275.394414 92.039285 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.394414 89.868877 L 275.394414 92.039285 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395778 83.518884 L 278.395778 81.360879 M 275.394414 81.360879 L 275.394414 83.518884 M 278.395778 83.518884 L 278.519801 83.518884 M 278.395778 81.360879 L 278.519801 81.360879 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395778 83.518884 L 278.395778 81.360879 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 81.360879 L 275.64246 81.360879 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.64246 81.360879 L 275.64246 83.518884 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.64246 83.518884 L 278.160133 83.518884 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 83.518884 L 278.160133 81.360879 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.394414 81.360879 L 275.64246 81.360879 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 81.360879 L 278.395778 81.360879 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395778 83.518884 L 278.160133 83.518884 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.64246 83.518884 L 275.394414 83.518884 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.394414 81.360879 L 275.394414 83.518884 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395778 74.998484 L 278.395778 72.840479 M 275.394414 72.840479 L 275.394414 74.998484 M 278.395778 74.998484 L 278.519801 74.998484 M 278.395778 72.840479 L 278.519801 72.840479 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395778 74.998484 L 278.395778 72.840479 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 72.840479 L 275.64246 72.840479 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.64246 72.840479 L 275.64246 74.998484 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.64246 74.998484 L 278.160133 74.998484 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 74.998484 L 278.160133 72.840479 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.394414 72.840479 L 275.64246 72.840479 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 72.840479 L 278.395778 72.840479 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395778 74.998484 L 278.160133 74.998484 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.64246 74.998484 L 275.394414 74.998484 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.394414 72.840479 L 275.394414 74.998484 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395778 66.478084 L 278.395778 64.320079 M 275.394414 64.320079 L 275.394414 66.478084 M 278.395778 66.478084 L 278.519801 66.478084 M 278.395778 64.320079 L 278.519801 64.320079 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395778 66.478084 L 278.395778 64.320079 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 64.320079 L 275.64246 64.320079 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.64246 64.320079 L 275.64246 66.478084 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.64246 66.478084 L 278.160133 66.478084 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 66.478084 L 278.160133 64.320079 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.394414 64.320079 L 275.64246 64.320079 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 64.320079 L 278.395778 64.320079 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395778 66.478084 L 278.160133 66.478084 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.64246 66.478084 L 275.394414 66.478084 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.394414 64.320079 L 275.394414 66.478084 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395778 58.069305 L 278.395778 55.799679 M 275.394414 55.799679 L 275.394414 58.069305 M 278.395778 58.069305 L 278.519801 58.069305 M 278.395778 55.799679 L 278.519801 55.799679 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395778 58.069305 L 278.395778 55.799679 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 55.799679 L 275.64246 55.799679 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.64246 55.799679 L 275.64246 58.069305 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.64246 58.069305 L 278.160133 58.069305 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 58.069305 L 278.160133 55.799679 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.394414 55.799679 L 275.64246 55.799679 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 55.799679 L 278.395778 55.799679 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395778 58.069305 L 278.160133 58.069305 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.64246 58.069305 L 275.394414 58.069305 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.394414 55.799679 L 275.394414 58.069305 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395778 49.548905 L 278.395778 47.279279 M 275.394414 47.279279 L 275.394414 49.548905 M 278.395778 49.548905 L 278.519801 49.548905 M 278.395778 47.279279 L 278.519801 47.279279 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395778 49.548905 L 278.395778 47.279279 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 47.279279 L 275.64246 47.279279 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.64246 47.279279 L 275.64246 49.548905 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.64246 49.548905 L 278.160133 49.548905 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 49.548905 L 278.160133 47.279279 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.394414 47.279279 L 275.64246 47.279279 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 47.279279 L 278.395778 47.279279 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395778 49.548905 L 278.160133 49.548905 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.64246 49.548905 L 275.394414 49.548905 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.394414 47.279279 L 275.394414 49.548905 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395778 41.040907 L 278.395778 38.758878 M 275.394414 38.758878 L 275.394414 41.040907 M 278.395778 41.040907 L 278.519801 41.040907 M 278.395778 38.758878 L 278.519801 38.758878 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395778 41.040907 L 278.395778 38.758878 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 38.758878 L 275.64246 38.758878 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.64246 38.758878 L 275.64246 41.040907 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.64246 41.040907 L 278.160133 41.040907 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 41.040907 L 278.160133 38.758878 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.394414 38.758878 L 275.64246 38.758878 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 38.758878 L 278.395778 38.758878 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395778 41.040907 L 278.160133 41.040907 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.64246 41.040907 L 275.394414 41.040907 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.394414 38.758878 L 275.394414 41.040907 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395778 32.520507 L 278.395778 30.238478 M 275.394414 30.238478 L 275.394414 32.520507 M 278.395778 32.520507 L 278.519801 32.520507 M 278.395778 30.238478 L 278.519801 30.238478 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395778 32.520507 L 278.395778 30.238478 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 30.238478 L 275.64246 30.238478 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.64246 30.238478 L 275.64246 32.520507 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.64246 32.520507 L 278.160133 32.520507 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 32.520507 L 278.160133 30.238478 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.394414 30.238478 L 275.64246 30.238478 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 30.238478 L 278.395778 30.238478 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395778 32.520507 L 278.160133 32.520507 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.64246 32.520507 L 275.394414 32.520507 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.394414 30.238478 L 275.394414 32.520507 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 100.559685 L 278.160133 98.277656 M 275.034746 98.277656 L 275.034746 100.559685 M 278.160133 100.559685 L 278.284157 100.559685 M 278.160133 98.277656 L 278.284157 98.277656 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 100.559685 L 278.160133 98.277656 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.924489 98.277656 L 275.282793 98.277656 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.282793 98.277656 L 275.282793 100.559685 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.282793 100.559685 L 277.924489 100.559685 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.924489 100.559685 L 277.924489 98.277656 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.034746 98.277656 L 275.282793 98.277656 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.924489 98.277656 L 278.160133 98.277656 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.160133 100.559685 L 277.924489 100.559685 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.282793 100.559685 L 275.034746 100.559685 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.15877 98.277656 L 275.15877 100.559685 M 318.839773 263.513888 L 318.839773 277.912992 M 340.915919 277.912992 L 340.915919 263.513888 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<g clip-path="url(#clip2)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 341.275587 263.749532 L 341.275587 277.677348 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.00596 277.912992 L 339.117581 277.912992 L 339.117581 277.801371 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 336.835553 277.912992 L 336.835553 277.677348 L 336.959576 277.553324 L 336.959576 276.598345 L 337.083599 276.350298 L 337.083599 274.911628 L 337.19522 274.551961 L 337.19522 272.642002 L 337.319243 272.393955 L 337.319243 270.23595 L 337.443267 270.000306 L 337.443267 267.953922 L 337.554888 267.594254 L 337.554888 265.91994 L 337.678911 265.671893 L 337.678911 264.357246 L 337.802934 264.233223 L 337.802934 263.637911 L 337.926958 263.513888 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 334.553524 277.912992 L 334.553524 277.677348 L 334.677547 277.553324 L 334.677547 276.598345 L 334.801571 276.350298 L 334.801571 274.911628 L 334.925594 274.551961 L 334.925594 272.642002 L 335.037215 272.393955 L 335.037215 270.23595 L 335.161238 270.000306 L 335.161238 268.313589 L 335.285262 267.953922 L 335.285262 266.155584 L 335.396882 265.91994 L 335.396882 264.59289 L 335.520906 264.357246 L 335.520906 263.637911 L 335.644929 263.637911 L 335.644929 263.513888 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.283898 277.912992 L 332.283898 277.677348 L 332.395519 277.677348 L 332.395519 276.709966 L 332.519542 276.598345 L 332.519542 275.159675 L 332.643565 274.911628 L 332.643565 273.00167 L 332.767589 272.642002 L 332.767589 270.595618 L 332.87921 270.359973 L 332.87921 268.313589 L 333.003233 267.953922 L 333.003233 266.155584 L 333.114854 265.91994 L 333.114854 264.59289 L 333.238877 264.357246 L 333.238877 263.637911 L 333.3629 263.637911 L 333.3629 263.513888 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.001869 277.912992 L 330.001869 277.801371 L 330.125893 277.677348 L 330.125893 276.958013 L 330.237514 276.709966 L 330.237514 275.395319 L 330.361537 275.159675 L 330.361537 273.348935 L 330.48556 273.00167 L 330.48556 270.955285 L 330.597181 270.595618 L 330.597181 268.549233 L 330.721204 268.313589 L 330.721204 266.391228 L 330.845228 266.155584 L 330.845228 264.716914 L 330.956849 264.59289 L 330.956849 263.749532 L 331.080872 263.637911 L 331.080872 263.513888 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 327.719841 277.912992 L 327.719841 277.801371 L 327.843864 277.677348 L 327.843864 276.958013 L 327.955485 276.709966 L 327.955485 275.395319 L 328.079508 275.159675 L 328.079508 273.721005 L 328.203532 273.348935 L 328.203532 271.314953 L 328.315153 270.955285 L 328.315153 268.908901 L 328.439176 268.549233 L 328.439176 266.750896 L 328.563199 266.391228 L 328.563199 264.952558 L 328.67482 264.716914 L 328.67482 263.873555 L 328.798843 263.749532 L 328.798843 263.513888 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.685859 276.709966 L 325.685859 275.630963 L 325.79748 275.395319 L 325.79748 273.832626 L 325.921503 273.596981 L 325.921503 271.438976 L 326.033124 271.079309 L 326.033124 268.908901 L 326.157147 268.673257 L 326.157147 266.874919 L 326.281171 266.639275 L 326.281171 264.952558 L 326.392791 264.840937 L 326.392791 263.873555 L 326.516815 263.749532 L 326.516815 263.513888 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.392791 263.513888 L 326.392791 263.637911 L 326.281171 263.749532 L 326.281171 264.59289 L 326.157147 264.716914 L 326.157147 266.279607 L 326.033124 266.391228 L 326.033124 268.437612 L 325.921503 268.673257 L 325.921503 270.831262 L 325.79748 271.079309 L 325.79748 273.113291 L 325.685859 273.348935 L 325.685859 274.675984 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 328.67482 263.513888 L 328.67482 263.637911 L 328.563199 263.637911 L 328.563199 264.481269 L 328.439176 264.59289 L 328.439176 266.031561 L 328.315153 266.279607 L 328.315153 268.077945 L 328.203532 268.313589 L 328.203532 270.359973 L 328.079508 270.719641 L 328.079508 272.753623 L 327.955485 273.113291 L 327.955485 274.911628 L 327.843864 275.271296 L 327.843864 276.598345 L 327.719841 276.833989 L 327.719841 277.677348 L 327.595817 277.801371 L 327.595817 277.912992 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.956849 263.513888 L 330.956849 263.637911 L 330.845228 263.637911 L 330.845228 264.233223 L 330.721204 264.481269 L 330.721204 265.671893 L 330.597181 266.031561 L 330.597181 267.718277 L 330.48556 268.077945 L 330.48556 270.111927 L 330.361537 270.359973 L 330.361537 272.517979 L 330.237514 272.753623 L 330.237514 274.675984 L 330.125893 274.911628 L 330.125893 276.474322 L 330.001869 276.598345 L 330.001869 277.553324 L 329.877846 277.677348 L 329.877846 277.912992 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.238877 263.513888 L 333.114854 263.637911 L 333.114854 264.233223 L 333.003233 264.481269 L 333.003233 265.671893 L 332.87921 266.031561 L 332.87921 267.718277 L 332.767589 268.077945 L 332.767589 270.111927 L 332.643565 270.359973 L 332.643565 272.517979 L 332.519542 272.753623 L 332.519542 274.44034 L 332.395519 274.675984 L 332.395519 276.238677 L 332.283898 276.474322 L 332.283898 277.441703 L 332.159875 277.553324 L 332.159875 277.912992 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.520906 263.513888 L 335.396882 263.513888 L 335.396882 264.121602 L 335.285262 264.233223 L 335.285262 265.436249 L 335.161238 265.671893 L 335.161238 267.482633 L 335.037215 267.718277 L 335.037215 269.752259 L 334.925594 270.111927 L 334.925594 272.158311 L 334.801571 272.517979 L 334.801571 274.44034 L 334.677547 274.675984 L 334.677547 276.238677 L 334.553524 276.474322 L 334.553524 277.441703 L 334.441903 277.553324 L 334.441903 277.912992 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.802934 263.513888 L 337.678911 263.513888 L 337.678911 263.997579 L 337.554888 264.121602 L 337.554888 265.200605 L 337.443267 265.436249 L 337.443267 267.122966 L 337.319243 267.482633 L 337.319243 269.392592 L 337.19522 269.752259 L 337.19522 271.798644 L 337.083599 272.158311 L 337.083599 274.06827 L 336.959576 274.44034 L 336.959576 275.990631 L 336.835553 276.238677 L 336.835553 277.31768 L 336.723932 277.441703 L 336.723932 277.912992 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.117581 276.709966 L 339.117581 277.31768 L 339.00596 277.31768 L 339.00596 277.912992 L 338.881937 277.912992 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.604129 262.434885 L 318.604129 278.880374 M 318.232059 279.240041 L 314.275716 279.240041 M 314.275716 262.199241 L 318.232059 262.199241 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.232059 278.880374 L 318.232059 262.434885 L 314.275716 262.434885 M 314.275716 278.880374 L 318.232059 278.880374 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.685859 262.199241 L 325.79748 262.199241 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.764861 279.240041 L 326.876482 279.116018 L 326.876482 278.520706 L 327.000506 278.396683 L 327.000506 276.958013 L 327.124529 276.709966 L 327.124529 274.675984 L 327.23615 274.551961 L 327.23615 272.034288 L 327.360173 271.910265 L 327.360173 269.156948 L 327.484196 268.908901 L 327.484196 266.750896 L 327.595817 266.515251 L 327.595817 264.357246 L 327.719841 264.233223 L 327.719841 262.918576 L 327.843864 262.794553 L 327.843864 262.199241 L 327.955485 262.199241 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 329.034488 279.240041 L 329.034488 279.116018 L 329.158511 279.116018 L 329.158511 278.396683 L 329.282534 278.272659 L 329.282534 276.709966 L 329.394155 276.598345 L 329.394155 274.551961 L 329.518178 274.316316 L 329.518178 271.910265 L 329.642202 271.67462 L 329.642202 268.908901 L 329.766225 268.673257 L 329.766225 266.391228 L 329.877846 266.155584 L 329.877846 264.233223 L 330.001869 264.121602 L 330.001869 262.794553 L 330.125893 262.670529 L 330.125893 262.199241 L 330.237514 262.199241 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 331.316516 279.240041 L 331.316516 279.116018 L 331.440539 279.116018 L 331.440539 278.272659 L 331.564563 278.161039 L 331.564563 276.598345 L 331.676184 276.474322 L 331.676184 274.192293 L 331.800207 273.956649 L 331.800207 271.438976 L 331.92423 271.19093 L 331.92423 268.673257 L 332.035851 268.549233 L 332.035851 266.155584 L 332.159875 266.031561 L 332.159875 263.997579 L 332.283898 263.873555 L 332.283898 262.670529 L 332.395519 262.558908 L 332.395519 262.199241 L 332.519542 262.199241 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.598545 279.240041 L 333.598545 279.116018 L 333.722568 278.991995 L 333.722568 278.161039 L 333.834189 278.037015 L 333.834189 276.350298 L 333.958212 276.114654 L 333.958212 273.956649 L 334.082236 273.721005 L 334.082236 271.19093 L 334.193857 271.079309 L 334.193857 268.313589 L 334.31788 268.077945 L 334.31788 266.031561 L 334.441903 265.795916 L 334.441903 263.873555 L 334.553524 263.749532 L 334.553524 262.558908 L 334.677547 262.558908 L 334.677547 262.199241 L 334.801571 262.199241 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.880573 279.240041 L 335.880573 278.991995 L 336.004597 278.991995 L 336.004597 278.037015 L 336.116218 277.912992 L 336.116218 276.114654 L 336.240241 275.990631 L 336.240241 273.721005 L 336.364264 273.596981 L 336.364264 271.079309 L 336.475885 270.831262 L 336.475885 268.077945 L 336.599908 267.953922 L 336.599908 265.671893 L 336.723932 265.436249 L 336.723932 263.749532 L 336.835553 263.637911 L 336.835553 262.558908 L 336.959576 262.434885 L 336.959576 262.199241 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 338.162602 279.240041 L 338.162602 278.880374 L 338.286625 278.880374 L 338.286625 277.912992 L 338.398246 277.677348 L 338.398246 275.990631 L 338.522269 275.754987 L 338.522269 273.472958 L 338.646293 273.113291 L 338.646293 270.955285 L 338.757914 270.595618 L 338.757914 268.077945 L 338.881937 267.718277 L 338.881937 265.436249 L 339.00596 265.200605 L 339.00596 263.513888 L 339.117581 263.389864 L 339.117581 262.199241 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.157147 279.240041 L 326.281171 279.240041 L 326.281171 278.75635 L 326.392791 278.632327 L 326.392791 277.441703 L 326.516815 277.31768 L 326.516815 275.395319 L 326.640838 275.271296 L 326.640838 272.877646 L 326.764861 272.642002 L 326.764861 270.000306 L 326.876482 269.752259 L 326.876482 267.234587 L 327.000506 266.998942 L 327.000506 264.952558 L 327.124529 264.840937 L 327.124529 263.278243 L 327.23615 263.15422 L 327.23615 262.310862 L 327.360173 262.310862 L 327.360173 262.199241 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 328.439176 279.240041 L 328.563199 279.240041 L 328.563199 278.632327 L 328.67482 278.632327 L 328.67482 277.31768 L 328.798843 277.193657 L 328.798843 275.035652 L 328.922867 274.911628 L 328.922867 272.642002 L 329.034488 272.393955 L 329.034488 269.752259 L 329.158511 269.516615 L 329.158511 266.998942 L 329.282534 266.874919 L 329.282534 264.840937 L 329.394155 264.59289 L 329.394155 263.030197 L 329.518178 262.918576 L 329.518178 262.310862 L 329.642202 262.199241 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.721204 279.240041 L 330.845228 279.240041 L 330.845228 278.632327 L 330.956849 278.520706 L 330.956849 277.193657 L 331.080872 276.958013 L 331.080872 274.911628 L 331.204895 274.675984 L 331.204895 272.282334 L 331.316516 272.034288 L 331.316516 269.516615 L 331.440539 269.280971 L 331.440539 266.874919 L 331.564563 266.639275 L 331.564563 264.481269 L 331.676184 264.357246 L 331.676184 262.918576 L 331.800207 262.918576 L 331.800207 262.199241 L 331.92423 262.199241 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.003233 279.240041 L 333.114854 279.116018 L 333.114854 278.520706 L 333.238877 278.396683 L 333.238877 276.833989 L 333.3629 276.709966 L 333.3629 274.675984 L 333.474521 274.44034 L 333.474521 272.034288 L 333.598545 271.798644 L 333.598545 269.156948 L 333.722568 268.908901 L 333.722568 266.515251 L 333.834189 266.279607 L 333.834189 264.357246 L 333.958212 264.233223 L 333.958212 262.918576 L 334.082236 262.794553 L 334.082236 262.199241 L 334.193857 262.199241 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.285262 279.240041 L 335.285262 279.116018 L 335.396882 279.116018 L 335.396882 278.272659 L 335.520906 278.272659 L 335.520906 276.709966 L 335.644929 276.598345 L 335.644929 274.44034 L 335.75655 274.316316 L 335.75655 271.798644 L 335.880573 271.550597 L 335.880573 268.908901 L 336.004597 268.673257 L 336.004597 266.279607 L 336.116218 266.155584 L 336.116218 264.233223 L 336.240241 264.121602 L 336.240241 262.794553 L 336.364264 262.670529 L 336.364264 262.199241 L 336.475885 262.199241 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.554888 279.240041 L 337.554888 279.116018 L 337.678911 279.116018 L 337.678911 278.272659 L 337.802934 278.161039 L 337.802934 276.598345 L 337.926958 276.474322 L 337.926958 274.06827 L 338.038579 273.832626 L 338.038579 271.438976 L 338.162602 271.19093 L 338.162602 268.673257 L 338.286625 268.437612 L 338.286625 266.155584 L 338.398246 265.91994 L 338.398246 263.997579 L 338.522269 263.873555 L 338.522269 262.670529 L 338.646293 262.558908 L 338.646293 262.199241 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.117581 276.709966 L 339.117581 262.794553 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.685859 262.199241 L 325.685859 274.675984 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.117581 278.037015 L 339.117581 277.801371 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.685859 276.709966 L 325.685859 278.272659 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.232059 262.199241 L 318.232059 262.434885 M 318.232059 278.880374 L 318.232059 279.240041 M 318.232059 262.434885 L 318.604129 262.434885 M 318.604129 278.880374 L 318.232059 278.880374 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.480105 262.434885 L 318.232059 262.199241 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.232059 279.116018 L 318.480105 278.880374 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.839773 277.912992 L 318.71575 278.037015 L 318.604129 278.161039 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.604129 263.15422 L 318.71575 263.278243 L 318.839773 263.389864 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<g clip-path="url(#clip3)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.915919 277.912992 L 341.163966 277.677348 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip4)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 341.163966 263.749532 L 341.039942 263.637911 L 340.915919 263.513888 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip5)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.915919 277.912992 L 339.117581 277.912992 M 339.00596 277.912992 L 338.881937 277.912992 M 336.835553 277.912992 L 336.599908 277.912992 M 334.553524 277.912992 L 334.441903 277.912992 M 332.283898 277.912992 L 332.159875 277.912992 M 330.001869 277.912992 L 329.877846 277.912992 M 327.719841 277.912992 L 327.595817 277.912992 M 325.685859 277.912992 L 318.839773 277.912992 M 340.915919 263.513888 L 339.117581 263.513888 M 337.926958 263.513888 L 337.802934 263.513888 M 335.644929 263.513888 L 335.520906 263.513888 M 333.3629 263.513888 L 333.238877 263.513888 M 331.080872 263.513888 L 330.956849 263.513888 M 328.798843 263.513888 L 328.67482 263.513888 M 326.516815 263.513888 L 326.392791 263.513888 M 325.685859 263.513888 L 318.839773 263.513888 M 338.162602 279.240041 L 337.554888 279.240041 M 335.880573 279.240041 L 335.285262 279.240041 M 333.598545 279.240041 L 333.003233 279.240041 M 331.316516 279.240041 L 330.721204 279.240041 M 329.034488 279.240041 L 328.439176 279.240041 M 326.764861 279.240041 L 326.281171 279.240041 M 339.117581 262.199241 L 338.646293 262.199241 M 336.959576 262.199241 L 336.475885 262.199241 M 334.677547 262.199241 L 334.193857 262.199241 M 332.395519 262.199241 L 331.92423 262.199241 M 330.237514 262.199241 L 329.642202 262.199241 M 327.955485 262.199241 L 327.360173 262.199241 M 327.595817 277.912992 L 326.764861 279.240041 M 329.877846 277.912992 L 329.034488 279.240041 M 332.159875 277.912992 L 331.316516 279.240041 M 334.441903 277.912992 L 333.598545 279.240041 M 336.723932 277.912992 L 335.880573 279.240041 M 338.881937 277.912992 L 338.162602 279.240041 M 325.685859 262.199241 L 326.392791 263.513888 M 327.955485 262.199241 L 328.67482 263.513888 M 330.237514 262.199241 L 330.956849 263.513888 M 332.519542 262.199241 L 333.238877 263.513888 M 334.801571 262.199241 L 335.520906 263.513888 M 336.959576 262.199241 L 337.802934 263.513888 M 326.157147 279.240041 L 325.685859 278.272659 M 328.439176 279.240041 L 327.719841 277.912992 M 330.721204 279.240041 L 330.001869 277.912992 M 333.003233 279.240041 L 332.283898 277.912992 M 335.285262 279.240041 L 334.441903 277.912992 M 337.554888 279.240041 L 336.723932 277.912992 M 339.117581 278.037015 L 339.00596 277.912992 M 337.926958 263.513888 L 338.646293 262.199241 M 335.644929 263.513888 L 336.364264 262.199241 M 333.3629 263.513888 L 334.082236 262.199241 M 331.080872 263.513888 L 331.92423 262.199241 M 328.798843 263.513888 L 329.642202 262.199241 M 326.516815 263.513888 L 327.360173 262.199241 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.839773 308.869206 L 318.839773 323.280712 M 340.915919 323.280712 L 340.915919 308.869206 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<g clip-path="url(#clip6)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 341.275587 309.117252 L 341.275587 323.032665 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.00596 323.280712 L 339.117581 323.280712 L 339.117581 323.156689 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 336.835553 323.280712 L 336.835553 323.032665 L 336.959576 322.908642 L 336.959576 321.953663 L 337.083599 321.718019 L 337.083599 320.279348 L 337.19522 319.919681 L 337.19522 318.121343 L 337.319243 317.749273 L 337.319243 315.715291 L 337.443267 315.355624 L 337.443267 313.321642 L 337.554888 312.961974 L 337.554888 311.275257 L 337.678911 311.039613 L 337.678911 309.712564 L 337.802934 309.588541 L 337.802934 308.993229 L 337.926958 308.869206 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 334.553524 323.280712 L 334.553524 323.032665 L 334.677547 322.908642 L 334.677547 321.953663 L 334.801571 321.718019 L 334.801571 320.279348 L 334.925594 319.919681 L 334.925594 318.121343 L 335.037215 317.749273 L 335.037215 315.715291 L 335.161238 315.355624 L 335.161238 313.681309 L 335.285262 313.321642 L 335.285262 311.510902 L 335.396882 311.275257 L 335.396882 309.960611 L 335.520906 309.712564 L 335.520906 308.993229 L 335.644929 308.993229 L 335.644929 308.869206 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.283898 323.280712 L 332.283898 323.032665 L 332.395519 323.032665 L 332.395519 322.077686 L 332.519542 321.953663 L 332.519542 320.514993 L 332.643565 320.279348 L 332.643565 318.356987 L 332.767589 318.121343 L 332.767589 315.950936 L 332.87921 315.715291 L 332.87921 313.681309 L 333.003233 313.321642 L 333.003233 311.510902 L 333.114854 311.275257 L 333.114854 309.960611 L 333.238877 309.712564 L 333.238877 308.993229 L 333.3629 308.993229 L 333.3629 308.869206 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.001869 323.280712 L 330.001869 323.156689 L 330.125893 323.032665 L 330.125893 322.31333 L 330.237514 322.077686 L 330.237514 320.750637 L 330.361537 320.514993 L 330.361537 318.716655 L 330.48556 318.356987 L 330.48556 316.310603 L 330.597181 315.950936 L 330.597181 313.916954 L 330.721204 313.681309 L 330.721204 311.758948 L 330.845228 311.510902 L 330.845228 310.072231 L 330.956849 309.960611 L 330.956849 309.117252 L 331.080872 308.993229 L 331.080872 308.869206 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 327.719841 323.280712 L 327.719841 323.156689 L 327.843864 323.032665 L 327.843864 322.31333 L 327.955485 322.189307 L 327.955485 320.750637 L 328.079508 320.514993 L 328.079508 319.076322 L 328.203532 318.716655 L 328.203532 316.670271 L 328.315153 316.310603 L 328.315153 314.276621 L 328.439176 313.916954 L 328.439176 312.118616 L 328.563199 311.758948 L 328.563199 310.320278 L 328.67482 310.072231 L 328.67482 309.228873 L 328.798843 309.117252 L 328.798843 308.869206 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.685859 322.077686 L 325.685859 320.998683 L 325.79748 320.750637 L 325.79748 319.200346 L 325.921503 318.952299 L 325.921503 316.794294 L 326.033124 316.434626 L 326.033124 314.276621 L 326.157147 314.040977 L 326.157147 312.230237 L 326.281171 311.994593 L 326.281171 310.320278 L 326.392791 310.196255 L 326.392791 309.228873 L 326.516815 309.228873 L 326.516815 308.869206 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.392791 308.869206 L 326.392791 308.993229 L 326.281171 309.117252 L 326.281171 309.960611 L 326.157147 310.072231 L 326.157147 311.634925 L 326.033124 311.870569 L 326.033124 313.79293 L 325.921503 314.040977 L 325.921503 316.198982 L 325.79748 316.434626 L 325.79748 318.481011 L 325.685859 318.716655 L 325.685859 320.031302 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 328.67482 308.869206 L 328.67482 308.993229 L 328.563199 308.993229 L 328.563199 309.836587 L 328.439176 309.960611 L 328.439176 311.399281 L 328.315153 311.634925 L 328.315153 313.433263 L 328.203532 313.79293 L 328.203532 315.715291 L 328.079508 316.074959 L 328.079508 318.121343 L 327.955485 318.481011 L 327.955485 320.279348 L 327.843864 320.639016 L 327.843864 321.953663 L 327.719841 322.189307 L 327.719841 323.032665 L 327.595817 323.156689 L 327.595817 323.280712 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.956849 308.869206 L 330.956849 308.993229 L 330.845228 308.993229 L 330.845228 309.588541 L 330.721204 309.836587 L 330.721204 311.039613 L 330.597181 311.399281 L 330.597181 313.073595 L 330.48556 313.433263 L 330.48556 315.479647 L 330.361537 315.715291 L 330.361537 317.873297 L 330.237514 318.121343 L 330.237514 320.031302 L 330.125893 320.279348 L 330.125893 321.842042 L 330.001869 321.953663 L 330.001869 322.908642 L 329.877846 323.032665 L 329.877846 323.280712 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.238877 308.869206 L 333.114854 308.993229 L 333.114854 309.588541 L 333.003233 309.836587 L 333.003233 311.039613 L 332.87921 311.399281 L 332.87921 313.073595 L 332.767589 313.433263 L 332.767589 315.479647 L 332.643565 315.715291 L 332.643565 317.873297 L 332.519542 318.121343 L 332.519542 319.795658 L 332.395519 320.031302 L 332.395519 321.593995 L 332.283898 321.842042 L 332.283898 322.797021 L 332.159875 322.908642 L 332.159875 323.280712 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.520906 308.869206 L 335.396882 308.869206 L 335.396882 309.47692 L 335.285262 309.588541 L 335.285262 310.791567 L 335.161238 311.039613 L 335.161238 312.837951 L 335.037215 313.073595 L 335.037215 315.119979 L 334.925594 315.479647 L 334.925594 317.513629 L 334.801571 317.873297 L 334.801571 319.795658 L 334.677547 320.031302 L 334.677547 321.593995 L 334.553524 321.842042 L 334.553524 322.797021 L 334.441903 322.908642 L 334.441903 323.280712 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.802934 308.869206 L 337.678911 308.869206 L 337.678911 309.352896 L 337.554888 309.47692 L 337.554888 310.555922 L 337.443267 310.791567 L 337.443267 312.478283 L 337.319243 312.837951 L 337.319243 314.74791 L 337.19522 315.119979 L 337.19522 317.153961 L 337.083599 317.513629 L 337.083599 319.43599 L 336.959576 319.795658 L 336.959576 321.358351 L 336.835553 321.593995 L 336.835553 322.672998 L 336.723932 322.797021 L 336.723932 323.280712 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.117581 322.077686 L 339.117581 322.672998 L 339.00596 322.797021 L 339.00596 323.280712 L 338.881937 323.280712 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.604129 307.802605 L 318.604129 324.235691 M 318.232059 324.595359 L 314.275716 324.595359 M 314.275716 307.554559 L 318.232059 307.554559 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.232059 324.235691 L 318.232059 307.802605 L 314.275716 307.802605 M 314.275716 324.235691 L 318.232059 324.235691 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.685859 307.554559 L 325.79748 307.554559 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.764861 324.595359 L 326.876482 324.471336 L 326.876482 323.876024 L 327.000506 323.752001 L 327.000506 322.31333 L 327.124529 322.077686 L 327.124529 320.031302 L 327.23615 319.919681 L 327.23615 317.389606 L 327.360173 317.277985 L 327.360173 314.512265 L 327.484196 314.276621 L 327.484196 312.118616 L 327.595817 311.870569 L 327.595817 309.712564 L 327.719841 309.588541 L 327.719841 308.273894 L 327.843864 308.14987 L 327.843864 307.554559 L 327.955485 307.554559 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 329.034488 324.595359 L 329.034488 324.471336 L 329.158511 324.471336 L 329.158511 323.752001 L 329.282534 323.64038 L 329.282534 322.077686 L 329.394155 321.953663 L 329.394155 319.919681 L 329.518178 319.671634 L 329.518178 317.277985 L 329.642202 317.029938 L 329.642202 314.276621 L 329.766225 314.152598 L 329.766225 311.758948 L 329.877846 311.510902 L 329.877846 309.588541 L 330.001869 309.47692 L 330.001869 308.14987 L 330.125893 308.038249 L 330.125893 307.554559 L 330.237514 307.554559 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 331.316516 324.595359 L 331.316516 324.471336 L 331.440539 324.471336 L 331.440539 323.64038 L 331.564563 323.516356 L 331.564563 321.953663 L 331.676184 321.842042 L 331.676184 319.560013 L 331.800207 319.311967 L 331.800207 316.794294 L 331.92423 316.55865 L 331.92423 314.152598 L 332.035851 313.916954 L 332.035851 311.510902 L 332.159875 311.399281 L 332.159875 309.352896 L 332.283898 309.228873 L 332.283898 308.038249 L 332.395519 307.914226 L 332.395519 307.554559 L 332.519542 307.554559 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.598545 324.595359 L 333.598545 324.471336 L 333.722568 324.359715 L 333.722568 323.516356 L 333.834189 323.392333 L 333.834189 321.718019 L 333.958212 321.482374 L 333.958212 319.311967 L 334.082236 319.076322 L 334.082236 316.55865 L 334.193857 316.434626 L 334.193857 313.681309 L 334.31788 313.433263 L 334.31788 311.399281 L 334.441903 311.151234 L 334.441903 309.228873 L 334.553524 309.117252 L 334.553524 307.914226 L 334.677547 307.914226 L 334.677547 307.554559 L 334.801571 307.554559 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.880573 324.595359 L 335.880573 324.359715 L 336.004597 324.359715 L 336.004597 323.392333 L 336.116218 323.280712 L 336.116218 321.482374 L 336.240241 321.358351 L 336.240241 319.076322 L 336.364264 318.952299 L 336.364264 316.434626 L 336.475885 316.198982 L 336.475885 313.433263 L 336.599908 313.321642 L 336.599908 311.039613 L 336.723932 310.791567 L 336.723932 309.117252 L 336.835553 308.993229 L 336.835553 307.914226 L 336.959576 307.802605 L 336.959576 307.554559 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 338.162602 324.595359 L 338.162602 324.235691 L 338.286625 324.235691 L 338.286625 323.280712 L 338.398246 323.032665 L 338.398246 321.358351 L 338.522269 321.122707 L 338.522269 318.840678 L 338.646293 318.481011 L 338.646293 316.310603 L 338.757914 315.950936 L 338.757914 313.433263 L 338.881937 313.073595 L 338.881937 310.791567 L 339.00596 310.555922 L 339.00596 308.869206 L 339.117581 308.757585 L 339.117581 307.554559 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.157147 324.595359 L 326.281171 324.595359 L 326.281171 324.111668 L 326.392791 324.000047 L 326.392791 322.797021 L 326.516815 322.672998 L 326.516815 320.750637 L 326.640838 320.639016 L 326.640838 318.232964 L 326.764861 317.99732 L 326.764861 315.355624 L 326.876482 315.119979 L 326.876482 312.589904 L 327.000506 312.478283 L 327.000506 310.320278 L 327.124529 310.196255 L 327.124529 308.633561 L 327.23615 308.52194 L 327.23615 307.678582 L 327.360173 307.678582 L 327.360173 307.554559 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 328.439176 324.595359 L 328.563199 324.595359 L 328.563199 324.000047 L 328.67482 324.000047 L 328.67482 322.672998 L 328.798843 322.548975 L 328.798843 320.390969 L 328.922867 320.279348 L 328.922867 317.99732 L 329.034488 317.873297 L 329.034488 315.119979 L 329.158511 314.871933 L 329.158511 312.478283 L 329.282534 312.230237 L 329.282534 310.196255 L 329.394155 309.960611 L 329.394155 308.397917 L 329.518178 308.273894 L 329.518178 307.678582 L 329.642202 307.554559 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.721204 324.595359 L 330.845228 324.595359 L 330.845228 324.000047 L 330.956849 323.876024 L 330.956849 322.548975 L 331.080872 322.31333 L 331.080872 320.279348 L 331.204895 320.031302 L 331.204895 317.637652 L 331.316516 317.389606 L 331.316516 314.871933 L 331.440539 314.636289 L 331.440539 312.230237 L 331.564563 311.994593 L 331.564563 309.836587 L 331.676184 309.712564 L 331.676184 308.273894 L 331.800207 308.273894 L 331.800207 307.554559 L 331.92423 307.554559 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.003233 324.595359 L 333.114854 324.471336 L 333.114854 323.876024 L 333.238877 323.752001 L 333.238877 322.189307 L 333.3629 322.077686 L 333.3629 320.031302 L 333.474521 319.795658 L 333.474521 317.389606 L 333.598545 317.153961 L 333.598545 314.512265 L 333.722568 314.276621 L 333.722568 311.870569 L 333.834189 311.634925 L 333.834189 309.712564 L 333.958212 309.588541 L 333.958212 308.273894 L 334.082236 308.14987 L 334.082236 307.554559 L 334.193857 307.554559 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.285262 324.595359 L 335.285262 324.471336 L 335.396882 324.471336 L 335.396882 323.64038 L 335.520906 323.64038 L 335.520906 322.077686 L 335.644929 321.953663 L 335.644929 319.795658 L 335.75655 319.671634 L 335.75655 317.153961 L 335.880573 317.029938 L 335.880573 314.276621 L 336.004597 314.040977 L 336.004597 311.634925 L 336.116218 311.510902 L 336.116218 309.588541 L 336.240241 309.47692 L 336.240241 308.14987 L 336.364264 308.038249 L 336.364264 307.554559 L 336.475885 307.554559 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.554888 324.595359 L 337.554888 324.471336 L 337.678911 324.471336 L 337.678911 323.64038 L 337.802934 323.516356 L 337.802934 321.953663 L 337.926958 321.842042 L 337.926958 319.43599 L 338.038579 319.311967 L 338.038579 316.794294 L 338.162602 316.55865 L 338.162602 314.040977 L 338.286625 313.79293 L 338.286625 311.510902 L 338.398246 311.275257 L 338.398246 309.352896 L 338.522269 309.228873 L 338.522269 308.038249 L 338.646293 307.914226 L 338.646293 307.554559 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.117581 322.077686 L 339.117581 308.14987 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.685859 307.554559 L 325.685859 320.031302 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.117581 323.392333 L 339.117581 323.156689 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.685859 322.077686 L 325.685859 323.64038 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.232059 307.554559 L 318.232059 307.802605 M 318.232059 324.235691 L 318.232059 324.595359 M 318.232059 307.802605 L 318.604129 307.802605 M 318.604129 324.235691 L 318.232059 324.235691 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.480105 307.802605 L 318.232059 307.554559 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.232059 324.471336 L 318.480105 324.235691 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.839773 323.392333 L 318.71575 323.516356 L 318.604129 323.64038 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.604129 308.52194 L 318.839773 308.757585 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<g clip-path="url(#clip7)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.915919 323.280712 L 341.163966 323.032665 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip8)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 341.163966 309.117252 L 340.915919 308.869206 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip9)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.915919 323.280712 L 339.117581 323.280712 M 339.00596 323.280712 L 338.881937 323.280712 M 336.835553 323.280712 L 336.599908 323.280712 M 334.553524 323.280712 L 334.441903 323.280712 M 332.283898 323.280712 L 332.159875 323.280712 M 330.001869 323.280712 L 329.877846 323.280712 M 327.719841 323.280712 L 327.595817 323.280712 M 325.685859 323.280712 L 318.839773 323.280712 M 340.915919 308.869206 L 339.117581 308.869206 M 337.926958 308.869206 L 337.802934 308.869206 M 335.644929 308.869206 L 335.520906 308.869206 M 333.3629 308.869206 L 333.238877 308.869206 M 331.080872 308.869206 L 330.956849 308.869206 M 328.798843 308.869206 L 328.67482 308.869206 M 326.516815 308.869206 L 326.392791 308.869206 M 325.685859 308.869206 L 318.839773 308.869206 M 338.162602 324.595359 L 337.554888 324.595359 M 335.880573 324.595359 L 335.285262 324.595359 M 333.598545 324.595359 L 333.003233 324.595359 M 331.316516 324.595359 L 330.721204 324.595359 M 329.034488 324.595359 L 328.439176 324.595359 M 326.764861 324.595359 L 326.281171 324.595359 M 339.117581 307.554559 L 338.646293 307.554559 M 336.959576 307.554559 L 336.475885 307.554559 M 334.677547 307.554559 L 334.193857 307.554559 M 332.395519 307.554559 L 331.92423 307.554559 M 330.237514 307.554559 L 329.642202 307.554559 M 327.955485 307.554559 L 327.360173 307.554559 M 327.595817 323.280712 L 326.764861 324.595359 M 329.877846 323.280712 L 329.034488 324.595359 M 332.159875 323.280712 L 331.316516 324.595359 M 334.441903 323.280712 L 333.598545 324.595359 M 336.723932 323.280712 L 335.880573 324.595359 M 338.881937 323.280712 L 338.162602 324.595359 M 325.685859 307.554559 L 326.392791 308.869206 M 327.955485 307.554559 L 328.67482 308.869206 M 330.237514 307.554559 L 330.956849 308.869206 M 332.519542 307.554559 L 333.238877 308.869206 M 334.801571 307.554559 L 335.520906 308.869206 M 336.959576 307.554559 L 337.802934 308.869206 M 326.157147 324.595359 L 325.685859 323.64038 M 328.439176 324.595359 L 327.719841 323.280712 M 330.721204 324.595359 L 330.001869 323.280712 M 333.003233 324.595359 L 332.283898 323.280712 M 335.285262 324.595359 L 334.441903 323.280712 M 337.554888 324.595359 L 336.723932 323.280712 M 339.117581 323.392333 L 339.00596 323.280712 M 337.926958 308.869206 L 338.646293 307.554559 M 335.644929 308.869206 L 336.364264 307.554559 M 333.3629 308.869206 L 334.082236 307.554559 M 331.080872 308.869206 L 331.92423 307.554559 M 328.798843 308.869206 L 329.642202 307.554559 M 326.516815 308.869206 L 327.360173 307.554559 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.475945 21.842101 L 32.035911 21.842101 L 32.035911 48.841972 L 36.475945 48.841972 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.079568 27.832426 L 28.079568 42.950866 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.67488 35.397847 L 28.798903 35.273824 L 28.798903 35.03818 L 28.922926 34.914156 L 28.922926 34.802535 L 29.034547 34.678512 L 29.034547 34.554489 L 29.15857 34.554489 L 29.282594 34.442868 L 29.394215 34.442868 L 29.518238 34.318845 L 29.766285 34.318845 L 29.877906 34.194821 L 30.361596 34.194821 L 30.48562 34.318845 L 30.721264 34.318845 L 30.845287 34.442868 L 30.956908 34.442868 L 30.956908 34.554489 L 31.080931 34.554489 L 31.316576 34.802535 L 31.316576 34.914156 L 31.440599 35.03818 L 31.440599 35.757515 L 31.316576 35.869136 L 31.316576 35.993159 L 31.204955 35.993159 L 30.845287 36.352827 L 30.721264 36.352827 L 30.597241 36.47685 L 29.642261 36.47685 L 29.518238 36.352827 L 29.394215 36.352827 L 29.282594 36.228803 L 29.15857 36.228803 L 29.034547 36.117182 L 29.034547 35.993159 L 28.922926 35.993159 L 28.922926 35.869136 L 28.798903 35.757515 L 28.798903 35.52187 Z M 28.67488 35.397847 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.440599 27.832426 L 28.67488 27.832426 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.67488 42.950866 L 28.922926 42.950866 L 29.034547 42.839245 L 31.204955 42.839245 L 31.316576 42.950866 L 31.440599 42.950866 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.843924 27.472759 L 27.843924 28.440141 L 27.955544 28.551761 L 27.955544 36.228803 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.876542 26.877447 L 26.876542 27.113091 L 27.000565 27.113091 L 27.000565 27.720805 L 27.124588 27.832426 L 27.124588 28.440141 L 27.236209 28.675785 L 27.236209 29.39512 L 27.360233 29.643166 L 27.360233 30.474123 L 27.484256 30.709767 L 27.484256 31.677148 L 27.595877 31.912793 L 27.595877 32.756151 L 27.7199 33.115819 L 27.7199 34.194821 L 27.843924 34.442868 L 27.843924 35.397847 L 27.955544 35.633491 L 27.955544 36.228803 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.876542 35.397847 L 26.876542 26.877447 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.236209 43.794224 L 27.124588 43.794224 L 27.124588 41.995886 L 27.000565 41.871863 L 27.000565 37.679876 L 26.876542 37.431829 L 26.876542 35.397847 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.639534 44.153892 L 23.515511 44.029868 L 23.515511 43.198912 L 23.40389 43.074889 L 23.40389 41.040907 L 23.279866 40.79286 L 23.279866 37.91552 L 23.155843 37.679876 L 23.155843 34.442868 L 23.044222 34.194821 L 23.044222 31.069434 L 22.920199 30.957813 L 22.920199 28.440141 L 22.796176 28.316117 L 22.796176 26.877447 L 22.684555 26.877447 L 22.684555 26.641803 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.437872 44.153892 L 25.437872 43.670201 L 25.313848 43.55858 L 25.313848 41.871863 L 25.202227 41.74784 L 25.202227 39.118546 L 25.078204 38.870499 L 25.078204 35.757515 L 24.966583 35.52187 L 24.966583 32.27246 L 24.84256 32.036816 L 24.84256 29.159476 L 24.718537 29.035452 L 24.718537 27.237115 L 24.606916 27.113091 L 24.606916 26.641803 L 24.482892 26.641803 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.876542 35.397847 L 26.876542 33.351463 L 26.764921 33.115819 L 26.764921 30.350099 L 26.640898 30.114455 L 26.640898 27.832426 L 26.516874 27.720805 L 26.516874 26.641803 L 26.392851 26.641803 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 22.200864 27.832426 L 22.200864 28.675785 L 22.324887 28.799808 L 22.324887 30.709767 L 22.436508 30.957813 L 22.436508 33.475486 L 22.560531 33.835154 L 22.560531 36.588471 L 22.684555 36.960541 L 22.684555 39.478213 L 22.796176 39.713858 L 22.796176 41.636219 L 22.920199 41.871863 L 22.920199 42.950866 L 23.044222 42.950866 L 23.044222 43.074889 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.999201 27.720805 L 23.999201 27.95645 L 24.123225 28.068071 L 24.123225 29.39512 L 24.234846 29.519143 L 24.234846 31.912793 L 24.358869 32.036816 L 24.358869 34.802535 L 24.482892 35.03818 L 24.482892 37.791497 L 24.606916 37.91552 L 24.606916 40.433193 L 24.718537 40.681239 L 24.718537 42.355554 L 24.84256 42.479577 L 24.84256 43.074889 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.797539 27.720805 L 25.921563 27.720805 L 25.921563 28.316117 L 26.033183 28.551761 L 26.033183 30.114455 L 26.157207 30.350099 L 26.157207 32.880174 L 26.28123 33.239842 L 26.28123 35.757515 L 26.392851 36.117182 L 26.392851 38.994523 L 26.516874 39.230167 L 26.516874 41.276551 L 26.640898 41.512195 L 26.640898 42.715221 L 26.764921 42.839245 L 26.764921 43.074889 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.7199 27.720805 L 27.7199 27.832426 L 27.843924 27.832426 L 27.843924 28.911429 L 27.955544 29.035452 L 27.955544 30.238478 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.764921 26.641803 L 26.876542 26.641803 L 26.876542 26.877447 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24.966583 26.641803 L 24.966583 26.877447 L 25.078204 27.00147 L 25.078204 28.551761 L 25.202227 28.675785 L 25.202227 31.193458 L 25.313848 31.317481 L 25.313848 34.554489 L 25.437872 34.678512 L 25.437872 38.039543 L 25.561895 38.151164 L 25.561895 41.040907 L 25.685918 41.152528 L 25.685918 43.198912 L 25.797539 43.310533 L 25.797539 44.153892 L 25.921563 44.153892 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.044222 26.641803 L 23.155843 26.641803 L 23.155843 27.720805 L 23.279866 27.832426 L 23.279866 30.114455 L 23.40389 30.238478 L 23.40389 33.239842 L 23.515511 33.475486 L 23.515511 36.712494 L 23.639534 36.960541 L 23.639534 39.961904 L 23.763557 40.197549 L 23.763557 42.479577 L 23.875178 42.591198 L 23.875178 43.918247 L 23.999201 43.918247 L 23.999201 44.153892 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.841196 41.400575 L 21.841196 41.74784 L 21.96522 41.871863 L 21.96522 43.55858 L 22.07684 43.670201 L 22.07684 44.153892 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.605552 34.194821 L 21.605552 35.397847 L 21.717173 35.757515 L 21.717173 38.870499 L 21.841196 39.230167 L 21.841196 40.197549 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.357505 28.068071 L 21.357505 28.911429 L 21.481529 29.271097 L 21.481529 32.036816 L 21.605552 32.396484 L 21.605552 32.756151 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.96522 27.832426 L 21.96522 29.035452 L 22.07684 29.271097 L 22.07684 31.317481 L 22.200864 31.553125 L 22.200864 33.835154 L 22.324887 34.194821 L 22.324887 36.960541 L 22.436508 37.320208 L 22.436508 39.837881 L 22.560531 40.073525 L 22.560531 41.995886 L 22.684555 42.11991 L 22.684555 42.950866 L 22.796176 43.074889 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.763557 27.720805 L 23.763557 28.192094 L 23.875178 28.316117 L 23.875178 29.643166 L 23.999201 29.878811 L 23.999201 32.036816 L 24.123225 32.396484 L 24.123225 35.273824 L 24.234846 35.633491 L 24.234846 38.151164 L 24.358869 38.510832 L 24.358869 40.681239 L 24.482892 40.916884 L 24.482892 42.479577 L 24.606916 42.591198 L 24.606916 43.074889 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.561895 27.720805 L 25.685918 27.720805 L 25.685918 28.551761 L 25.797539 28.799808 L 25.797539 30.474123 L 25.921563 30.709767 L 25.921563 33.115819 L 26.033183 33.351463 L 26.033183 36.352827 L 26.157207 36.712494 L 26.157207 39.118546 L 26.28123 39.478213 L 26.28123 41.400575 L 26.392851 41.636219 L 26.392851 42.839245 L 26.516874 42.950866 L 26.516874 43.074889 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.484256 27.720805 L 27.484256 27.832426 L 27.595877 27.95645 L 27.595877 29.271097 L 27.7199 29.39512 L 27.7199 31.441504 L 27.843924 31.553125 L 27.843924 34.318845 L 27.955544 34.554489 L 27.955544 36.228803 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.243157 26.753424 L 15.243157 26.641803 L 15.119134 26.641803 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.635443 27.720805 L 14.635443 28.192094 L 14.759466 28.192094 L 14.759466 29.754787 L 14.88349 29.878811 L 14.88349 32.396484 L 14.995111 32.632128 L 14.995111 35.397847 L 15.119134 35.633491 L 15.119134 38.275188 L 15.243157 38.510832 L 15.243157 39.230167 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.357505 39.589834 L 21.357505 36.712494 L 21.233482 36.47685 L 21.233482 34.442868 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.717173 44.153892 L 21.717173 43.918247 L 21.605552 43.794224 L 21.605552 42.479577 L 21.481529 42.231531 L 21.481529 41.995886 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 13.680464 26.641803 L 13.680464 26.753424 L 13.804487 26.753424 L 13.804487 28.068071 L 13.916108 28.192094 L 13.916108 30.598146 L 14.040131 30.83379 L 14.040131 33.835154 L 14.164154 34.070798 L 14.164154 37.320208 L 14.275775 37.555852 L 14.275775 40.557216 L 14.399799 40.681239 L 14.399799 42.839245 L 14.523822 42.950866 L 14.523822 44.029868 L 14.635443 44.029868 L 14.635443 44.153892 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.399799 27.720805 L 14.399799 28.316117 L 14.523822 28.551761 L 14.523822 30.114455 L 14.635443 30.474123 L 14.635443 32.520507 L 14.759466 32.880174 L 14.759466 35.52187 L 14.88349 35.869136 L 14.88349 38.634855 L 14.995111 38.870499 L 14.995111 41.040907 L 15.119134 41.276551 L 15.119134 42.591198 L 15.243157 42.715221 L 15.243157 42.950866 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.645118 44.153892 L 8.521095 44.153892 L 8.521095 43.434556 L 8.397071 43.198912 L 8.397071 41.276551 L 8.28545 40.916884 L 8.28545 38.151164 L 8.161427 37.679876 L 8.161427 34.914156 L 8.037404 34.442868 L 8.037404 31.317481 L 7.925783 31.069434 L 7.925783 28.551761 L 7.80176 28.316117 L 7.80176 27.00147 L 7.677736 26.877447 L 7.677736 26.753424 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.443456 44.153892 L 10.443456 43.794224 L 10.319432 43.670201 L 10.319432 42.11991 L 10.195409 41.871863 L 10.195409 39.35419 L 10.083788 39.118546 L 10.083788 35.993159 L 9.959765 35.757515 L 9.959765 32.520507 L 9.835742 32.27246 L 9.835742 29.519143 L 9.724121 29.271097 L 9.724121 27.361138 L 9.600097 27.361138 L 9.600097 26.641803 L 9.476074 26.641803 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.353414 44.153892 L 12.353414 44.029868 L 12.241793 44.029868 L 12.241793 42.839245 L 12.11777 42.715221 L 12.11777 40.433193 L 12.006149 40.321572 L 12.006149 37.320208 L 11.882126 37.072162 L 11.882126 33.71113 L 11.758103 33.599509 L 11.758103 30.474123 L 11.646482 30.350099 L 11.646482 28.068071 L 11.522458 27.95645 L 11.522458 26.753424 L 11.398435 26.753424 L 11.398435 26.641803 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.275775 44.153892 L 14.164154 44.153892 L 14.164154 43.434556 L 14.040131 43.310533 L 14.040131 41.512195 L 13.916108 41.276551 L 13.916108 38.510832 L 13.804487 38.275188 L 13.804487 35.03818 L 13.680464 34.914156 L 13.680464 31.677148 L 13.55644 31.441504 L 13.55644 28.911429 L 13.444819 28.675785 L 13.444819 27.00147 L 13.320796 27.00147 L 13.320796 26.641803 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.082424 27.832426 L 7.677736 26.753424 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.082424 27.832426 L 7.194045 27.832426 L 7.194045 28.911429 L 7.318069 29.159476 L 7.318069 31.069434 L 7.442092 31.441504 L 7.442092 33.959177 L 7.553713 34.318845 L 7.553713 37.072162 L 7.677736 37.431829 L 7.677736 39.713858 L 7.80176 39.961904 L 7.80176 41.871863 L 7.925783 41.995886 L 7.925783 42.950866 L 8.037404 42.950866 L 8.037404 43.074889 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9.004786 27.720805 L 9.004786 28.068071 L 9.116406 28.192094 L 9.116406 29.519143 L 9.24043 29.878811 L 9.24043 31.912793 L 9.364453 32.27246 L 9.364453 35.03818 L 9.476074 35.397847 L 9.476074 38.039543 L 9.600097 38.275188 L 9.600097 40.79286 L 9.724121 41.040907 L 9.724121 42.479577 L 9.835742 42.591198 L 9.835742 43.074889 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.803123 27.720805 L 10.927147 27.720805 L 10.927147 28.551761 L 11.038767 28.675785 L 11.038767 30.350099 L 11.162791 30.598146 L 11.162791 32.880174 L 11.286814 33.239842 L 11.286814 36.228803 L 11.398435 36.588471 L 11.398435 38.994523 L 11.522458 39.35419 L 11.522458 41.512195 L 11.646482 41.74784 L 11.646482 42.839245 L 11.758103 42.839245 L 11.758103 43.074889 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.713082 27.720805 L 12.713082 27.832426 L 12.837105 27.832426 L 12.837105 29.159476 L 12.961129 29.39512 L 12.961129 31.193458 L 13.072749 31.553125 L 13.072749 33.959177 L 13.196773 34.318845 L 13.196773 37.320208 L 13.320796 37.679876 L 13.320796 39.961904 L 13.444819 40.197549 L 13.444819 42.11991 L 13.55644 42.231531 L 13.55644 42.950866 L 13.680464 43.074889 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11.758103 26.641803 L 11.882126 26.641803 L 11.882126 27.472759 L 12.006149 27.596782 L 12.006149 29.519143 L 12.11777 29.754787 L 12.11777 32.632128 L 12.241793 32.756151 L 12.241793 35.993159 L 12.353414 36.228803 L 12.353414 39.35419 L 12.477438 39.589834 L 12.477438 42.11991 L 12.601461 42.231531 L 12.601461 43.794224 L 12.713082 43.794224 L 12.713082 44.153892 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9.959765 26.641803 L 9.959765 27.00147 L 10.083788 27.00147 L 10.083788 28.675785 L 10.195409 28.799808 L 10.195409 31.441504 L 10.319432 31.553125 L 10.319432 34.678512 L 10.443456 34.914156 L 10.443456 38.151164 L 10.555077 38.399211 L 10.555077 41.400575 L 10.6791 41.512195 L 10.6791 43.434556 L 10.803123 43.434556 L 10.803123 44.153892 L 10.927147 44.153892 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.037404 26.641803 L 8.161427 26.753424 L 8.161427 27.832426 L 8.28545 27.95645 L 8.28545 30.238478 L 8.397071 30.474123 L 8.397071 33.599509 L 8.521095 33.835154 L 8.521095 37.072162 L 8.645118 37.320208 L 8.645118 40.321572 L 8.756739 40.557216 L 8.756739 42.715221 L 8.880762 42.839245 L 8.880762 44.029868 L 9.004786 44.029868 L 9.004786 44.153892 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.239066 26.753424 L 6.239066 27.361138 L 6.363089 27.361138 L 6.363089 29.271097 L 6.47471 29.519143 L 6.47471 32.27246 L 6.598734 32.520507 L 6.598734 35.757515 L 6.722757 35.993159 L 6.722757 39.118546 L 6.834378 39.35419 L 6.834378 41.871863 L 6.958401 42.11991 L 6.958401 43.670201 L 7.082424 43.794224 L 7.082424 44.153892 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.834378 27.832426 L 6.958401 27.95645 L 6.958401 29.159476 L 7.082424 29.39512 L 7.082424 31.193458 L 7.194045 31.553125 L 7.194045 34.194821 L 7.318069 34.554489 L 7.318069 37.431829 L 7.442092 37.791497 L 7.442092 39.961904 L 7.553713 40.321572 L 7.553713 42.11991 L 7.677736 42.231531 L 7.677736 43.074889 L 7.80176 43.074889 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.756739 27.720805 L 8.756739 28.192094 L 8.880762 28.316117 L 8.880762 29.878811 L 9.004786 30.238478 L 9.004786 32.396484 L 9.116406 32.756151 L 9.116406 35.273824 L 9.24043 35.633491 L 9.24043 38.510832 L 9.364453 38.758878 L 9.364453 40.916884 L 9.476074 41.152528 L 9.476074 42.479577 L 9.600097 42.591198 L 9.600097 43.074889 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.555077 27.720805 L 10.6791 27.720805 L 10.6791 28.551761 L 10.803123 28.799808 L 10.803123 30.709767 L 10.927147 31.069434 L 10.927147 33.351463 L 11.038767 33.71113 L 11.038767 36.352827 L 11.162791 36.712494 L 11.162791 39.478213 L 11.286814 39.713858 L 11.286814 41.636219 L 11.398435 41.74784 L 11.398435 42.950866 L 11.522458 42.950866 L 11.522458 43.074889 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.477438 27.720805 L 12.477438 27.95645 L 12.601461 28.068071 L 12.601461 29.159476 L 12.713082 29.39512 L 12.713082 31.677148 L 12.837105 32.036816 L 12.837105 34.554489 L 12.961129 34.914156 L 12.961129 37.431829 L 13.072749 37.791497 L 13.072749 40.321572 L 13.196773 40.681239 L 13.196773 42.231531 L 13.320796 42.355554 L 13.320796 43.074889 L 13.444819 43.074889 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.239066 26.753424 L 6.834378 27.832426 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.800396 44.153892 L 4.800396 43.670201 L 4.676373 43.55858 L 4.676373 41.995886 L 4.564752 41.74784 L 4.564752 39.118546 L 4.440728 38.870499 L 4.440728 35.633491 L 4.316705 35.273824 L 4.316705 32.036816 L 4.205084 31.801172 L 4.205084 31.553125 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.485749 27.361138 L 3.485749 27.237115 L 3.59737 27.237115 L 3.59737 27.361138 L 3.721393 27.361138 L 3.721393 27.720805 L 3.845417 27.832426 L 3.845417 28.316117 L 3.957038 28.440141 L 3.957038 29.271097 L 4.081061 29.39512 L 4.081061 30.350099 L 4.205084 30.598146 L 4.205084 31.553125 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.361726 27.720805 L 3.361726 27.95645 L 3.485749 28.068071 L 3.485749 29.39512 L 3.59737 29.519143 L 3.59737 31.912793 L 3.721393 32.27246 L 3.721393 34.678512 L 3.845417 35.03818 L 3.845417 37.679876 L 3.957038 38.039543 L 3.957038 40.557216 L 4.081061 40.79286 L 4.081061 42.231531 L 4.205084 42.479577 L 4.205084 43.074889 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.160063 27.720805 L 5.284087 27.720805 L 5.284087 28.316117 L 5.395708 28.551761 L 5.395708 30.114455 L 5.519731 30.350099 L 5.519731 32.880174 L 5.643754 33.239842 L 5.643754 35.869136 L 5.767778 36.228803 L 5.767778 38.634855 L 5.879399 38.994523 L 5.879399 41.276551 L 6.003422 41.512195 L 6.003422 42.715221 L 6.115043 42.839245 L 6.115043 43.074889 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.082424 27.720805 L 7.082424 27.832426 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.722757 44.153892 L 6.722757 44.029868 L 6.598734 43.918247 L 6.598734 42.591198 L 6.47471 42.479577 L 6.47471 40.073525 L 6.363089 39.961904 L 6.363089 36.836517 L 6.239066 36.588471 L 6.239066 33.351463 L 6.115043 33.115819 L 6.115043 30.114455 L 6.003422 29.990432 L 6.003422 27.832426 L 5.879399 27.720805 L 5.879399 26.641803 L 5.767778 26.641803 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.677736 26.753424 L 7.677736 26.641803 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.205084 31.553125 L 4.205084 26.641803 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.126081 27.95645 L 3.126081 28.068071 L 3.237702 28.192094 L 3.237702 31.069434 L 3.361726 31.441504 L 3.361726 36.228803 L 3.485749 36.588471 L 3.485749 40.79286 L 3.59737 41.040907 L 3.59737 43.434556 L 3.721393 43.434556 L 3.721393 43.55858 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.126081 27.95645 L 3.126081 27.720805 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.002058 42.950866 L 3.002058 27.832426 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.316705 26.641803 L 4.316705 26.877447 L 4.440728 27.00147 L 4.440728 28.551761 L 4.564752 28.675785 L 4.564752 31.193458 L 4.676373 31.441504 L 4.676373 34.554489 L 4.800396 34.802535 L 4.800396 38.039543 L 4.924419 38.151164 L 4.924419 41.040907 L 5.03604 41.152528 L 5.03604 43.198912 L 5.160063 43.310533 L 5.160063 44.153892 L 5.284087 44.153892 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.115043 26.641803 L 6.239066 26.641803 L 6.239066 26.753424 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.126081 27.95645 L 3.126081 28.068071 L 3.237702 28.192094 L 3.237702 29.754787 L 3.361726 29.990432 L 3.361726 32.160839 L 3.485749 32.520507 L 3.485749 35.149801 L 3.59737 35.52187 L 3.59737 38.151164 L 3.721393 38.510832 L 3.721393 40.681239 L 3.845417 40.916884 L 3.845417 42.479577 L 3.957038 42.591198 L 3.957038 43.074889 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.924419 27.720805 L 5.03604 27.720805 L 5.03604 28.440141 L 5.160063 28.675785 L 5.160063 30.598146 L 5.284087 30.83379 L 5.284087 33.239842 L 5.395708 33.599509 L 5.395708 36.228803 L 5.519731 36.588471 L 5.519731 39.230167 L 5.643754 39.478213 L 5.643754 41.512195 L 5.767778 41.636219 L 5.767778 42.839245 L 5.879399 42.839245 L 5.879399 43.074889 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.834378 27.720805 L 6.834378 27.832426 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.834378 27.832426 L 7.082424 27.832426 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<g clip-path="url(#clip10)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1.079697 42.950866 L 1.079697 27.832426 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip11)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.72003 42.591198 L 0.72003 28.068071 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.243157 46.671564 L 15.243157 45.232894 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.243157 35.397847 L 15.243157 45.232894 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.243157 25.550398 L 15.243157 35.397847 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.243157 25.550398 L 15.243157 24.000107 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.243157 45.232894 L 15.243157 45.952229 L 15.354778 46.200276 L 15.354778 46.559943 L 15.478801 46.671564 L 15.478801 46.919611 L 15.602825 47.155255 L 15.714446 47.3909 L 15.714446 47.514923 L 15.838469 47.750567 L 15.962492 47.998614 L 16.074113 48.234258 L 16.198136 48.482304 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.435144 45.356918 L 19.794812 45.356918 L 19.794812 44.99725 L 19.683191 44.749203 L 19.683191 44.277915 L 19.559168 44.029868 L 19.559168 43.670201 L 19.435144 43.434556 L 19.323523 43.198912 L 19.323523 43.074889 L 19.1995 42.839245 L 19.075477 42.591198 L 18.963856 42.355554 L 18.839833 42.11991 L 18.715809 41.871863 L 16.198136 41.871863 L 16.074113 42.11991 L 15.962492 42.355554 L 15.838469 42.591198 L 15.714446 42.839245 L 15.714446 43.074889 L 15.602825 43.198912 L 15.478801 43.434556 L 15.478801 43.670201 L 15.354778 43.794224 L 15.354778 44.277915 L 15.243157 44.389536 L 15.243157 45.232894 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16.198136 48.482304 L 18.715809 48.482304 L 18.839833 48.234258 L 18.963856 48.122637 L 18.963856 47.998614 L 19.075477 47.750567 L 19.1995 47.638946 L 19.1995 47.514923 L 19.323523 47.279279 L 19.323523 47.155255 L 19.435144 47.031232 L 19.435144 46.919611 L 19.559168 46.795588 L 19.559168 46.559943 L 19.683191 46.311897 L 19.683191 46.076253 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.794812 46.076253 L 19.435144 45.356918 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.605552 26.517779 L 22.200864 26.158112 L 21.357505 26.034089 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.559168 24.235751 L 19.559168 24.000107 L 19.1995 23.280772 L 19.1995 23.032725 L 19.075477 22.797081 L 18.963856 22.673057 L 18.839833 22.549034 L 18.839833 22.437413 L 18.715809 22.31339 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.794812 23.75206 L 19.559168 24.235751 M 22.200864 27.832426 L 21.121861 28.068071 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.559168 24.235751 L 19.559168 24.719442 L 19.683191 25.19073 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.794812 25.314754 L 19.683191 25.19073 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.683191 25.550398 L 19.683191 25.19073 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 18.715809 22.31339 L 16.198136 22.31339 L 16.074113 22.549034 L 15.962492 22.673057 L 15.838469 22.908702 L 15.714446 23.156748 L 15.714446 23.392393 L 15.602825 23.640439 L 15.478801 23.75206 L 15.478801 24.000107 L 15.354778 24.235751 L 15.354778 24.595418 L 15.243157 24.831063 L 15.243157 26.282135 L 15.354778 26.517779 L 15.354778 26.877447 L 15.478801 27.113091 L 15.478801 27.237115 L 15.602825 27.472759 L 15.714446 27.720805 L 15.714446 27.95645 L 15.838469 28.068071 L 15.962492 28.316117 L 16.074113 28.551761 L 16.198136 28.799808 L 18.715809 28.799808 L 18.839833 28.551761 L 18.963856 28.316117 L 19.075477 28.068071 L 19.1995 27.95645 L 19.323523 27.720805 L 19.323523 27.472759 L 19.435144 27.237115 L 19.559168 27.113091 L 19.559168 26.641803 L 19.683191 26.517779 L 19.683191 25.910065 L 19.794812 25.674421 L 19.794812 25.550398 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.794812 31.912793 L 19.683191 31.677148 L 19.683191 30.598146 L 19.559168 30.350099 L 19.559168 29.878811 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.794812 35.397847 L 19.794812 35.03818 L 19.683191 34.554489 L 19.683191 33.475486 L 19.559168 33.115819 L 19.559168 32.27246 L 19.435144 31.912793 L 19.323523 31.441504 L 19.323523 31.069434 L 19.1995 30.598146 L 19.075477 30.238478 L 18.963856 29.754787 L 18.839833 29.271097 L 18.715809 28.799808 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.794812 29.643166 L 19.559168 29.878811 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.357505 32.520507 L 22.200864 33.835154 L 21.121861 34.442868 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.121861 33.71113 L 22.200864 33.835154 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.121861 20.87472 L 21.121861 49.796951 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.794812 20.87472 L 19.794812 49.796951 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.121861 25.674421 L 22.200864 27.832426 M 21.121861 23.392393 L 22.200864 26.158112 M 19.794812 46.919611 L 19.683191 46.795588 M 21.121861 43.794224 L 21.357505 43.55858 M 21.605552 44.153892 L 21.717173 44.029868 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.121861 47.3909 L 22.200864 44.513559 L 21.121861 44.029868 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.794812 38.870499 L 19.559168 38.758878 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.683191 40.433193 L 19.683191 39.589834 L 19.559168 39.230167 L 19.559168 38.758878 L 19.683191 38.758878 L 19.794812 38.634855 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 18.715809 41.871863 L 18.839833 41.400575 L 18.963856 41.040907 L 19.075477 40.557216 L 19.1995 40.073525 L 19.323523 39.713858 L 19.323523 39.230167 L 19.435144 38.870499 L 19.559168 38.510832 L 19.559168 37.679876 L 19.683191 37.320208 L 19.683191 36.117182 L 19.794812 35.757515 L 19.794812 35.397847 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16.198136 28.799808 L 16.074113 29.271097 L 15.962492 29.754787 L 15.838469 30.238478 L 15.714446 30.598146 L 15.714446 31.069434 L 15.602825 31.441504 L 15.478801 31.912793 L 15.478801 32.27246 L 15.354778 32.632128 L 15.354778 33.475486 L 15.243157 33.835154 L 15.243157 36.836517 L 15.354778 37.320208 L 15.354778 38.039543 L 15.478801 38.510832 L 15.478801 38.870499 L 15.602825 39.230167 L 15.714446 39.713858 L 15.714446 40.073525 L 15.962492 41.040907 L 16.074113 41.400575 L 16.198136 41.871863 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.121861 39.230167 L 22.200864 40.79286 L 21.121861 42.715221 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<g clip-path="url(#clip12)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.794812 45.356918 L 19.918835 45.356918 M 32.035911 42.950866 L 31.440599 42.950866 M 28.67488 42.950866 L 28.079568 42.950866 M 32.035911 27.832426 L 31.440599 27.832426 M 28.67488 27.832426 L 28.079568 27.832426 M 28.079568 42.950866 L 27.236209 43.794224 M 28.079568 27.832426 L 27.843924 27.472759 M 23.639534 44.153892 L 23.044222 43.074889 M 25.437872 44.153892 L 24.84256 43.074889 M 22.07684 27.596782 L 22.684555 26.641803 M 23.999201 27.720805 L 24.482892 26.641803 M 25.797539 27.720805 L 26.392851 26.641803 M 27.7199 27.720805 L 27.843924 27.472759 M 27.236209 43.794224 L 26.764921 43.074889 M 26.876542 26.641803 L 27.484256 27.720805 M 24.966583 26.641803 L 25.561895 27.720805 M 23.044222 26.641803 L 23.763557 27.720805 M 22.796176 43.074889 L 22.07684 44.153892 M 24.718537 43.074889 L 23.999201 44.153892 M 26.516874 43.074889 L 25.921563 44.153892 M 14.523822 27.720805 L 15.119134 26.641803 M 21.717173 44.153892 L 21.121861 43.074889 M 13.680464 26.641803 L 14.399799 27.720805 M 15.243157 43.198912 L 14.635443 44.153892 M 8.521095 44.153892 L 8.037404 43.074889 M 10.443456 44.153892 L 9.835742 43.074889 M 12.353414 44.153892 L 11.758103 43.074889 M 14.164154 44.153892 L 13.680464 43.074889 M 9.004786 27.720805 L 9.476074 26.641803 M 10.803123 27.720805 L 11.398435 26.641803 M 12.713082 27.720805 L 13.320796 26.641803 M 11.758103 26.641803 L 12.477438 27.720805 M 9.959765 26.641803 L 10.555077 27.720805 M 8.037404 26.641803 L 8.756739 27.720805 M 7.80176 43.074889 L 7.082424 44.153892 M 9.600097 43.074889 L 9.004786 44.153892 M 11.522458 43.074889 L 10.927147 44.153892 M 13.444819 43.074889 L 12.713082 44.153892 M 4.800396 44.153892 L 4.205084 43.074889 M 3.361726 27.720805 L 3.485749 27.361138 M 5.160063 27.720805 L 5.767778 26.641803 M 7.082424 27.720805 L 7.677736 26.641803 M 6.722757 44.153892 L 6.115043 43.074889 M 3.002058 27.832426 L 3.126081 27.720805 M 3.485749 27.361138 L 4.205084 26.641803 M 3.002058 42.950866 L 3.721393 43.55858 M 4.316705 26.641803 L 4.924419 27.720805 M 6.239066 26.641803 L 6.834378 27.720805 M 4.081061 43.074889 L 3.721393 43.55858 M 5.879399 43.074889 L 5.284087 44.153892 M 3.126081 27.720805 L 3.361726 27.720805 M 3.957038 43.074889 L 4.205084 43.074889 M 4.924419 27.720805 L 5.160063 27.720805 M 5.879399 43.074889 L 6.115043 43.074889 M 6.834378 27.720805 L 7.082424 27.720805 M 7.80176 43.074889 L 8.037404 43.074889 M 8.756739 27.720805 L 9.004786 27.720805 M 9.600097 43.074889 L 9.835742 43.074889 M 10.555077 27.720805 L 10.803123 27.720805 M 11.522458 43.074889 L 11.758103 43.074889 M 12.477438 27.720805 L 12.713082 27.720805 M 13.444819 43.074889 L 13.680464 43.074889 M 14.399799 27.720805 L 14.635443 27.720805 M 22.796176 43.074889 L 23.044222 43.074889 M 23.763557 27.720805 L 23.999201 27.720805 M 24.606916 43.074889 L 24.84256 43.074889 M 25.561895 27.720805 L 25.797539 27.720805 M 26.516874 43.074889 L 26.764921 43.074889 M 27.484256 27.720805 L 27.7199 27.720805 M 3.002058 42.950866 L 1.079697 42.950866 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip13)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.002058 27.832426 L 1.079697 27.832426 L 0.72003 28.068071 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip14)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.72003 42.591198 L 1.079697 42.950866 M 15.243157 46.671564 L 16.198136 48.482304 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.794812 46.671564 L 19.794812 46.559943 L 19.683191 46.311897 L 19.683191 45.840608 L 19.559168 45.716585 L 19.559168 45.592562 L 19.435144 45.356918 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.683191 23.876083 L 18.715809 22.31339 M 19.794812 20.87472 L 21.121861 20.87472 M 19.794812 49.796951 L 21.121861 49.796951 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.121861 24.719442 L 21.121861 24.955086 L 21.233482 25.19073 L 21.233482 25.674421 L 21.357505 25.910065 L 21.481529 26.158112 L 21.481529 26.393756 L 21.605552 26.641803 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.121861 31.677148 L 21.121861 31.801172 L 21.233482 31.912793 L 21.233482 32.27246 L 21.357505 32.396484 L 21.357505 32.520507 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.243157 24.000107 L 16.198136 22.31339 M 21.605552 44.153892 L 21.605552 44.277915 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.794812 40.79286 L 19.794812 40.557216 L 19.683191 40.433193 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.794812 46.671564 L 18.715809 48.482304 M 25.921563 44.153892 L 25.437872 44.153892 M 23.999201 44.153892 L 23.639534 44.153892 M 22.07684 44.153892 L 21.717173 44.153892 M 14.635443 44.153892 L 14.275775 44.153892 M 12.713082 44.153892 L 12.353414 44.153892 M 10.927147 44.153892 L 10.443456 44.153892 M 9.004786 44.153892 L 8.645118 44.153892 M 7.082424 44.153892 L 6.722757 44.153892 M 5.284087 44.153892 L 4.800396 44.153892 M 26.764921 26.641803 L 26.392851 26.641803 M 24.966583 26.641803 L 24.606916 26.641803 M 23.044222 26.641803 L 22.684555 26.641803 M 15.243157 26.641803 L 15.119134 26.641803 M 13.680464 26.641803 L 13.320796 26.641803 M 11.758103 26.641803 L 11.398435 26.641803 M 9.959765 26.641803 L 9.476074 26.641803 M 8.037404 26.641803 L 7.677736 26.641803 M 6.115043 26.641803 L 5.767778 26.641803 M 4.316705 26.641803 L 4.205084 26.641803 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.475945 299.753494 L 32.035911 299.753494 L 32.035911 326.753364 L 36.475945 326.753364 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.079568 305.632198 L 28.079568 320.750637 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.67488 313.197618 L 28.798903 313.073595 L 28.798903 312.837951 L 28.922926 312.713928 L 28.922926 312.589904 L 29.034547 312.589904 L 29.034547 312.478283 L 29.15857 312.35426 L 29.282594 312.35426 L 29.394215 312.230237 L 29.518238 312.230237 L 29.642261 312.118616 L 30.597241 312.118616 L 30.721264 312.230237 L 30.845287 312.230237 L 30.956908 312.35426 L 31.080931 312.478283 L 31.204955 312.589904 L 31.316576 312.589904 L 31.316576 312.713928 L 31.440599 312.837951 L 31.440599 313.557286 L 31.316576 313.681309 L 31.316576 313.79293 L 31.204955 313.916954 L 31.080931 314.040977 L 30.956908 314.040977 L 30.956908 314.152598 L 30.845287 314.152598 L 30.721264 314.276621 L 30.48562 314.276621 L 30.361596 314.400644 L 29.877906 314.400644 L 29.766285 314.276621 L 29.518238 314.276621 L 29.394215 314.152598 L 29.282594 314.152598 L 29.15857 314.040977 L 29.034547 314.040977 L 29.034547 313.916954 L 28.922926 313.79293 L 28.922926 313.681309 L 28.798903 313.557286 L 28.798903 313.321642 Z M 28.67488 313.197618 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.440599 305.632198 L 31.316576 305.632198 L 31.204955 305.756221 L 29.034547 305.756221 L 28.922926 305.632198 L 28.67488 305.632198 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.67488 320.750637 L 31.440599 320.750637 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.843924 305.396553 L 27.843924 306.239912 L 27.955544 306.351533 L 27.955544 314.152598 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.876542 304.801242 L 26.876542 304.912863 L 27.000565 305.036886 L 27.000565 305.520577 L 27.124588 305.632198 L 27.124588 306.351533 L 27.236209 306.475556 L 27.236209 307.318914 L 27.360233 307.554559 L 27.360233 308.397917 L 27.484256 308.52194 L 27.484256 309.588541 L 27.595877 309.836587 L 27.595877 310.679946 L 27.7199 310.91559 L 27.7199 311.994593 L 27.843924 312.230237 L 27.843924 313.321642 L 27.955544 313.557286 L 27.955544 314.152598 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.876542 313.197618 L 26.876542 304.801242 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.236209 321.718019 L 27.124588 321.718019 L 27.124588 319.795658 L 27.000565 319.671634 L 27.000565 315.479647 L 26.876542 315.355624 L 26.876542 313.197618 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.639534 321.953663 L 23.515511 321.953663 L 23.515511 320.998683 L 23.40389 320.87466 L 23.40389 318.840678 L 23.279866 318.716655 L 23.279866 315.715291 L 23.155843 315.591268 L 23.155843 312.230237 L 23.044222 312.118616 L 23.044222 308.993229 L 22.920199 308.757585 L 22.920199 306.351533 L 22.796176 306.115888 L 22.796176 304.801242 L 22.684555 304.677218 L 22.684555 304.441574 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.437872 321.953663 L 25.437872 321.593995 L 25.313848 321.482374 L 25.313848 319.795658 L 25.202227 319.671634 L 25.202227 317.029938 L 25.078204 316.794294 L 25.078204 313.557286 L 24.966583 313.433263 L 24.966583 310.196255 L 24.84256 309.960611 L 24.84256 307.070868 L 24.718537 306.835224 L 24.718537 305.160909 L 24.606916 305.036886 L 24.606916 304.441574 L 24.482892 304.441574 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.876542 313.197618 L 26.876542 311.275257 L 26.764921 311.039613 L 26.764921 308.14987 L 26.640898 308.038249 L 26.640898 305.756221 L 26.516874 305.632198 L 26.516874 304.553195 L 26.392851 304.553195 L 26.392851 304.441574 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 22.200864 305.632198 L 22.200864 306.599579 L 22.324887 306.7112 L 22.324887 308.633561 L 22.436508 308.869206 L 22.436508 311.399281 L 22.560531 311.758948 L 22.560531 314.400644 L 22.684555 314.74791 L 22.684555 317.277985 L 22.796176 317.637652 L 22.796176 319.560013 L 22.920199 319.671634 L 22.920199 320.750637 L 23.044222 320.87466 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.999201 305.520577 L 23.999201 305.880244 L 24.123225 305.880244 L 24.123225 307.194891 L 24.234846 307.442938 L 24.234846 309.712564 L 24.358869 309.960611 L 24.358869 312.713928 L 24.482892 312.961974 L 24.482892 315.591268 L 24.606916 315.839315 L 24.606916 318.356987 L 24.718537 318.481011 L 24.718537 320.279348 L 24.84256 320.279348 L 24.84256 320.87466 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.797539 305.520577 L 25.921563 305.520577 L 25.921563 306.239912 L 26.033183 306.351533 L 26.033183 307.914226 L 26.157207 308.14987 L 26.157207 310.791567 L 26.28123 311.151234 L 26.28123 313.681309 L 26.392851 314.040977 L 26.392851 316.794294 L 26.516874 317.153961 L 26.516874 319.076322 L 26.640898 319.311967 L 26.640898 320.514993 L 26.764921 320.639016 L 26.764921 320.87466 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.7199 305.520577 L 27.7199 305.632198 L 27.843924 305.756221 L 27.843924 306.7112 L 27.955544 306.835224 L 27.955544 308.038249 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.764921 304.441574 L 26.876542 304.441574 L 26.876542 304.801242 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24.966583 304.441574 L 24.966583 304.801242 L 25.078204 304.801242 L 25.078204 306.351533 L 25.202227 306.475556 L 25.202227 308.993229 L 25.313848 309.228873 L 25.313848 312.35426 L 25.437872 312.589904 L 25.437872 315.839315 L 25.561895 316.074959 L 25.561895 318.952299 L 25.685918 319.076322 L 25.685918 321.122707 L 25.797539 321.122707 L 25.797539 321.953663 L 25.921563 321.953663 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.044222 304.441574 L 23.044222 304.553195 L 23.155843 304.553195 L 23.155843 305.632198 L 23.279866 305.756221 L 23.279866 307.914226 L 23.40389 308.14987 L 23.40389 311.039613 L 23.515511 311.275257 L 23.515511 314.512265 L 23.639534 314.74791 L 23.639534 317.873297 L 23.763557 317.99732 L 23.763557 320.390969 L 23.875178 320.514993 L 23.875178 321.842042 L 23.999201 321.842042 L 23.999201 321.953663 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.841196 319.311967 L 21.841196 319.671634 L 21.96522 319.795658 L 21.96522 321.482374 L 22.07684 321.593995 L 22.07684 321.953663 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.605552 312.118616 L 21.605552 313.321642 L 21.717173 313.681309 L 21.717173 316.670271 L 21.841196 317.029938 L 21.841196 318.121343 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.357505 305.880244 L 21.357505 306.835224 L 21.481529 307.070868 L 21.481529 309.960611 L 21.605552 310.320278 L 21.605552 310.679946 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.96522 305.756221 L 21.96522 306.835224 L 22.07684 307.070868 L 22.07684 309.117252 L 22.200864 309.47692 L 22.200864 311.758948 L 22.324887 312.118616 L 22.324887 314.871933 L 22.436508 315.2316 L 22.436508 317.637652 L 22.560531 317.99732 L 22.560531 319.795658 L 22.684555 320.031302 L 22.684555 320.87466 L 22.796176 320.87466 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.763557 305.520577 L 23.763557 305.991865 L 23.875178 306.115888 L 23.875178 307.554559 L 23.999201 307.802605 L 23.999201 309.836587 L 24.123225 310.196255 L 24.123225 313.073595 L 24.234846 313.433263 L 24.234846 315.950936 L 24.358869 316.310603 L 24.358869 318.481011 L 24.482892 318.716655 L 24.482892 320.390969 L 24.606916 320.514993 L 24.606916 320.87466 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.561895 305.520577 L 25.685918 305.632198 L 25.685918 306.475556 L 25.797539 306.599579 L 25.797539 308.273894 L 25.921563 308.633561 L 25.921563 310.91559 L 26.033183 311.275257 L 26.033183 314.152598 L 26.157207 314.636289 L 26.157207 317.029938 L 26.28123 317.277985 L 26.28123 319.200346 L 26.392851 319.43599 L 26.392851 320.750637 L 26.516874 320.750637 L 26.516874 320.87466 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.484256 305.520577 L 27.484256 305.756221 L 27.595877 305.756221 L 27.595877 307.070868 L 27.7199 307.194891 L 27.7199 309.228873 L 27.843924 309.47692 L 27.843924 312.230237 L 27.955544 312.35426 L 27.955544 314.152598 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.243157 304.553195 L 15.243157 304.441574 L 15.119134 304.441574 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.635443 305.520577 L 14.635443 305.991865 L 14.759466 306.115888 L 14.759466 307.554559 L 14.88349 307.802605 L 14.88349 310.320278 L 14.995111 310.555922 L 14.995111 313.197618 L 15.119134 313.433263 L 15.119134 316.198982 L 15.243157 316.434626 L 15.243157 317.029938 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.357505 317.389606 L 21.357505 314.636289 L 21.233482 314.276621 L 21.233482 312.230237 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.717173 321.953663 L 21.717173 321.842042 L 21.605552 321.718019 L 21.605552 320.390969 L 21.481529 320.155325 L 21.481529 319.919681 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 13.680464 304.441574 L 13.680464 304.677218 L 13.804487 304.677218 L 13.804487 305.991865 L 13.916108 306.115888 L 13.916108 308.52194 L 14.040131 308.633561 L 14.040131 311.758948 L 14.164154 311.994593 L 14.164154 315.2316 L 14.275775 315.479647 L 14.275775 318.356987 L 14.399799 318.592632 L 14.399799 320.750637 L 14.523822 320.87466 L 14.523822 321.953663 L 14.635443 321.953663 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.399799 305.520577 L 14.399799 306.239912 L 14.523822 306.351533 L 14.523822 308.038249 L 14.635443 308.273894 L 14.635443 310.431899 L 14.759466 310.679946 L 14.759466 313.433263 L 14.88349 313.79293 L 14.88349 316.434626 L 14.995111 316.794294 L 14.995111 318.952299 L 15.119134 319.200346 L 15.119134 320.514993 L 15.243157 320.639016 L 15.243157 320.750637 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.645118 321.953663 L 8.521095 321.953663 L 8.521095 321.234328 L 8.397071 321.122707 L 8.397071 319.076322 L 8.28545 318.840678 L 8.28545 315.950936 L 8.161427 315.591268 L 8.161427 312.713928 L 8.037404 312.35426 L 8.037404 309.228873 L 7.925783 308.869206 L 7.925783 306.351533 L 7.80176 306.115888 L 7.80176 304.912863 L 7.677736 304.801242 L 7.677736 304.553195 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.443456 321.953663 L 10.443456 321.593995 L 10.319432 321.593995 L 10.319432 319.919681 L 10.195409 319.795658 L 10.195409 317.153961 L 10.083788 317.029938 L 10.083788 313.79293 L 9.959765 313.557286 L 9.959765 310.320278 L 9.835742 310.196255 L 9.835742 307.318914 L 9.724121 307.194891 L 9.724121 305.27253 L 9.600097 305.160909 L 9.600097 304.441574 L 9.476074 304.441574 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.353414 321.953663 L 12.241793 321.842042 L 12.241793 320.750637 L 12.11777 320.639016 L 12.11777 318.356987 L 12.006149 318.121343 L 12.006149 315.119979 L 11.882126 314.871933 L 11.882126 311.634925 L 11.758103 311.399281 L 11.758103 308.397917 L 11.646482 308.14987 L 11.646482 305.880244 L 11.522458 305.756221 L 11.522458 304.553195 L 11.398435 304.553195 L 11.398435 304.441574 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.275775 321.953663 L 14.164154 321.953663 L 14.164154 321.358351 L 14.040131 321.234328 L 14.040131 319.311967 L 13.916108 319.200346 L 13.916108 316.434626 L 13.804487 316.198982 L 13.804487 312.961974 L 13.680464 312.713928 L 13.680464 309.588541 L 13.55644 309.352896 L 13.55644 306.7112 L 13.444819 306.599579 L 13.444819 304.912863 L 13.320796 304.801242 L 13.320796 304.441574 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.082424 305.632198 L 7.677736 304.553195 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.082424 305.632198 L 7.194045 305.756221 L 7.194045 306.835224 L 7.318069 306.959247 L 7.318069 308.993229 L 7.442092 309.228873 L 7.442092 311.870569 L 7.553713 312.230237 L 7.553713 314.995956 L 7.677736 315.355624 L 7.677736 317.513629 L 7.80176 317.873297 L 7.80176 319.671634 L 7.925783 319.919681 L 7.925783 320.87466 L 8.037404 320.87466 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9.004786 305.520577 L 9.004786 305.991865 L 9.116406 306.115888 L 9.116406 307.442938 L 9.24043 307.678582 L 9.24043 309.712564 L 9.364453 310.072231 L 9.364453 312.961974 L 9.476074 313.321642 L 9.476074 315.839315 L 9.600097 316.198982 L 9.600097 318.592632 L 9.724121 318.840678 L 9.724121 320.279348 L 9.835742 320.390969 L 9.835742 320.87466 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.803123 305.520577 L 10.927147 305.520577 L 10.927147 306.351533 L 11.038767 306.599579 L 11.038767 308.273894 L 11.162791 308.52194 L 11.162791 310.791567 L 11.286814 311.151234 L 11.286814 314.040977 L 11.398435 314.400644 L 11.398435 316.918317 L 11.522458 317.153961 L 11.522458 319.311967 L 11.646482 319.560013 L 11.646482 320.639016 L 11.758103 320.750637 L 11.758103 320.87466 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.713082 305.520577 L 12.713082 305.632198 L 12.837105 305.756221 L 12.837105 306.959247 L 12.961129 307.194891 L 12.961129 309.117252 L 13.072749 309.47692 L 13.072749 311.870569 L 13.196773 312.230237 L 13.196773 315.119979 L 13.320796 315.479647 L 13.320796 317.749273 L 13.444819 318.121343 L 13.444819 319.919681 L 13.55644 320.155325 L 13.55644 320.87466 L 13.680464 320.87466 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11.758103 304.441574 L 11.882126 304.441574 L 11.882126 305.27253 L 12.006149 305.396553 L 12.006149 307.442938 L 12.11777 307.554559 L 12.11777 310.431899 L 12.241793 310.679946 L 12.241793 313.916954 L 12.353414 314.152598 L 12.353414 317.277985 L 12.477438 317.513629 L 12.477438 320.031302 L 12.601461 320.155325 L 12.601461 321.593995 L 12.713082 321.718019 L 12.713082 321.953663 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9.959765 304.441574 L 9.959765 304.801242 L 10.083788 304.912863 L 10.083788 306.475556 L 10.195409 306.7112 L 10.195409 309.228873 L 10.319432 309.47692 L 10.319432 312.589904 L 10.443456 312.837951 L 10.443456 316.074959 L 10.555077 316.310603 L 10.555077 319.200346 L 10.6791 319.43599 L 10.6791 321.234328 L 10.803123 321.358351 L 10.803123 321.953663 L 10.927147 321.953663 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.037404 304.441574 L 8.037404 304.553195 L 8.161427 304.553195 L 8.161427 305.756221 L 8.28545 305.880244 L 8.28545 308.14987 L 8.397071 308.273894 L 8.397071 311.510902 L 8.521095 311.758948 L 8.521095 314.995956 L 8.645118 315.2316 L 8.645118 318.232964 L 8.756739 318.356987 L 8.756739 320.639016 L 8.880762 320.750637 L 8.880762 321.842042 L 9.004786 321.953663 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.239066 304.553195 L 6.239066 305.160909 L 6.363089 305.27253 L 6.363089 307.194891 L 6.47471 307.318914 L 6.47471 310.196255 L 6.598734 310.320278 L 6.598734 313.557286 L 6.722757 313.79293 L 6.722757 317.029938 L 6.834378 317.153961 L 6.834378 319.795658 L 6.958401 319.919681 L 6.958401 321.593995 L 7.082424 321.593995 L 7.082424 321.953663 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.834378 305.632198 L 6.834378 305.756221 L 6.958401 305.756221 L 6.958401 307.070868 L 7.082424 307.194891 L 7.082424 309.117252 L 7.194045 309.47692 L 7.194045 312.118616 L 7.318069 312.478283 L 7.318069 315.2316 L 7.442092 315.591268 L 7.442092 317.873297 L 7.553713 318.121343 L 7.553713 319.919681 L 7.677736 320.155325 L 7.677736 320.87466 L 7.80176 320.87466 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.756739 305.520577 L 8.756739 305.991865 L 8.880762 306.115888 L 8.880762 307.802605 L 9.004786 308.038249 L 9.004786 310.196255 L 9.116406 310.555922 L 9.116406 313.073595 L 9.24043 313.433263 L 9.24043 316.310603 L 9.364453 316.670271 L 9.364453 318.716655 L 9.476074 318.952299 L 9.476074 320.390969 L 9.600097 320.514993 L 9.600097 320.87466 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.555077 305.520577 L 10.555077 305.632198 L 10.6791 305.632198 L 10.6791 306.475556 L 10.803123 306.599579 L 10.803123 308.633561 L 10.927147 308.869206 L 10.927147 311.275257 L 11.038767 311.634925 L 11.038767 314.152598 L 11.162791 314.636289 L 11.162791 317.277985 L 11.286814 317.637652 L 11.286814 319.43599 L 11.398435 319.671634 L 11.398435 320.750637 L 11.522458 320.87466 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.477438 305.520577 L 12.477438 305.756221 L 12.601461 305.880244 L 12.601461 307.070868 L 12.713082 307.318914 L 12.713082 309.588541 L 12.837105 309.836587 L 12.837105 312.35426 L 12.961129 312.713928 L 12.961129 315.355624 L 13.072749 315.715291 L 13.072749 318.232964 L 13.196773 318.481011 L 13.196773 320.031302 L 13.320796 320.279348 L 13.320796 320.87466 L 13.444819 320.87466 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.239066 304.553195 L 6.834378 305.632198 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.800396 321.953663 L 4.800396 321.482374 L 4.676373 321.358351 L 4.676373 319.795658 L 4.564752 319.560013 L 4.564752 316.918317 L 4.440728 316.670271 L 4.440728 313.433263 L 4.316705 313.197618 L 4.316705 309.960611 L 4.205084 309.712564 L 4.205084 309.47692 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.485749 305.27253 L 3.485749 305.160909 L 3.59737 305.160909 L 3.721393 305.27253 L 3.721393 305.520577 L 3.845417 305.632198 L 3.845417 306.115888 L 3.957038 306.239912 L 3.957038 307.070868 L 4.081061 307.318914 L 4.081061 308.273894 L 4.205084 308.52194 L 4.205084 309.47692 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.361726 305.520577 L 3.361726 305.880244 L 3.485749 305.991865 L 3.485749 307.194891 L 3.59737 307.442938 L 3.59737 309.712564 L 3.721393 310.072231 L 3.721393 312.589904 L 3.845417 312.961974 L 3.845417 315.479647 L 3.957038 315.839315 L 3.957038 318.356987 L 4.081061 318.592632 L 4.081061 320.155325 L 4.205084 320.279348 L 4.205084 320.87466 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.160063 305.520577 L 5.284087 305.520577 L 5.284087 306.239912 L 5.395708 306.351533 L 5.395708 307.914226 L 5.519731 308.273894 L 5.519731 310.791567 L 5.643754 311.151234 L 5.643754 313.681309 L 5.767778 314.040977 L 5.767778 316.55865 L 5.879399 316.918317 L 5.879399 319.200346 L 6.003422 319.311967 L 6.003422 320.514993 L 6.115043 320.639016 L 6.115043 320.87466 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.082424 305.520577 L 7.082424 305.632198 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.722757 321.953663 L 6.722757 321.842042 L 6.598734 321.842042 L 6.598734 320.514993 L 6.47471 320.390969 L 6.47471 317.99732 L 6.363089 317.749273 L 6.363089 314.74791 L 6.239066 314.512265 L 6.239066 311.151234 L 6.115043 311.039613 L 6.115043 308.038249 L 6.003422 307.914226 L 6.003422 305.632198 L 5.879399 305.632198 L 5.879399 304.553195 L 5.767778 304.553195 L 5.767778 304.441574 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.677736 304.553195 L 7.677736 304.441574 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.205084 309.47692 L 4.205084 304.441574 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.126081 305.880244 L 3.126081 305.991865 L 3.237702 306.115888 L 3.237702 308.993229 L 3.361726 309.228873 L 3.361726 314.040977 L 3.485749 314.400644 L 3.485749 318.716655 L 3.59737 318.952299 L 3.59737 321.234328 L 3.721393 321.358351 L 3.721393 321.482374 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.126081 305.880244 L 3.126081 305.520577 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.002058 320.750637 L 3.002058 305.632198 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.316705 304.441574 L 4.316705 304.801242 L 4.440728 304.801242 L 4.440728 306.351533 L 4.564752 306.475556 L 4.564752 308.993229 L 4.676373 309.228873 L 4.676373 312.35426 L 4.800396 312.589904 L 4.800396 315.839315 L 4.924419 316.074959 L 4.924419 318.952299 L 5.03604 319.076322 L 5.03604 321.122707 L 5.160063 321.122707 L 5.160063 321.953663 L 5.284087 321.953663 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.115043 304.441574 L 6.239066 304.441574 L 6.239066 304.553195 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.126081 305.880244 L 3.126081 305.991865 L 3.237702 306.115888 L 3.237702 307.554559 L 3.361726 307.802605 L 3.361726 310.072231 L 3.485749 310.320278 L 3.485749 312.961974 L 3.59737 313.321642 L 3.59737 316.074959 L 3.721393 316.310603 L 3.721393 318.592632 L 3.845417 318.840678 L 3.845417 320.279348 L 3.957038 320.390969 L 3.957038 320.87466 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.924419 305.520577 L 5.03604 305.520577 L 5.03604 306.351533 L 5.160063 306.475556 L 5.160063 308.397917 L 5.284087 308.633561 L 5.284087 311.151234 L 5.395708 311.399281 L 5.395708 314.152598 L 5.519731 314.400644 L 5.519731 317.153961 L 5.643754 317.389606 L 5.643754 319.43599 L 5.767778 319.560013 L 5.767778 320.639016 L 5.879399 320.750637 L 5.879399 320.87466 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.834378 305.520577 L 6.834378 305.632198 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.834378 305.632198 L 7.082424 305.632198 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<g clip-path="url(#clip15)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1.079697 320.750637 L 1.079697 305.632198 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip16)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.72003 320.514993 L 0.72003 305.991865 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.243157 324.595359 L 15.243157 323.032665 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.243157 313.197618 L 15.243157 323.032665 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.243157 303.350169 L 15.243157 313.197618 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.243157 303.350169 L 15.243157 301.911499 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.243157 323.032665 L 15.243157 323.752001 L 15.354778 324.000047 L 15.354778 324.359715 L 15.478801 324.595359 L 15.478801 324.831003 L 15.602825 324.955026 L 15.714446 325.190671 L 15.714446 325.438717 L 15.962492 325.910006 L 16.074113 326.034029 L 16.198136 326.282076 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.435144 323.280712 L 19.794812 323.280712 L 19.794812 322.908642 L 19.683191 322.672998 L 19.683191 322.077686 L 19.559168 321.953663 L 19.559168 321.482374 L 19.435144 321.358351 L 19.323523 321.122707 L 19.323523 320.87466 L 19.1995 320.639016 L 19.075477 320.514993 L 18.963856 320.279348 L 18.839833 320.031302 L 18.715809 319.795658 L 16.198136 319.795658 L 16.074113 320.031302 L 15.962492 320.279348 L 15.838469 320.514993 L 15.714446 320.639016 L 15.714446 320.87466 L 15.602825 321.122707 L 15.478801 321.358351 L 15.478801 321.482374 L 15.354778 321.718019 L 15.354778 322.077686 L 15.243157 322.31333 L 15.243157 323.032665 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16.198136 326.282076 L 18.715809 326.282076 L 18.963856 326.034029 L 18.963856 325.798385 L 19.075477 325.674362 L 19.1995 325.550338 L 19.1995 325.314694 L 19.323523 325.190671 L 19.323523 325.07905 L 19.435144 324.955026 L 19.435144 324.719382 L 19.559168 324.595359 L 19.559168 324.471336 L 19.683191 324.235691 L 19.683191 323.876024 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.794812 323.876024 L 19.435144 323.280712 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.605552 304.317551 L 22.200864 304.069504 L 21.357505 303.83386 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.559168 302.035522 L 19.559168 301.911499 L 19.435144 301.675855 L 19.323523 301.44021 L 19.1995 301.192164 L 19.1995 300.95652 L 19.075477 300.720875 L 18.963856 300.472829 L 18.839833 300.348805 L 18.839833 300.237184 L 18.715809 300.113161 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.794812 301.675855 L 19.559168 302.159545 M 22.200864 305.632198 L 21.121861 305.991865 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.559168 302.035522 L 19.559168 302.519213 L 19.683191 302.990502 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.794812 303.114525 L 19.683191 303.114525 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.683191 303.350169 L 19.683191 302.990502 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 18.715809 300.113161 L 16.198136 300.113161 L 16.074113 300.348805 L 15.962492 300.596852 L 15.714446 301.06814 L 15.714446 301.192164 L 15.602825 301.44021 L 15.478801 301.675855 L 15.478801 301.911499 L 15.354778 302.035522 L 15.354778 302.39519 L 15.243157 302.630834 L 15.243157 304.193527 L 15.354778 304.317551 L 15.354778 304.801242 L 15.478801 304.912863 L 15.478801 305.160909 L 15.602825 305.396553 L 15.714446 305.520577 L 15.714446 305.756221 L 15.838469 305.991865 L 15.962492 306.239912 L 16.074113 306.475556 L 16.198136 306.7112 L 18.715809 306.7112 L 18.963856 306.239912 L 19.075477 305.991865 L 19.323523 305.520577 L 19.323523 305.396553 L 19.435144 305.160909 L 19.559168 304.912863 L 19.559168 304.553195 L 19.683191 304.317551 L 19.683191 303.83386 L 19.794812 303.598216 L 19.794812 303.350169 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.794812 309.836587 L 19.683191 309.588541 L 19.683191 308.52194 L 19.559168 308.273894 L 19.559168 307.802605 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.794812 313.197618 L 19.794812 312.837951 L 19.683191 312.478283 L 19.683191 311.275257 L 19.559168 310.91559 L 19.559168 310.072231 L 19.435144 309.712564 L 19.323523 309.352896 L 19.323523 308.869206 L 19.1995 308.52194 L 19.075477 308.038249 L 18.963856 307.554559 L 18.839833 307.194891 L 18.715809 306.7112 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.794812 307.554559 L 19.559168 307.802605 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.357505 310.431899 L 22.200864 311.758948 L 21.121861 312.35426 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.121861 311.510902 L 22.200864 311.758948 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.121861 298.798514 L 21.121861 327.720746 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.794812 298.798514 L 19.794812 327.720746 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.121861 303.598216 L 22.200864 305.632198 M 21.121861 301.192164 L 22.200864 304.069504 M 19.794812 324.831003 L 19.683191 324.719382 M 21.121861 321.593995 L 21.357505 321.482374 M 21.605552 321.953663 L 21.717173 321.842042 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.121861 325.190671 L 22.200864 322.437354 L 21.121861 321.842042 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.794812 316.794294 L 19.559168 316.670271 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.683191 318.232964 L 19.683191 317.513629 L 19.559168 317.029938 L 19.559168 316.670271 L 19.683191 316.55865 L 19.794812 316.55865 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 18.715809 319.795658 L 18.963856 318.840678 L 19.075477 318.356987 L 19.1995 317.99732 L 19.323523 317.513629 L 19.323523 317.153961 L 19.435144 316.670271 L 19.559168 316.310603 L 19.559168 315.479647 L 19.683191 315.119979 L 19.683191 314.040977 L 19.794812 313.557286 L 19.794812 313.197618 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16.198136 306.7112 L 16.074113 307.194891 L 15.962492 307.554559 L 15.714446 308.52194 L 15.714446 308.869206 L 15.602825 309.352896 L 15.478801 309.712564 L 15.478801 310.072231 L 15.354778 310.555922 L 15.354778 311.275257 L 15.243157 311.758948 L 15.243157 314.74791 L 15.354778 315.119979 L 15.354778 315.950936 L 15.478801 316.310603 L 15.478801 316.670271 L 15.602825 317.153961 L 15.714446 317.513629 L 15.714446 317.99732 L 15.838469 318.356987 L 15.962492 318.840678 L 16.074113 319.311967 L 16.198136 319.795658 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.121861 317.029938 L 22.200864 318.716655 L 21.121861 320.514993 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<g clip-path="url(#clip17)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.794812 323.280712 L 19.918835 323.280712 M 32.035911 320.750637 L 31.440599 320.750637 M 28.67488 320.750637 L 28.079568 320.750637 M 32.035911 305.632198 L 31.440599 305.632198 M 28.67488 305.632198 L 28.079568 305.632198 M 28.079568 320.750637 L 27.236209 321.718019 M 28.079568 305.632198 L 27.843924 305.396553 M 23.639534 321.953663 L 23.044222 320.87466 M 25.437872 321.953663 L 24.84256 320.87466 M 22.07684 305.520577 L 22.684555 304.441574 M 23.999201 305.520577 L 24.482892 304.441574 M 25.797539 305.520577 L 26.392851 304.441574 M 27.7199 305.520577 L 27.843924 305.396553 M 27.236209 321.718019 L 26.764921 320.87466 M 26.876542 304.441574 L 27.484256 305.520577 M 24.966583 304.441574 L 25.561895 305.520577 M 23.044222 304.441574 L 23.763557 305.520577 M 22.796176 320.87466 L 22.07684 321.953663 M 24.718537 320.87466 L 23.999201 321.953663 M 26.516874 320.87466 L 25.921563 321.953663 M 14.523822 305.520577 L 15.119134 304.441574 M 21.717173 321.953663 L 21.121861 320.998683 M 13.680464 304.441574 L 14.399799 305.520577 M 15.243157 320.998683 L 14.635443 321.953663 M 8.521095 321.953663 L 8.037404 320.87466 M 10.443456 321.953663 L 9.835742 320.87466 M 12.353414 321.953663 L 11.758103 320.87466 M 14.164154 321.953663 L 13.680464 320.87466 M 9.004786 305.520577 L 9.476074 304.441574 M 10.803123 305.520577 L 11.398435 304.441574 M 12.713082 305.520577 L 13.320796 304.441574 M 11.758103 304.441574 L 12.477438 305.520577 M 9.959765 304.441574 L 10.555077 305.520577 M 8.037404 304.441574 L 8.756739 305.520577 M 7.80176 320.87466 L 7.082424 321.953663 M 9.600097 320.87466 L 9.004786 321.953663 M 11.522458 320.87466 L 10.927147 321.953663 M 13.444819 320.87466 L 12.713082 321.953663 M 4.800396 321.953663 L 4.205084 320.87466 M 3.361726 305.520577 L 3.485749 305.27253 M 5.160063 305.520577 L 5.767778 304.441574 M 7.082424 305.520577 L 7.677736 304.441574 M 6.722757 321.953663 L 6.115043 320.87466 M 3.002058 305.632198 L 3.126081 305.520577 M 3.485749 305.160909 L 4.205084 304.441574 M 3.002058 320.750637 L 3.721393 321.482374 M 4.316705 304.441574 L 4.924419 305.520577 M 6.239066 304.441574 L 6.834378 305.520577 M 4.081061 320.87466 L 3.721393 321.482374 M 5.879399 320.87466 L 5.284087 321.953663 M 3.126081 305.520577 L 3.361726 305.520577 M 3.957038 320.87466 L 4.205084 320.87466 M 4.924419 305.520577 L 5.160063 305.520577 M 5.879399 320.87466 L 6.115043 320.87466 M 6.834378 305.520577 L 7.082424 305.520577 M 7.80176 320.87466 L 8.037404 320.87466 M 8.756739 305.520577 L 9.004786 305.520577 M 9.600097 320.87466 L 9.835742 320.87466 M 10.555077 305.520577 L 10.803123 305.520577 M 11.522458 320.87466 L 11.758103 320.87466 M 12.477438 305.520577 L 12.713082 305.520577 M 13.444819 320.87466 L 13.680464 320.87466 M 14.399799 305.520577 L 14.635443 305.520577 M 22.796176 320.87466 L 23.044222 320.87466 M 23.763557 305.520577 L 23.999201 305.520577 M 24.606916 320.87466 L 24.84256 320.87466 M 25.561895 305.520577 L 25.797539 305.520577 M 26.516874 320.87466 L 26.764921 320.87466 M 27.484256 305.520577 L 27.7199 305.520577 M 3.002058 320.750637 L 1.079697 320.750637 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip18)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.002058 305.632198 L 1.079697 305.632198 L 0.72003 305.991865 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip19)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.72003 320.514993 L 1.079697 320.750637 M 15.243157 324.595359 L 16.198136 326.282076 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.794812 324.595359 L 19.794812 324.359715 L 19.683191 324.235691 L 19.683191 323.752001 L 19.559168 323.64038 L 19.559168 323.392333 L 19.435144 323.280712 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.683191 301.799878 L 18.715809 300.113161 M 19.794812 298.798514 L 21.121861 298.798514 M 19.794812 327.720746 L 21.121861 327.720746 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.121861 302.630834 L 21.121861 302.878881 L 21.233482 303.114525 L 21.233482 303.598216 L 21.481529 304.069504 L 21.481529 304.317551 L 21.605552 304.441574 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.121861 309.588541 L 21.121861 309.712564 L 21.233482 309.836587 L 21.233482 310.196255 L 21.357505 310.320278 L 21.357505 310.431899 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.243157 301.911499 L 16.198136 300.113161 M 21.605552 321.953663 L 21.605552 322.077686 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.794812 318.592632 L 19.794812 318.481011 L 19.683191 318.232964 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.794812 324.595359 L 18.715809 326.282076 M 25.921563 321.953663 L 25.437872 321.953663 M 23.999201 321.953663 L 23.639534 321.953663 M 22.07684 321.953663 L 21.717173 321.953663 M 14.635443 321.953663 L 14.275775 321.953663 M 12.713082 321.953663 L 12.353414 321.953663 M 10.927147 321.953663 L 10.443456 321.953663 M 9.004786 321.953663 L 8.645118 321.953663 M 7.082424 321.953663 L 6.722757 321.953663 M 5.284087 321.953663 L 4.800396 321.953663 M 26.764921 304.441574 L 26.392851 304.441574 M 24.966583 304.441574 L 24.606916 304.441574 M 23.044222 304.441574 L 22.684555 304.441574 M 15.243157 304.441574 L 15.119134 304.441574 M 13.680464 304.441574 L 13.320796 304.441574 M 11.758103 304.441574 L 11.398435 304.441574 M 9.959765 304.441574 L 9.476074 304.441574 M 8.037404 304.441574 L 7.677736 304.441574 M 6.115043 304.441574 L 5.767778 304.441574 M 4.316705 304.441574 L 4.205084 304.441574 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.399739 173.758231 L 314.399739 170.161556 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.399739 173.758231 L 314.399739 195.47471 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.399739 170.161556 L 314.275716 170.161556 M 314.275716 195.47471 L 314.399739 195.47471 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.275716 191.754011 L 314.399739 191.754011 M 314.399739 173.758231 L 314.275716 173.758231 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<g clip-path="url(#clip20)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.275716 347.279219 L 314.275716 1.316247 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.845486 41.995886 L 277.564822 41.871863 L 278.160133 41.512195 L 278.643824 40.916884 L 278.879468 40.321572 L 278.879468 39.589834 L 278.643824 38.870499 L 278.160133 38.399211 L 277.564822 38.039543 L 276.845486 37.91552 L 276.126151 38.039543 L 275.518437 38.399211 L 275.034746 38.870499 L 274.799102 39.589834 L 274.799102 40.321572 L 275.034746 40.916884 L 275.518437 41.512195 L 276.126151 41.871863 Z M 276.845486 41.995886 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.845486 110.035064 L 277.564822 109.911041 L 278.160133 109.551373 L 278.643824 108.956062 L 278.879468 108.36075 L 278.879468 107.641415 L 278.643824 106.909677 L 278.160133 106.438389 L 277.564822 106.078721 L 276.845486 105.954698 L 276.126151 106.078721 L 275.518437 106.438389 L 275.034746 106.909677 L 274.799102 107.641415 L 274.799102 108.36075 L 275.034746 108.956062 L 275.518437 109.551373 L 276.126151 109.911041 Z M 276.845486 110.035064 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.845486 67.433063 L 277.564822 67.321442 L 278.160133 66.961775 L 278.643824 66.354061 L 278.879468 65.758749 L 278.879468 65.039414 L 278.643824 64.320079 L 278.160133 63.836388 L 277.564822 63.47672 L 276.845486 63.352697 L 276.126151 63.47672 L 275.518437 63.836388 L 275.034746 64.320079 L 274.799102 65.039414 L 274.799102 65.758749 L 275.034746 66.354061 L 275.518437 66.961775 L 276.126151 67.321442 Z M 276.845486 67.433063 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.845486 58.912663 L 277.564822 58.801042 L 278.160133 58.441375 L 278.643824 57.833661 L 278.879468 57.238349 L 278.879468 56.519014 L 278.643824 55.799679 L 278.160133 55.315988 L 277.564822 54.95632 L 276.845486 54.832297 L 276.126151 54.95632 L 275.518437 55.315988 L 275.034746 55.799679 L 274.799102 56.519014 L 274.799102 57.238349 L 275.034746 57.833661 L 275.518437 58.441375 L 276.126151 58.801042 Z M 276.845486 58.912663 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.845486 75.953464 L 277.564822 75.841843 L 278.160133 75.482175 L 278.643824 74.874461 L 278.879468 74.279149 L 278.879468 73.559814 L 278.643824 72.840479 L 278.160133 72.356788 L 277.564822 71.997121 L 276.845486 71.873097 L 276.126151 71.997121 L 275.518437 72.356788 L 275.034746 72.840479 L 274.799102 73.559814 L 274.799102 74.279149 L 275.034746 74.874461 L 275.518437 75.482175 L 276.126151 75.841843 Z M 276.845486 75.953464 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.845486 92.994264 L 277.564822 92.870241 L 278.160133 92.510573 L 278.643824 91.915261 L 278.879468 91.319949 L 278.879468 90.588212 L 278.643824 89.868877 L 278.160133 89.397588 L 277.564822 89.037921 L 276.845486 88.913898 L 276.126151 89.037921 L 275.518437 89.397588 L 275.034746 89.868877 L 274.799102 90.588212 L 274.799102 91.319949 L 275.034746 91.915261 L 275.518437 92.510573 L 276.126151 92.870241 Z M 276.845486 92.994264 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.845486 84.473864 L 277.564822 84.34984 L 278.160133 83.990173 L 278.643824 83.394861 L 278.879468 82.799549 L 278.879468 82.067812 L 278.643824 81.360879 L 278.160133 80.877188 L 277.564822 80.517521 L 276.845486 80.393497 L 276.126151 80.517521 L 275.518437 80.877188 L 275.034746 81.360879 L 274.799102 82.067812 L 274.799102 82.799549 L 275.034746 83.394861 L 275.518437 83.990173 L 276.126151 84.34984 Z M 276.845486 84.473864 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.845486 50.392263 L 277.564822 50.280642 L 278.160133 49.908572 L 278.643824 49.313261 L 278.879468 48.717949 L 278.879468 47.998614 L 278.643824 47.279279 L 278.160133 46.795588 L 277.564822 46.43592 L 276.845486 46.311897 L 276.126151 46.43592 L 275.518437 46.795588 L 275.034746 47.279279 L 274.799102 47.998614 L 274.799102 48.717949 L 275.034746 49.313261 L 275.518437 49.908572 L 276.126151 50.280642 Z M 276.845486 50.392263 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.59744 101.514664 L 277.316775 101.390641 L 277.924489 101.030973 L 278.395778 100.435661 L 278.643824 99.84035 L 278.643824 99.121015 L 278.395778 98.389277 L 277.924489 97.917989 L 277.316775 97.558321 L 276.59744 97.434298 L 275.878105 97.558321 L 275.282793 97.917989 L 274.799102 98.389277 L 274.563458 99.121015 L 274.563458 99.84035 L 274.799102 100.435661 L 275.282793 101.030973 L 275.878105 101.390641 Z M 276.59744 101.514664 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.845486 33.475486 L 277.564822 33.351463 L 278.160133 32.991795 L 278.643824 32.396484 L 278.879468 31.801172 L 278.879468 31.069434 L 278.643824 30.350099 L 278.160133 29.878811 L 277.564822 29.519143 L 276.845486 29.39512 L 276.126151 29.519143 L 275.518437 29.878811 L 275.034746 30.350099 L 274.799102 31.069434 L 274.799102 31.801172 L 275.034746 32.396484 L 275.518437 32.991795 L 276.126151 33.351463 Z M 276.845486 33.475486 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<g clip-path="url(#clip21)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.475945 1.316247 L 36.475945 347.279219 L 314.275716 347.279219 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip22)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.275716 1.316247 L 36.475945 1.316247 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.599968 122.871475 L 36.2403 123.96288 L 36.004656 125.02948 L 35.880633 126.120885 L 36.004656 127.199888 L 36.2403 128.27889 L 36.599968 129.357893 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.599968 219.237573 L 36.2403 220.316575 L 36.004656 221.395578 L 35.880633 222.47458 L 36.004656 223.553583 L 36.2403 224.632586 L 36.599968 225.711588 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<g clip-path="url(#clip23)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 40.320667 347.155196 L 41.399669 347.514863 L 42.478672 347.750508 L 43.557675 347.874531 L 44.636677 347.750508 L 45.71568 347.514863 L 46.807085 347.155196 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.599968 336.960481 L 36.2403 338.039484 L 36.004656 339.118486 L 35.880633 340.197489 L 36.004656 341.276492 L 36.2403 342.355494 L 36.599968 343.434497 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.599968 5.160969 L 36.2403 6.239971 L 36.004656 7.318974 L 35.880633 8.397977 L 36.004656 9.476979 L 36.2403 10.555982 L 36.599968 11.634984 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<g clip-path="url(#clip24)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 46.807085 1.44027 L 45.71568 1.0682 L 44.636677 0.832556 L 43.557675 0.720935 L 42.478672 0.832556 L 41.399669 1.0682 L 40.320667 1.44027 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip25)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.244003 1.44027 L 125.165001 1.0682 L 124.073596 0.832556 L 122.994593 0.720935 L 121.927993 0.832556 L 120.836588 1.0682 L 119.757585 1.44027 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip26)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.446641 1.44027 L 207.355236 1.0682 L 206.276233 0.832556 L 205.197231 0.720935 L 204.118228 0.832556 L 203.039225 1.0682 L 201.960223 1.44027 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.164095 11.634984 L 314.523762 10.555982 L 314.759407 9.476979 L 314.88343 8.397977 L 314.759407 7.318974 L 314.523762 6.239971 L 314.164095 5.160969 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<g clip-path="url(#clip27)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 310.443396 1.44027 L 309.364394 1.0682 L 308.285391 0.832556 L 307.193986 0.720935 L 306.114983 0.832556 L 305.035981 1.0682 L 303.956978 1.44027 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip28)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 99.839444 347.155196 L 100.918447 347.514863 L 101.99745 347.750508 L 103.076452 347.874531 L 104.155455 347.750508 L 105.234458 347.514863 L 106.325863 347.155196 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip29)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.877 347.155196 L 219.956002 347.514863 L 221.035005 347.750508 L 222.12641 347.874531 L 223.19301 347.750508 L 224.284415 347.514863 L 225.363418 347.155196 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.164095 343.434497 L 314.523762 342.355494 L 314.759407 341.276492 L 314.88343 340.197489 L 314.759407 339.118486 L 314.523762 338.039484 L 314.164095 336.960481 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
<g clip-path="url(#clip30)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 303.956978 347.155196 L 305.035981 347.514863 L 306.114983 347.750508 L 307.193986 347.874531 L 308.285391 347.750508 L 309.364394 347.514863 L 310.443396 347.155196 " transform="matrix(0,-0.314961,0.314961,0,0.796371,108.551)"/>
|
||||
</g>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<use xlink:href="#surface5" transform="matrix(1,0,0,1,1,2)"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 206 KiB |
BIN
Software/PC_Application/icons/compound_V1_Ref_Left.png
Normal file
After Width: | Height: | Size: 6.0 KiB |
663
Software/PC_Application/icons/compound_V1_Ref_Left.svg
Normal file
@ -0,0 +1,663 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="340.157pt" height="340.157pt" viewBox="0 0 340.157 340.157" version="1.1">
|
||||
<defs>
|
||||
<g>
|
||||
<symbol overflow="visible" id="glyph0-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<path style="stroke:none;" d="M 5.796875 -2.296875 C 5.796875 -0.890625 4.828125 -0.09375 3.890625 -0.09375 C 3.421875 -0.09375 2.25 -0.34375 2.25 -2.234375 L 2.25 -6.03125 C 2.25 -6.390625 2.265625 -6.5 3.03125 -6.5 L 3.265625 -6.5 L 3.265625 -6.8125 C 2.921875 -6.78125 2.1875 -6.78125 1.796875 -6.78125 C 1.421875 -6.78125 0.671875 -6.78125 0.328125 -6.8125 L 0.328125 -6.5 L 0.5625 -6.5 C 1.328125 -6.5 1.359375 -6.390625 1.359375 -6.03125 L 1.359375 -2.265625 C 1.359375 -0.875 2.515625 0.21875 3.875 0.21875 C 5.015625 0.21875 5.90625 -0.703125 6.078125 -1.84375 C 6.109375 -2.046875 6.109375 -2.140625 6.109375 -2.53125 L 6.109375 -5.71875 C 6.109375 -6.046875 6.109375 -6.5 7.140625 -6.5 L 7.140625 -6.8125 C 6.78125 -6.796875 6.296875 -6.78125 5.96875 -6.78125 C 5.609375 -6.78125 5.140625 -6.796875 4.78125 -6.8125 L 4.78125 -6.5 C 5.796875 -6.5 5.796875 -6.03125 5.796875 -5.765625 Z M 5.796875 -2.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 3.484375 -3.875 L 2.203125 -4.171875 C 1.578125 -4.328125 1.203125 -4.859375 1.203125 -5.4375 C 1.203125 -6.140625 1.734375 -6.75 2.515625 -6.75 C 4.171875 -6.75 4.390625 -5.109375 4.453125 -4.671875 C 4.46875 -4.609375 4.46875 -4.546875 4.578125 -4.546875 C 4.703125 -4.546875 4.703125 -4.59375 4.703125 -4.78125 L 4.703125 -6.78125 C 4.703125 -6.953125 4.703125 -7.03125 4.59375 -7.03125 C 4.53125 -7.03125 4.515625 -7.015625 4.453125 -6.890625 L 4.09375 -6.328125 C 3.796875 -6.625 3.390625 -7.03125 2.5 -7.03125 C 1.390625 -7.03125 0.5625 -6.15625 0.5625 -5.09375 C 0.5625 -4.265625 1.09375 -3.53125 1.859375 -3.265625 C 1.96875 -3.234375 2.484375 -3.109375 3.1875 -2.9375 C 3.453125 -2.875 3.75 -2.796875 4.03125 -2.4375 C 4.234375 -2.171875 4.34375 -1.84375 4.34375 -1.515625 C 4.34375 -0.8125 3.84375 -0.09375 3 -0.09375 C 2.71875 -0.09375 1.953125 -0.140625 1.421875 -0.625 C 0.84375 -1.171875 0.8125 -1.796875 0.8125 -2.15625 C 0.796875 -2.265625 0.71875 -2.265625 0.6875 -2.265625 C 0.5625 -2.265625 0.5625 -2.1875 0.5625 -2.015625 L 0.5625 -0.015625 C 0.5625 0.15625 0.5625 0.21875 0.671875 0.21875 C 0.734375 0.21875 0.75 0.203125 0.8125 0.09375 C 0.8125 0.078125 0.84375 0.046875 1.171875 -0.484375 C 1.484375 -0.140625 2.125 0.21875 3.015625 0.21875 C 4.171875 0.21875 4.96875 -0.75 4.96875 -1.859375 C 4.96875 -2.84375 4.3125 -3.671875 3.484375 -3.875 Z M 3.484375 -3.875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 2.21875 -3.65625 L 2.21875 -6.09375 C 2.21875 -6.4375 2.234375 -6.5 2.703125 -6.5 L 3.9375 -6.5 C 4.90625 -6.5 5.25 -5.65625 5.25 -5.125 C 5.25 -4.484375 4.765625 -3.65625 3.65625 -3.65625 Z M 4.5625 -3.5625 C 5.53125 -3.75 6.21875 -4.390625 6.21875 -5.125 C 6.21875 -5.984375 5.296875 -6.8125 4 -6.8125 L 0.359375 -6.8125 L 0.359375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.390625 -6.390625 1.390625 -6.03125 L 1.390625 -0.78125 C 1.390625 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.359375 -0.3125 L 0.359375 0 L 4.265625 0 C 5.59375 0 6.484375 -0.890625 6.484375 -1.828125 C 6.484375 -2.6875 5.671875 -3.4375 4.5625 -3.5625 Z M 3.953125 -0.3125 L 2.703125 -0.3125 C 2.234375 -0.3125 2.21875 -0.375 2.21875 -0.703125 L 2.21875 -3.421875 L 4.09375 -3.421875 C 5.078125 -3.421875 5.5 -2.5 5.5 -1.828125 C 5.5 -1.125 4.96875 -0.3125 3.953125 -0.3125 Z M 3.953125 -0.3125 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
<clipPath id="clip2">
|
||||
<path d="M 174 0.691406 L 186 0.691406 L 186 2 L 174 2 Z M 174 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip3">
|
||||
<path d="M 184 0.691406 L 186 0.691406 L 186 2 L 184 2 Z M 184 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip4">
|
||||
<path d="M 174 0.691406 L 176 0.691406 L 176 2 L 174 2 Z M 174 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip5">
|
||||
<path d="M 173 0.691406 L 187 0.691406 L 187 17 L 173 17 Z M 173 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip6">
|
||||
<path d="M 205 0.691406 L 216 0.691406 L 216 2 L 205 2 Z M 205 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip7">
|
||||
<path d="M 214 0.691406 L 216 0.691406 L 216 2 L 214 2 Z M 214 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip8">
|
||||
<path d="M 204 0.691406 L 206 0.691406 L 206 2 L 204 2 Z M 204 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip9">
|
||||
<path d="M 203 0.691406 L 217 0.691406 L 217 17 L 203 17 Z M 203 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip10">
|
||||
<path d="M 18 226 L 30 226 L 30 227.464844 L 18 227.464844 Z M 18 226 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip11">
|
||||
<path d="M 17 205 L 32 205 L 32 227.464844 L 17 227.464844 Z M 17 205 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip12">
|
||||
<path d="M 18 225 L 20 225 L 20 227.464844 L 18 227.464844 Z M 18 225 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip13">
|
||||
<path d="M 28 216 L 34 216 L 34 227.464844 L 28 227.464844 Z M 28 216 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip14">
|
||||
<path d="M 202 226 L 214 226 L 214 227.464844 L 202 227.464844 Z M 202 226 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip15">
|
||||
<path d="M 201 205 L 216 205 L 216 227.464844 L 201 227.464844 Z M 201 205 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip16">
|
||||
<path d="M 202 225 L 204 225 L 204 227.464844 L 202 227.464844 Z M 202 225 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip17">
|
||||
<path d="M 212 216 L 218 216 L 218 227.464844 L 212 227.464844 Z M 212 216 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip18">
|
||||
<path d="M 0.507812 18 L 231.648438 18 L 231.648438 20 L 0.507812 20 Z M 0.507812 18 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip19">
|
||||
<path d="M 0.507812 18 L 231.648438 18 L 231.648438 204 L 0.507812 204 Z M 0.507812 18 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip20">
|
||||
<path d="M 0.507812 18 L 2 18 L 2 204 L 0.507812 204 Z M 0.507812 18 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip21">
|
||||
<path d="M 230 195 L 231.648438 195 L 231.648438 202 L 230 202 Z M 230 195 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip22">
|
||||
<path d="M 0.507812 195 L 2 195 L 2 202 L 0.507812 202 Z M 0.507812 195 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip23">
|
||||
<path d="M 0.507812 143 L 2 143 L 2 149 L 0.507812 149 Z M 0.507812 143 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip24">
|
||||
<path d="M 0.507812 88 L 2 88 L 2 95 L 0.507812 95 Z M 0.507812 88 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip25">
|
||||
<path d="M 0.507812 21 L 2 21 L 2 27 L 0.507812 27 Z M 0.507812 21 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip26">
|
||||
<path d="M 230 156 L 231.648438 156 L 231.648438 162 L 230 162 Z M 230 156 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip27">
|
||||
<path d="M 230 77 L 231.648438 77 L 231.648438 83 L 230 83 Z M 230 77 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip28">
|
||||
<path d="M 230 21 L 231.648438 21 L 231.648438 27 L 230 27 Z M 230 21 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip1">
|
||||
<rect x="0" y="0" width="232" height="228"/>
|
||||
</clipPath>
|
||||
<g id="surface5" clip-path="url(#clip1)">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 108.478832 L 275.037138 108.231405 L 275.160851 107.99576 L 275.037138 107.754225 L 274.801493 107.51858 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 109.073834 L 275.396495 109.073834 L 275.396495 106.911796 L 275.037138 106.911796 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 91.435841 L 275.037138 91.194305 L 275.160851 90.958661 L 275.037138 90.717125 L 274.801493 90.475589 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 92.036734 L 275.396495 92.036734 L 275.396495 89.874696 L 275.037138 89.874696 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 82.9114 L 275.037138 82.675755 L 275.160851 82.440111 L 275.037138 82.192684 L 274.801493 81.957039 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 83.518184 L 275.396495 83.518184 L 275.396495 81.356146 L 275.037138 81.356146 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 74.39285 L 275.037138 74.157205 L 275.160851 73.91567 L 275.037138 73.674134 L 274.801493 73.438489 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 74.993743 L 275.396495 74.993743 L 275.396495 72.837596 L 275.037138 72.837596 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 65.8743 L 275.037138 65.638655 L 275.160851 65.39712 L 275.037138 65.155584 L 274.801493 64.914048 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 66.475193 L 275.396495 66.475193 L 275.396495 64.313155 L 275.037138 64.313155 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 57.35575 L 275.037138 57.114214 L 275.160851 56.872679 L 275.037138 56.637034 L 274.801493 56.395498 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 57.956643 L 275.396495 57.956643 L 275.396495 55.794605 L 275.037138 55.794605 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 48.8372 L 275.037138 48.595664 L 275.160851 48.354129 L 275.037138 48.118484 L 274.801493 47.876948 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 49.438093 L 275.396495 49.438093 L 275.396495 47.276055 L 275.037138 47.276055 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 40.436472 L 275.037138 40.194937 L 275.160851 39.959292 L 275.037138 39.717756 L 274.801493 39.476221 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 41.037366 L 275.396495 41.037366 L 275.396495 38.875327 L 275.037138 38.875327 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 31.912031 L 275.037138 31.676387 L 275.160851 31.440742 L 275.037138 31.193315 L 274.801493 30.957671 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 32.518816 L 275.396495 32.518816 L 275.396495 30.356777 L 275.037138 30.356777 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.442135 99.954391 L 274.67778 99.712855 L 274.801493 99.47721 L 274.67778 99.235675 L 274.442135 98.994139 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 100.555284 L 275.037138 100.555284 L 275.037138 98.393246 L 274.801493 98.393246 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 107.51858 L 278.760321 107.754225 L 278.642499 107.99576 L 278.760321 108.231405 L 279.001857 108.478832 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 106.911796 L 278.395072 106.911796 L 278.395072 109.073834 L 278.760321 109.073834 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 90.475589 L 278.760321 90.717125 L 278.642499 90.958661 L 278.760321 91.194305 L 279.001857 91.435841 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 89.874696 L 278.395072 89.874696 L 278.395072 92.036734 L 278.760321 92.036734 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 81.957039 L 278.760321 82.192684 L 278.642499 82.440111 L 278.760321 82.675755 L 279.001857 82.9114 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 81.356146 L 278.395072 81.356146 L 278.395072 83.518184 L 278.760321 83.518184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 73.438489 L 278.760321 73.674134 L 278.642499 73.91567 L 278.760321 74.157205 L 279.001857 74.39285 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 72.837596 L 278.395072 72.837596 L 278.395072 74.993743 L 278.760321 74.993743 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 64.914048 L 278.760321 65.155584 L 278.642499 65.39712 L 278.760321 65.638655 L 279.001857 65.8743 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 64.313155 L 278.395072 64.313155 L 278.395072 66.475193 L 278.760321 66.475193 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 56.395498 L 278.760321 56.637034 L 278.642499 56.872679 L 278.760321 57.114214 L 279.001857 57.35575 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 55.794605 L 278.395072 55.794605 L 278.395072 57.956643 L 278.760321 57.956643 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 47.876948 L 278.760321 48.118484 L 278.642499 48.354129 L 278.760321 48.595664 L 279.001857 48.8372 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 47.276055 L 278.395072 47.276055 L 278.395072 49.438093 L 278.760321 49.438093 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 39.476221 L 278.760321 39.717756 L 278.642499 39.959292 L 278.760321 40.194937 L 279.001857 40.436472 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 38.875327 L 278.395072 38.875327 L 278.395072 41.037366 L 278.760321 41.037366 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 30.957671 L 278.760321 31.193315 L 278.642499 31.440742 L 278.760321 31.676387 L 279.001857 31.912031 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 30.356777 L 278.395072 30.356777 L 278.395072 32.518816 L 278.760321 32.518816 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 98.994139 L 278.518786 99.235675 L 278.395072 99.47721 L 278.518786 99.712855 L 278.760321 99.954391 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 98.393246 L 278.159428 98.393246 L 278.159428 100.555284 L 278.395072 100.555284 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.642499 109.073834 L 278.395072 109.073834 M 275.396495 109.073834 L 275.037138 109.073834 M 275.037138 106.799864 L 275.396495 106.799864 M 278.395072 106.799864 L 278.642499 106.799864 M 278.642499 92.036734 L 278.395072 92.036734 M 275.396495 92.036734 L 275.037138 92.036734 M 275.037138 89.874696 L 275.396495 89.874696 M 278.395072 89.874696 L 278.642499 89.874696 M 278.642499 83.518184 L 278.395072 83.518184 M 275.396495 83.518184 L 275.037138 83.518184 M 275.037138 81.356146 L 275.396495 81.356146 M 278.395072 81.356146 L 278.642499 81.356146 M 278.642499 74.993743 L 278.395072 74.993743 M 275.396495 74.993743 L 275.037138 74.993743 M 275.037138 72.837596 L 275.396495 72.837596 M 278.395072 72.837596 L 278.642499 72.837596 M 278.642499 66.475193 L 278.395072 66.475193 M 275.396495 66.475193 L 275.037138 66.475193 M 275.037138 64.313155 L 275.396495 64.313155 M 278.395072 64.313155 L 278.642499 64.313155 M 278.642499 58.074466 L 278.395072 58.074466 M 275.396495 58.074466 L 275.037138 58.074466 M 275.037138 55.794605 L 275.396495 55.794605 M 278.395072 55.794605 L 278.642499 55.794605 M 278.642499 49.555916 L 278.395072 49.555916 M 275.396495 49.555916 L 275.037138 49.555916 M 275.037138 47.276055 L 275.396495 47.276055 M 278.395072 47.276055 L 278.642499 47.276055 M 278.642499 41.037366 L 278.395072 41.037366 M 275.396495 41.037366 L 275.037138 41.037366 M 275.037138 38.751614 L 275.396495 38.751614 M 278.395072 38.751614 L 278.642499 38.751614 M 278.642499 32.518816 L 278.395072 32.518816 M 275.396495 32.518816 L 275.037138 32.518816 M 275.037138 30.233064 L 275.396495 30.233064 M 278.395072 30.233064 L 278.642499 30.233064 M 278.395072 100.555284 L 278.159428 100.555284 M 275.037138 100.555284 L 274.801493 100.555284 M 274.801493 98.275423 L 275.037138 98.275423 M 278.159428 98.275423 L 278.395072 98.275423 M 278.395072 109.073834 L 278.395072 106.799864 M 275.396495 106.799864 L 275.396495 109.073834 M 278.395072 109.073834 L 278.518786 109.073834 M 278.395072 106.799864 L 278.518786 106.799864 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 109.073834 L 278.395072 106.799864 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 106.799864 L 275.643922 106.799864 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 106.799864 L 275.643922 109.073834 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 109.073834 L 278.159428 109.073834 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 109.073834 L 278.159428 106.799864 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 106.799864 L 275.643922 106.799864 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 106.799864 L 278.395072 106.799864 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 109.073834 L 278.159428 109.073834 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 109.073834 L 275.396495 109.073834 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 106.799864 L 275.396495 109.073834 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 92.036734 L 278.395072 89.874696 M 275.396495 89.874696 L 275.396495 92.036734 M 278.395072 92.036734 L 278.518786 92.036734 M 278.395072 89.874696 L 278.518786 89.874696 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 92.036734 L 278.395072 89.874696 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 89.874696 L 275.643922 89.874696 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 89.874696 L 275.643922 92.036734 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 92.036734 L 278.159428 92.036734 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 92.036734 L 278.159428 89.874696 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 89.874696 L 275.643922 89.874696 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 89.874696 L 278.395072 89.874696 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 92.036734 L 278.159428 92.036734 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 92.036734 L 275.396495 92.036734 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 89.874696 L 275.396495 92.036734 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 83.518184 L 278.395072 81.356146 M 275.396495 81.356146 L 275.396495 83.518184 M 278.395072 83.518184 L 278.518786 83.518184 M 278.395072 81.356146 L 278.518786 81.356146 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 83.518184 L 278.395072 81.356146 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 81.356146 L 275.643922 81.356146 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 81.356146 L 275.643922 83.518184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 83.518184 L 278.159428 83.518184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 83.518184 L 278.159428 81.356146 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 81.356146 L 275.643922 81.356146 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 81.356146 L 278.395072 81.356146 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 83.518184 L 278.159428 83.518184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 83.518184 L 275.396495 83.518184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 81.356146 L 275.396495 83.518184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 74.993743 L 278.395072 72.837596 M 275.396495 72.837596 L 275.396495 74.993743 M 278.395072 74.993743 L 278.518786 74.993743 M 278.395072 72.837596 L 278.518786 72.837596 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 74.993743 L 278.395072 72.837596 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 72.837596 L 275.643922 72.837596 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 72.837596 L 275.643922 74.993743 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 74.993743 L 278.159428 74.993743 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 74.993743 L 278.159428 72.837596 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 72.837596 L 275.643922 72.837596 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 72.837596 L 278.395072 72.837596 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 74.993743 L 278.159428 74.993743 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 74.993743 L 275.396495 74.993743 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 72.837596 L 275.396495 74.993743 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 66.475193 L 278.395072 64.313155 M 275.396495 64.313155 L 275.396495 66.475193 M 278.395072 66.475193 L 278.518786 66.475193 M 278.395072 64.313155 L 278.518786 64.313155 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 66.475193 L 278.395072 64.313155 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 64.313155 L 275.643922 64.313155 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 64.313155 L 275.643922 66.475193 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 66.475193 L 278.159428 66.475193 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 66.475193 L 278.159428 64.313155 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 64.313155 L 275.643922 64.313155 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 64.313155 L 278.395072 64.313155 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 66.475193 L 278.159428 66.475193 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 66.475193 L 275.396495 66.475193 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 64.313155 L 275.396495 66.475193 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 58.074466 L 278.395072 55.794605 M 275.396495 55.794605 L 275.396495 58.074466 M 278.395072 58.074466 L 278.518786 58.074466 M 278.395072 55.794605 L 278.518786 55.794605 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 58.074466 L 278.395072 55.794605 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 55.794605 L 275.643922 55.794605 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 55.794605 L 275.643922 58.074466 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 58.074466 L 278.159428 58.074466 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 58.074466 L 278.159428 55.794605 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 55.794605 L 275.643922 55.794605 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 55.794605 L 278.395072 55.794605 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 58.074466 L 278.159428 58.074466 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 58.074466 L 275.396495 58.074466 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 55.794605 L 275.396495 58.074466 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 49.555916 L 278.395072 47.276055 M 275.396495 47.276055 L 275.396495 49.555916 M 278.395072 49.555916 L 278.518786 49.555916 M 278.395072 47.276055 L 278.518786 47.276055 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 49.555916 L 278.395072 47.276055 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 47.276055 L 275.643922 47.276055 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 47.276055 L 275.643922 49.555916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 49.555916 L 278.159428 49.555916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 49.555916 L 278.159428 47.276055 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 47.276055 L 275.643922 47.276055 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 47.276055 L 278.395072 47.276055 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 49.555916 L 278.159428 49.555916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 49.555916 L 275.396495 49.555916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 47.276055 L 275.396495 49.555916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 41.037366 L 278.395072 38.751614 M 275.396495 38.751614 L 275.396495 41.037366 M 278.395072 41.037366 L 278.518786 41.037366 M 278.395072 38.751614 L 278.518786 38.751614 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 41.037366 L 278.395072 38.751614 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 38.751614 L 275.643922 38.751614 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 38.751614 L 275.643922 41.037366 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 41.037366 L 278.159428 41.037366 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 41.037366 L 278.159428 38.751614 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 38.751614 L 275.643922 38.751614 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 38.751614 L 278.395072 38.751614 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 41.037366 L 278.159428 41.037366 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 41.037366 L 275.396495 41.037366 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 38.751614 L 275.396495 41.037366 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 32.518816 L 278.395072 30.233064 M 275.396495 30.233064 L 275.396495 32.518816 M 278.395072 32.518816 L 278.518786 32.518816 M 278.395072 30.233064 L 278.518786 30.233064 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 32.518816 L 278.395072 30.233064 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 30.233064 L 275.643922 30.233064 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 30.233064 L 275.643922 32.518816 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 32.518816 L 278.159428 32.518816 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 32.518816 L 278.159428 30.233064 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 30.233064 L 275.643922 30.233064 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 30.233064 L 278.395072 30.233064 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 32.518816 L 278.159428 32.518816 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 32.518816 L 275.396495 32.518816 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 30.233064 L 275.396495 32.518816 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 100.555284 L 278.159428 98.275423 M 275.037138 98.275423 L 275.037138 100.555284 M 278.159428 100.555284 L 278.283141 100.555284 M 278.159428 98.275423 L 278.283141 98.275423 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 100.555284 L 278.159428 98.275423 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.923783 98.275423 L 275.278673 98.275423 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.278673 98.275423 L 275.278673 100.555284 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.278673 100.555284 L 277.923783 100.555284 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.923783 100.555284 L 277.923783 98.275423 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 98.275423 L 275.278673 98.275423 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.923783 98.275423 L 278.159428 98.275423 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 100.555284 L 277.923783 100.555284 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.278673 100.555284 L 275.037138 100.555284 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.160851 98.275423 L 275.160851 100.555284 M 318.837566 263.515262 L 318.837566 277.913143 M 340.92335 277.913143 L 340.92335 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip2)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 341.282707 263.756798 L 341.282707 277.677499 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.002847 277.913143 L 339.120669 277.913143 L 339.120669 277.795321 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 336.840808 277.913143 L 336.840808 277.677499 L 336.95863 277.553785 L 336.95863 276.593534 L 337.076453 276.357889 L 337.076453 274.914567 L 337.200166 274.555209 L 337.200166 272.634706 L 337.317988 272.39317 L 337.317988 270.231132 L 337.441702 269.995487 L 337.441702 267.957162 L 337.559524 267.591913 L 337.559524 265.912945 L 337.677346 265.677301 L 337.677346 264.357692 L 337.801059 264.233978 L 337.801059 263.638976 L 337.924773 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 334.560947 277.913143 L 334.560947 277.677499 L 334.678769 277.553785 L 334.678769 276.593534 L 334.802483 276.357889 L 334.802483 274.914567 L 334.920305 274.555209 L 334.920305 272.634706 L 335.038127 272.39317 L 335.038127 270.231132 L 335.161841 269.995487 L 335.161841 268.31652 L 335.279663 267.957162 L 335.279663 266.154481 L 335.397485 265.912945 L 335.397485 264.593336 L 335.521199 264.357692 L 335.521199 263.638976 L 335.639021 263.638976 L 335.639021 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.281086 277.913143 L 332.281086 277.677499 L 332.398908 277.677499 L 332.398908 276.717247 L 332.522622 276.593534 L 332.522622 275.156102 L 332.640444 274.914567 L 332.640444 272.994064 L 332.764158 272.634706 L 332.764158 270.596381 L 332.876089 270.354845 L 332.876089 268.31652 L 332.999802 267.957162 L 332.999802 266.154481 L 333.123515 265.912945 L 333.123515 264.593336 L 333.235447 264.357692 L 333.235447 263.638976 L 333.35916 263.638976 L 333.35916 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.001225 277.913143 L 330.001225 277.795321 L 330.119048 277.677499 L 330.119048 276.958783 L 330.23687 276.717247 L 330.23687 275.397638 L 330.360583 275.156102 L 330.360583 273.353422 L 330.478406 272.994064 L 330.478406 270.955739 L 330.602119 270.596381 L 330.602119 268.552164 L 330.719941 268.31652 L 330.719941 266.396017 L 330.837763 266.154481 L 330.837763 264.717049 L 330.961477 264.593336 L 330.961477 263.756798 L 331.079299 263.638976 L 331.079299 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 327.721364 277.913143 L 327.721364 277.795321 L 327.839187 277.677499 L 327.839187 276.958783 L 327.9629 276.717247 L 327.9629 275.397638 L 328.080722 275.156102 L 328.080722 273.71278 L 328.198545 273.353422 L 328.198545 271.315096 L 328.322258 270.955739 L 328.322258 268.911522 L 328.44008 268.552164 L 328.44008 266.755375 L 328.557903 266.396017 L 328.557903 264.958585 L 328.681616 264.717049 L 328.681616 263.87462 L 328.799438 263.756798 L 328.799438 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 276.717247 L 325.677148 275.639174 L 325.800862 275.397638 L 325.800862 273.836493 L 325.924575 273.594957 L 325.924575 271.43881 L 326.036506 271.073561 L 326.036506 268.911522 L 326.160219 268.675878 L 326.160219 266.873197 L 326.283933 266.637552 L 326.283933 264.958585 L 326.395864 264.834872 L 326.395864 263.87462 L 326.519577 263.756798 L 326.519577 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.395864 263.515262 L 326.395864 263.638976 L 326.283933 263.756798 L 326.283933 264.593336 L 326.160219 264.717049 L 326.160219 266.278195 L 326.036506 266.396017 L 326.036506 268.440233 L 325.924575 268.675878 L 325.924575 270.837916 L 325.800862 271.073561 L 325.800862 273.117777 L 325.677148 273.353422 L 325.677148 274.678922 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 328.681616 263.515262 L 328.681616 263.638976 L 328.557903 263.638976 L 328.557903 264.475514 L 328.44008 264.593336 L 328.44008 266.036659 L 328.322258 266.278195 L 328.322258 268.074984 L 328.198545 268.31652 L 328.198545 270.354845 L 328.080722 270.714203 L 328.080722 272.752528 L 327.9629 273.117777 L 327.9629 274.914567 L 327.839187 275.279816 L 327.839187 276.593534 L 327.721364 276.83507 L 327.721364 277.677499 L 327.603542 277.795321 L 327.603542 277.913143 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.961477 263.515262 L 330.961477 263.638976 L 330.837763 263.638976 L 330.837763 264.233978 L 330.719941 264.475514 L 330.719941 265.677301 L 330.602119 266.036659 L 330.602119 267.715626 L 330.478406 268.074984 L 330.478406 270.1192 L 330.360583 270.354845 L 330.360583 272.516884 L 330.23687 272.752528 L 330.23687 274.678922 L 330.119048 274.914567 L 330.119048 276.475712 L 330.001225 276.593534 L 330.001225 277.553785 L 329.877512 277.677499 L 329.877512 277.913143 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.235447 263.515262 L 333.123515 263.638976 L 333.123515 264.233978 L 332.999802 264.475514 L 332.999802 265.677301 L 332.876089 266.036659 L 332.876089 267.715626 L 332.764158 268.074984 L 332.764158 270.1192 L 332.640444 270.354845 L 332.640444 272.516884 L 332.522622 272.752528 L 332.522622 274.437387 L 332.398908 274.678922 L 332.398908 276.234176 L 332.281086 276.475712 L 332.281086 277.435963 L 332.157373 277.553785 L 332.157373 277.913143 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.521199 263.515262 L 335.397485 263.515262 L 335.397485 264.116156 L 335.279663 264.233978 L 335.279663 265.435765 L 335.161841 265.677301 L 335.161841 267.474091 L 335.038127 267.715626 L 335.038127 269.753951 L 334.920305 270.1192 L 334.920305 272.157526 L 334.802483 272.516884 L 334.802483 274.437387 L 334.678769 274.678922 L 334.678769 276.234176 L 334.560947 276.475712 L 334.560947 277.435963 L 334.443125 277.553785 L 334.443125 277.913143 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.801059 263.515262 L 337.677346 263.515262 L 337.677346 263.998334 L 337.559524 264.116156 L 337.559524 265.19423 L 337.441702 265.435765 L 337.441702 267.114733 L 337.317988 267.474091 L 337.317988 269.394593 L 337.200166 269.753951 L 337.200166 271.798168 L 337.076453 272.157526 L 337.076453 274.072137 L 336.95863 274.437387 L 336.95863 275.998532 L 336.840808 276.234176 L 336.840808 277.318141 L 336.717095 277.435963 L 336.717095 277.913143 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.120669 276.717247 L 339.120669 277.318141 L 339.002847 277.318141 L 339.002847 277.913143 L 338.879133 277.913143 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.601921 262.437189 L 318.601921 278.873395 M 318.236672 279.232753 L 314.283735 279.232753 M 314.283735 262.195653 L 318.236672 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.236672 278.873395 L 318.236672 262.437189 L 314.283735 262.437189 M 314.283735 278.873395 L 318.236672 278.873395 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 262.195653 L 325.800862 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.761113 279.232753 L 326.878935 279.114931 L 326.878935 278.514037 L 327.002649 278.396215 L 327.002649 276.958783 L 327.120471 276.717247 L 327.120471 274.678922 L 327.238293 274.555209 L 327.238293 272.033812 L 327.356115 271.91599 L 327.356115 269.153058 L 327.479829 268.911522 L 327.479829 266.755375 L 327.603542 266.513839 L 327.603542 264.357692 L 327.721364 264.233978 L 327.721364 262.914369 L 327.839187 262.796546 L 327.839187 262.195653 L 327.9629 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 329.040974 279.232753 L 329.040974 279.114931 L 329.158796 279.114931 L 329.158796 278.396215 L 329.28251 278.278392 L 329.28251 276.717247 L 329.400332 276.593534 L 329.400332 274.555209 L 329.518154 274.313673 L 329.518154 271.91599 L 329.641867 271.674454 L 329.641867 268.911522 L 329.75969 268.675878 L 329.75969 266.396017 L 329.877512 266.154481 L 329.877512 264.233978 L 330.001225 264.116156 L 330.001225 262.796546 L 330.119048 262.678724 L 330.119048 262.195653 L 330.23687 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 331.320835 279.232753 L 331.320835 279.114931 L 331.438657 279.114931 L 331.438657 278.278392 L 331.556479 278.154679 L 331.556479 276.593534 L 331.680193 276.475712 L 331.680193 274.195851 L 331.803906 273.954315 L 331.803906 271.43881 L 331.921728 271.197274 L 331.921728 268.675878 L 332.039551 268.552164 L 332.039551 266.154481 L 332.157373 266.036659 L 332.157373 263.998334 L 332.281086 263.87462 L 332.281086 262.678724 L 332.398908 262.555011 L 332.398908 262.195653 L 332.522622 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.600696 279.232753 L 333.600696 279.114931 L 333.718518 278.997108 L 333.718518 278.154679 L 333.842231 278.036857 L 333.842231 276.357889 L 333.960054 276.116354 L 333.960054 273.954315 L 334.077876 273.71278 L 334.077876 271.197274 L 334.201589 271.073561 L 334.201589 268.31652 L 334.319411 268.074984 L 334.319411 266.036659 L 334.443125 265.795123 L 334.443125 263.87462 L 334.560947 263.756798 L 334.560947 262.555011 L 334.678769 262.555011 L 334.678769 262.195653 L 334.802483 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.880556 279.232753 L 335.880556 278.997108 L 335.998379 278.997108 L 335.998379 278.036857 L 336.122092 277.913143 L 336.122092 276.116354 L 336.239914 275.998532 L 336.239914 273.71278 L 336.357737 273.594957 L 336.357737 271.073561 L 336.48145 270.837916 L 336.48145 268.074984 L 336.599272 267.957162 L 336.599272 265.677301 L 336.717095 265.435765 L 336.717095 263.756798 L 336.840808 263.638976 L 336.840808 262.555011 L 336.95863 262.437189 L 336.95863 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 338.160417 279.232753 L 338.160417 278.873395 L 338.27824 278.873395 L 338.27824 277.913143 L 338.396062 277.677499 L 338.396062 275.998532 L 338.519775 275.751105 L 338.519775 273.477135 L 338.643489 273.117777 L 338.643489 270.955739 L 338.761311 270.596381 L 338.761311 268.074984 L 338.879133 267.715626 L 338.879133 265.435765 L 339.002847 265.19423 L 339.002847 263.515262 L 339.120669 263.39744 L 339.120669 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.160219 279.232753 L 326.283933 279.232753 L 326.283933 278.755573 L 326.395864 278.63775 L 326.395864 277.435963 L 326.519577 277.318141 L 326.519577 275.397638 L 326.643291 275.279816 L 326.643291 272.876241 L 326.761113 272.634706 L 326.761113 269.995487 L 326.878935 269.753951 L 326.878935 267.232555 L 327.002649 266.99691 L 327.002649 264.958585 L 327.120471 264.834872 L 327.120471 263.279618 L 327.238293 263.155904 L 327.238293 262.313475 L 327.356115 262.313475 L 327.356115 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 328.44008 279.232753 L 328.557903 279.232753 L 328.557903 278.63775 L 328.681616 278.63775 L 328.681616 277.318141 L 328.799438 277.194428 L 328.799438 275.032389 L 328.923152 274.914567 L 328.923152 272.634706 L 329.040974 272.39317 L 329.040974 269.753951 L 329.158796 269.518307 L 329.158796 266.99691 L 329.28251 266.873197 L 329.28251 264.834872 L 329.400332 264.593336 L 329.400332 263.032191 L 329.518154 262.914369 L 329.518154 262.313475 L 329.641867 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.719941 279.232753 L 330.837763 279.232753 L 330.837763 278.63775 L 330.961477 278.514037 L 330.961477 277.194428 L 331.079299 276.958783 L 331.079299 274.914567 L 331.197121 274.678922 L 331.197121 272.275348 L 331.320835 272.033812 L 331.320835 269.518307 L 331.438657 269.276771 L 331.438657 266.873197 L 331.556479 266.637552 L 331.556479 264.475514 L 331.680193 264.357692 L 331.680193 262.914369 L 331.803906 262.914369 L 331.803906 262.195653 L 331.921728 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.999802 279.232753 L 333.123515 279.114931 L 333.123515 278.514037 L 333.235447 278.396215 L 333.235447 276.83507 L 333.35916 276.717247 L 333.35916 274.678922 L 333.482873 274.437387 L 333.482873 272.033812 L 333.600696 271.798168 L 333.600696 269.153058 L 333.718518 268.911522 L 333.718518 266.513839 L 333.842231 266.278195 L 333.842231 264.357692 L 333.960054 264.233978 L 333.960054 262.914369 L 334.077876 262.796546 L 334.077876 262.195653 L 334.201589 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.279663 279.232753 L 335.279663 279.114931 L 335.397485 279.114931 L 335.397485 278.278392 L 335.521199 278.278392 L 335.521199 276.717247 L 335.639021 276.593534 L 335.639021 274.437387 L 335.762734 274.313673 L 335.762734 271.798168 L 335.880556 271.556632 L 335.880556 268.911522 L 335.998379 268.675878 L 335.998379 266.278195 L 336.122092 266.154481 L 336.122092 264.233978 L 336.239914 264.116156 L 336.239914 262.796546 L 336.357737 262.678724 L 336.357737 262.195653 L 336.48145 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.559524 279.232753 L 337.559524 279.114931 L 337.677346 279.114931 L 337.677346 278.278392 L 337.801059 278.154679 L 337.801059 276.593534 L 337.924773 276.475712 L 337.924773 274.072137 L 338.036704 273.836493 L 338.036704 271.43881 L 338.160417 271.197274 L 338.160417 268.675878 L 338.27824 268.440233 L 338.27824 266.154481 L 338.396062 265.912945 L 338.396062 263.998334 L 338.519775 263.87462 L 338.519775 262.678724 L 338.643489 262.555011 L 338.643489 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.120669 276.717247 L 339.120669 262.796546 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 262.195653 L 325.677148 274.678922 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.120669 278.036857 L 339.120669 277.795321 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 276.717247 L 325.677148 278.278392 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.236672 262.195653 L 318.236672 262.437189 M 318.236672 278.873395 L 318.236672 279.232753 M 318.236672 262.437189 L 318.601921 262.437189 M 318.601921 278.873395 L 318.236672 278.873395 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.478208 262.437189 L 318.236672 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.236672 279.114931 L 318.478208 278.873395 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.837566 277.913143 L 318.719743 278.036857 L 318.601921 278.154679 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.601921 263.155904 L 318.719743 263.279618 L 318.837566 263.39744 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip3)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.92335 277.913143 L 341.158994 277.677499 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip4)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 341.158994 263.756798 L 341.041172 263.638976 L 340.92335 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip5)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.92335 277.913143 L 339.120669 277.913143 M 339.002847 277.913143 L 338.879133 277.913143 M 336.840808 277.913143 L 336.599272 277.913143 M 334.560947 277.913143 L 334.443125 277.913143 M 332.281086 277.913143 L 332.157373 277.913143 M 330.001225 277.913143 L 329.877512 277.913143 M 327.721364 277.913143 L 327.603542 277.913143 M 325.677148 277.913143 L 318.837566 277.913143 M 340.92335 263.515262 L 339.120669 263.515262 M 337.924773 263.515262 L 337.801059 263.515262 M 335.639021 263.515262 L 335.521199 263.515262 M 333.35916 263.515262 L 333.235447 263.515262 M 331.079299 263.515262 L 330.961477 263.515262 M 328.799438 263.515262 L 328.681616 263.515262 M 326.519577 263.515262 L 326.395864 263.515262 M 325.677148 263.515262 L 318.837566 263.515262 M 338.160417 279.232753 L 337.559524 279.232753 M 335.880556 279.232753 L 335.279663 279.232753 M 333.600696 279.232753 L 332.999802 279.232753 M 331.320835 279.232753 L 330.719941 279.232753 M 329.040974 279.232753 L 328.44008 279.232753 M 326.761113 279.232753 L 326.283933 279.232753 M 339.120669 262.195653 L 338.643489 262.195653 M 336.95863 262.195653 L 336.48145 262.195653 M 334.678769 262.195653 L 334.201589 262.195653 M 332.398908 262.195653 L 331.921728 262.195653 M 330.23687 262.195653 L 329.641867 262.195653 M 327.9629 262.195653 L 327.356115 262.195653 M 327.603542 277.913143 L 326.761113 279.232753 M 329.877512 277.913143 L 329.040974 279.232753 M 332.157373 277.913143 L 331.320835 279.232753 M 334.443125 277.913143 L 333.600696 279.232753 M 336.717095 277.913143 L 335.880556 279.232753 M 338.879133 277.913143 L 338.160417 279.232753 M 325.677148 262.195653 L 326.395864 263.515262 M 327.9629 262.195653 L 328.681616 263.515262 M 330.23687 262.195653 L 330.961477 263.515262 M 332.522622 262.195653 L 333.235447 263.515262 M 334.802483 262.195653 L 335.521199 263.515262 M 336.95863 262.195653 L 337.801059 263.515262 M 326.160219 279.232753 L 325.677148 278.278392 M 328.44008 279.232753 L 327.721364 277.913143 M 330.719941 279.232753 L 330.001225 277.913143 M 332.999802 279.232753 L 332.281086 277.913143 M 335.279663 279.232753 L 334.443125 277.913143 M 337.559524 279.232753 L 336.717095 277.913143 M 339.120669 278.036857 L 339.002847 277.913143 M 337.924773 263.515262 L 338.643489 262.195653 M 335.639021 263.515262 L 336.357737 262.195653 M 333.35916 263.515262 L 334.077876 262.195653 M 331.079299 263.515262 L 331.921728 262.195653 M 328.799438 263.515262 L 329.641867 262.195653 M 326.519577 263.515262 L 327.356115 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.837566 308.876835 L 318.837566 323.274716 M 340.92335 323.274716 L 340.92335 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip6)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 341.282707 309.118371 L 341.282707 323.033181 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.002847 323.274716 L 339.120669 323.274716 L 339.120669 323.156894 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 336.840808 323.274716 L 336.840808 323.033181 L 336.95863 322.915358 L 336.95863 321.955107 L 337.076453 321.713571 L 337.076453 320.27614 L 337.200166 319.916782 L 337.200166 318.114101 L 337.317988 317.754743 L 337.317988 315.716418 L 337.441702 315.35706 L 337.441702 313.318735 L 337.559524 312.959377 L 337.559524 311.274518 L 337.677346 311.032983 L 337.677346 309.713373 L 337.801059 309.595551 L 337.801059 308.994658 L 337.924773 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 334.560947 323.274716 L 334.560947 323.033181 L 334.678769 322.915358 L 334.678769 321.955107 L 334.802483 321.713571 L 334.802483 320.27614 L 334.920305 319.916782 L 334.920305 318.114101 L 335.038127 317.754743 L 335.038127 315.716418 L 335.161841 315.35706 L 335.161841 313.678093 L 335.279663 313.318735 L 335.279663 311.516054 L 335.397485 311.274518 L 335.397485 309.954909 L 335.521199 309.713373 L 335.521199 308.994658 L 335.639021 308.994658 L 335.639021 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.281086 323.274716 L 332.281086 323.033181 L 332.398908 323.033181 L 332.398908 322.072929 L 332.522622 321.955107 L 332.522622 320.517675 L 332.640444 320.27614 L 332.640444 318.355637 L 332.764158 318.114101 L 332.764158 315.957954 L 332.876089 315.716418 L 332.876089 313.678093 L 332.999802 313.318735 L 332.999802 311.516054 L 333.123515 311.274518 L 333.123515 309.954909 L 333.235447 309.713373 L 333.235447 308.994658 L 333.35916 308.994658 L 333.35916 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.001225 323.274716 L 330.001225 323.156894 L 330.119048 323.033181 L 330.119048 322.314465 L 330.23687 322.072929 L 330.23687 320.75332 L 330.360583 320.517675 L 330.360583 318.714995 L 330.478406 318.355637 L 330.478406 316.317311 L 330.602119 315.957954 L 330.602119 313.913737 L 330.719941 313.678093 L 330.719941 311.751699 L 330.837763 311.516054 L 330.837763 310.072731 L 330.961477 309.954909 L 330.961477 309.118371 L 331.079299 308.994658 L 331.079299 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 327.721364 323.274716 L 327.721364 323.156894 L 327.839187 323.033181 L 327.839187 322.314465 L 327.9629 322.196643 L 327.9629 320.75332 L 328.080722 320.517675 L 328.080722 319.074353 L 328.198545 318.714995 L 328.198545 316.676669 L 328.322258 316.317311 L 328.322258 314.278986 L 328.44008 313.913737 L 328.44008 312.116948 L 328.557903 311.751699 L 328.557903 310.314267 L 328.681616 310.072731 L 328.681616 309.236193 L 328.799438 309.118371 L 328.799438 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 322.072929 L 325.677148 320.994856 L 325.800862 320.75332 L 325.800862 319.192175 L 325.924575 318.95653 L 325.924575 316.794492 L 326.036506 316.435134 L 326.036506 314.278986 L 326.160219 314.037451 L 326.160219 312.23477 L 326.283933 311.993234 L 326.283933 310.314267 L 326.395864 310.196445 L 326.395864 309.236193 L 326.519577 309.236193 L 326.519577 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.395864 308.876835 L 326.395864 308.994658 L 326.283933 309.118371 L 326.283933 309.954909 L 326.160219 310.072731 L 326.160219 311.639767 L 326.036506 311.875412 L 326.036506 313.795915 L 325.924575 314.037451 L 325.924575 316.193598 L 325.800862 316.435134 L 325.800862 318.47935 L 325.677148 318.714995 L 325.677148 320.034604 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 328.681616 308.876835 L 328.681616 308.994658 L 328.557903 308.994658 L 328.557903 309.837087 L 328.44008 309.954909 L 328.44008 311.392341 L 328.322258 311.639767 L 328.322258 313.436557 L 328.198545 313.795915 L 328.198545 315.716418 L 328.080722 316.075776 L 328.080722 318.114101 L 327.9629 318.47935 L 327.9629 320.27614 L 327.839187 320.635498 L 327.839187 321.955107 L 327.721364 322.196643 L 327.721364 323.033181 L 327.603542 323.156894 L 327.603542 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.961477 308.876835 L 330.961477 308.994658 L 330.837763 308.994658 L 330.837763 309.595551 L 330.719941 309.837087 L 330.719941 311.032983 L 330.602119 311.392341 L 330.602119 313.071308 L 330.478406 313.436557 L 330.478406 315.474882 L 330.360583 315.716418 L 330.360583 317.872565 L 330.23687 318.114101 L 330.23687 320.034604 L 330.119048 320.27614 L 330.119048 321.837285 L 330.001225 321.955107 L 330.001225 322.915358 L 329.877512 323.033181 L 329.877512 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.235447 308.876835 L 333.123515 308.994658 L 333.123515 309.595551 L 332.999802 309.837087 L 332.999802 311.032983 L 332.876089 311.392341 L 332.876089 313.071308 L 332.764158 313.436557 L 332.764158 315.474882 L 332.640444 315.716418 L 332.640444 317.872565 L 332.522622 318.114101 L 332.522622 319.798959 L 332.398908 320.034604 L 332.398908 321.595749 L 332.281086 321.837285 L 332.281086 322.797536 L 332.157373 322.915358 L 332.157373 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.521199 308.876835 L 335.397485 308.876835 L 335.397485 309.477729 L 335.279663 309.595551 L 335.279663 310.797338 L 335.161841 311.032983 L 335.161841 312.835663 L 335.038127 313.071308 L 335.038127 315.115524 L 334.920305 315.474882 L 334.920305 317.513208 L 334.802483 317.872565 L 334.802483 319.798959 L 334.678769 320.034604 L 334.678769 321.595749 L 334.560947 321.837285 L 334.560947 322.797536 L 334.443125 322.915358 L 334.443125 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.801059 308.876835 L 337.677346 308.876835 L 337.677346 309.354015 L 337.559524 309.477729 L 337.559524 310.555803 L 337.441702 310.797338 L 337.441702 312.476306 L 337.317988 312.835663 L 337.317988 314.756166 L 337.200166 315.115524 L 337.200166 317.15385 L 337.076453 317.513208 L 337.076453 319.439602 L 336.95863 319.798959 L 336.95863 321.354213 L 336.840808 321.595749 L 336.840808 322.673823 L 336.717095 322.797536 L 336.717095 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.120669 322.072929 L 339.120669 322.673823 L 339.002847 322.797536 L 339.002847 323.274716 L 338.879133 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.601921 307.798762 L 318.601921 324.234968 M 318.236672 324.594326 L 314.283735 324.594326 M 314.283735 307.557226 L 318.236672 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.236672 324.234968 L 318.236672 307.798762 L 314.283735 307.798762 M 314.283735 324.234968 L 318.236672 324.234968 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 307.557226 L 325.800862 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.761113 324.594326 L 326.878935 324.476504 L 326.878935 323.87561 L 327.002649 323.751897 L 327.002649 322.314465 L 327.120471 322.072929 L 327.120471 320.034604 L 327.238293 319.916782 L 327.238293 317.395385 L 327.356115 317.277563 L 327.356115 314.514631 L 327.479829 314.278986 L 327.479829 312.116948 L 327.603542 311.875412 L 327.603542 309.713373 L 327.721364 309.595551 L 327.721364 308.275942 L 327.839187 308.158119 L 327.839187 307.557226 L 327.9629 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 329.040974 324.594326 L 329.040974 324.476504 L 329.158796 324.476504 L 329.158796 323.751897 L 329.28251 323.634074 L 329.28251 322.072929 L 329.400332 321.955107 L 329.400332 319.916782 L 329.518154 319.675246 L 329.518154 317.277563 L 329.641867 317.036027 L 329.641867 314.278986 L 329.75969 314.155273 L 329.75969 311.751699 L 329.877512 311.516054 L 329.877512 309.595551 L 330.001225 309.477729 L 330.001225 308.158119 L 330.119048 308.034406 L 330.119048 307.557226 L 330.23687 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 331.320835 324.594326 L 331.320835 324.476504 L 331.438657 324.476504 L 331.438657 323.634074 L 331.556479 323.516252 L 331.556479 321.955107 L 331.680193 321.837285 L 331.680193 319.557424 L 331.803906 319.315888 L 331.803906 316.794492 L 331.921728 316.552956 L 331.921728 314.155273 L 332.039551 313.913737 L 332.039551 311.516054 L 332.157373 311.392341 L 332.157373 309.354015 L 332.281086 309.236193 L 332.281086 308.034406 L 332.398908 307.916584 L 332.398908 307.557226 L 332.522622 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.600696 324.594326 L 333.600696 324.476504 L 333.718518 324.35279 L 333.718518 323.516252 L 333.842231 323.392539 L 333.842231 321.713571 L 333.960054 321.477927 L 333.960054 319.315888 L 334.077876 319.074353 L 334.077876 316.552956 L 334.201589 316.435134 L 334.201589 313.678093 L 334.319411 313.436557 L 334.319411 311.392341 L 334.443125 311.156696 L 334.443125 309.236193 L 334.560947 309.118371 L 334.560947 307.916584 L 334.678769 307.916584 L 334.678769 307.557226 L 334.802483 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.880556 324.594326 L 335.880556 324.35279 L 335.998379 324.35279 L 335.998379 323.392539 L 336.122092 323.274716 L 336.122092 321.477927 L 336.239914 321.354213 L 336.239914 319.074353 L 336.357737 318.95653 L 336.357737 316.435134 L 336.48145 316.193598 L 336.48145 313.436557 L 336.599272 313.318735 L 336.599272 311.032983 L 336.717095 310.797338 L 336.717095 309.118371 L 336.840808 308.994658 L 336.840808 307.916584 L 336.95863 307.798762 L 336.95863 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 338.160417 324.594326 L 338.160417 324.234968 L 338.27824 324.234968 L 338.27824 323.274716 L 338.396062 323.033181 L 338.396062 321.354213 L 338.519775 321.118569 L 338.519775 318.838708 L 338.643489 318.47935 L 338.643489 316.317311 L 338.761311 315.957954 L 338.761311 313.436557 L 338.879133 313.071308 L 338.879133 310.797338 L 339.002847 310.555803 L 339.002847 308.876835 L 339.120669 308.753122 L 339.120669 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.160219 324.594326 L 326.283933 324.594326 L 326.283933 324.117146 L 326.395864 323.993432 L 326.395864 322.797536 L 326.519577 322.673823 L 326.519577 320.75332 L 326.643291 320.635498 L 326.643291 318.231923 L 326.761113 317.996279 L 326.761113 315.35706 L 326.878935 315.115524 L 326.878935 312.594128 L 327.002649 312.476306 L 327.002649 310.314267 L 327.120471 310.196445 L 327.120471 308.6353 L 327.238293 308.517477 L 327.238293 307.675048 L 327.356115 307.675048 L 327.356115 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 328.44008 324.594326 L 328.557903 324.594326 L 328.557903 323.993432 L 328.681616 323.993432 L 328.681616 322.673823 L 328.799438 322.556001 L 328.799438 320.393962 L 328.923152 320.27614 L 328.923152 317.996279 L 329.040974 317.872565 L 329.040974 315.115524 L 329.158796 314.873989 L 329.158796 312.476306 L 329.28251 312.23477 L 329.28251 310.196445 L 329.400332 309.954909 L 329.400332 308.393764 L 329.518154 308.275942 L 329.518154 307.675048 L 329.641867 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.719941 324.594326 L 330.837763 324.594326 L 330.837763 323.993432 L 330.961477 323.87561 L 330.961477 322.556001 L 331.079299 322.314465 L 331.079299 320.27614 L 331.197121 320.034604 L 331.197121 317.636921 L 331.320835 317.395385 L 331.320835 314.873989 L 331.438657 314.638344 L 331.438657 312.23477 L 331.556479 311.993234 L 331.556479 309.837087 L 331.680193 309.713373 L 331.680193 308.275942 L 331.803906 308.275942 L 331.803906 307.557226 L 331.921728 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.999802 324.594326 L 333.123515 324.476504 L 333.123515 323.87561 L 333.235447 323.751897 L 333.235447 322.196643 L 333.35916 322.072929 L 333.35916 320.034604 L 333.482873 319.798959 L 333.482873 317.395385 L 333.600696 317.15385 L 333.600696 314.514631 L 333.718518 314.278986 L 333.718518 311.875412 L 333.842231 311.639767 L 333.842231 309.713373 L 333.960054 309.595551 L 333.960054 308.275942 L 334.077876 308.158119 L 334.077876 307.557226 L 334.201589 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.279663 324.594326 L 335.279663 324.476504 L 335.397485 324.476504 L 335.397485 323.634074 L 335.521199 323.634074 L 335.521199 322.072929 L 335.639021 321.955107 L 335.639021 319.798959 L 335.762734 319.675246 L 335.762734 317.15385 L 335.880556 317.036027 L 335.880556 314.278986 L 335.998379 314.037451 L 335.998379 311.639767 L 336.122092 311.516054 L 336.122092 309.595551 L 336.239914 309.477729 L 336.239914 308.158119 L 336.357737 308.034406 L 336.357737 307.557226 L 336.48145 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.559524 324.594326 L 337.559524 324.476504 L 337.677346 324.476504 L 337.677346 323.634074 L 337.801059 323.516252 L 337.801059 321.955107 L 337.924773 321.837285 L 337.924773 319.439602 L 338.036704 319.315888 L 338.036704 316.794492 L 338.160417 316.552956 L 338.160417 314.037451 L 338.27824 313.795915 L 338.27824 311.516054 L 338.396062 311.274518 L 338.396062 309.354015 L 338.519775 309.236193 L 338.519775 308.034406 L 338.643489 307.916584 L 338.643489 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.120669 322.072929 L 339.120669 308.158119 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 307.557226 L 325.677148 320.034604 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.120669 323.392539 L 339.120669 323.156894 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 322.072929 L 325.677148 323.634074 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.236672 307.557226 L 318.236672 307.798762 M 318.236672 324.234968 L 318.236672 324.594326 M 318.236672 307.798762 L 318.601921 307.798762 M 318.601921 324.234968 L 318.236672 324.234968 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.478208 307.798762 L 318.236672 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.236672 324.476504 L 318.478208 324.234968 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.837566 323.392539 L 318.719743 323.516252 L 318.601921 323.634074 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.601921 308.517477 L 318.837566 308.753122 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip7)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.92335 323.274716 L 341.041172 323.156894 L 341.158994 323.033181 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip8)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 341.158994 309.118371 L 341.041172 308.994658 L 340.92335 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip9)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.92335 323.274716 L 339.120669 323.274716 M 339.002847 323.274716 L 338.879133 323.274716 M 336.840808 323.274716 L 336.599272 323.274716 M 334.560947 323.274716 L 334.443125 323.274716 M 332.281086 323.274716 L 332.157373 323.274716 M 330.001225 323.274716 L 329.877512 323.274716 M 327.721364 323.274716 L 327.603542 323.274716 M 325.677148 323.274716 L 318.837566 323.274716 M 340.92335 308.876835 L 339.120669 308.876835 M 337.924773 308.876835 L 337.801059 308.876835 M 335.639021 308.876835 L 335.521199 308.876835 M 333.35916 308.876835 L 333.235447 308.876835 M 331.079299 308.876835 L 330.961477 308.876835 M 328.799438 308.876835 L 328.681616 308.876835 M 326.519577 308.876835 L 326.395864 308.876835 M 325.677148 308.876835 L 318.837566 308.876835 M 338.160417 324.594326 L 337.559524 324.594326 M 335.880556 324.594326 L 335.279663 324.594326 M 333.600696 324.594326 L 332.999802 324.594326 M 331.320835 324.594326 L 330.719941 324.594326 M 329.040974 324.594326 L 328.44008 324.594326 M 326.761113 324.594326 L 326.283933 324.594326 M 339.120669 307.557226 L 338.643489 307.557226 M 336.95863 307.557226 L 336.48145 307.557226 M 334.678769 307.557226 L 334.201589 307.557226 M 332.398908 307.557226 L 331.921728 307.557226 M 330.23687 307.557226 L 329.641867 307.557226 M 327.9629 307.557226 L 327.356115 307.557226 M 327.603542 323.274716 L 326.761113 324.594326 M 329.877512 323.274716 L 329.040974 324.594326 M 332.157373 323.274716 L 331.320835 324.594326 M 334.443125 323.274716 L 333.600696 324.594326 M 336.717095 323.274716 L 335.880556 324.594326 M 338.879133 323.274716 L 338.160417 324.594326 M 325.677148 307.557226 L 326.395864 308.876835 M 327.9629 307.557226 L 328.681616 308.876835 M 330.23687 307.557226 L 330.961477 308.876835 M 332.522622 307.557226 L 333.235447 308.876835 M 334.802483 307.557226 L 335.521199 308.876835 M 336.95863 307.557226 L 337.801059 308.876835 M 326.160219 324.594326 L 325.677148 323.634074 M 328.44008 324.594326 L 327.721364 323.274716 M 330.719941 324.594326 L 330.001225 323.274716 M 332.999802 324.594326 L 332.281086 323.274716 M 335.279663 324.594326 L 334.443125 323.274716 M 337.559524 324.594326 L 336.717095 323.274716 M 339.120669 323.392539 L 339.002847 323.274716 M 337.924773 308.876835 L 338.643489 307.557226 M 335.639021 308.876835 L 336.357737 307.557226 M 333.35916 308.876835 L 334.077876 307.557226 M 331.079299 308.876835 L 331.921728 307.557226 M 328.799438 308.876835 L 329.641867 307.557226 M 326.519577 308.876835 L 327.356115 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.482393 21.838227 L 32.040493 21.838227 L 32.040493 48.8372 L 36.482393 48.8372 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.075774 27.835381 L 28.075774 42.957869 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.682559 35.393679 L 28.800381 35.275857 L 28.800381 35.034321 L 28.924094 34.916499 L 28.924094 34.798677 L 29.041916 34.674963 L 29.041916 34.557141 L 29.159739 34.557141 L 29.283452 34.439319 L 29.395383 34.439319 L 29.519097 34.315605 L 29.760632 34.315605 L 29.878455 34.197783 L 30.361526 34.197783 L 30.479348 34.315605 L 30.720884 34.315605 L 30.838706 34.439319 L 30.962419 34.439319 L 30.962419 34.557141 L 31.080242 34.557141 L 31.321777 34.798677 L 31.321777 34.916499 L 31.4396 35.034321 L 31.4396 35.753037 L 31.321777 35.87675 L 31.321777 35.994573 L 31.198064 35.994573 L 30.838706 36.353931 L 30.720884 36.353931 L 30.603061 36.477644 L 29.64281 36.477644 L 29.519097 36.353931 L 29.395383 36.353931 L 29.283452 36.236108 L 29.159739 36.236108 L 29.041916 36.118286 L 29.041916 35.994573 L 28.924094 35.994573 L 28.924094 35.87675 L 28.800381 35.753037 L 28.800381 35.517393 Z M 28.682559 35.393679 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.4396 27.835381 L 28.682559 27.835381 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.682559 42.957869 L 28.924094 42.957869 L 29.041916 42.834155 L 31.198064 42.834155 L 31.321777 42.957869 L 31.4396 42.957869 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.840129 27.476023 L 27.840129 28.436274 L 27.963843 28.554097 L 27.963843 36.236108 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.879878 26.875129 L 26.879878 27.116665 L 26.9977 27.116665 L 26.9977 27.717558 L 27.121413 27.835381 L 27.121413 28.436274 L 27.239236 28.67781 L 27.239236 29.396526 L 27.357058 29.638061 L 27.357058 30.4746 L 27.480771 30.716135 L 27.480771 31.676387 L 27.604485 31.912031 L 27.604485 32.75446 L 27.716416 33.119709 L 27.716416 34.197783 L 27.840129 34.439319 L 27.840129 35.393679 L 27.963843 35.635215 L 27.963843 36.236108 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.879878 35.393679 L 26.879878 26.875129 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.239236 43.794407 L 27.121413 43.794407 L 27.121413 41.997617 L 26.9977 41.873904 L 26.9977 37.67354 L 26.879878 37.437896 L 26.879878 35.393679 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.639765 44.153765 L 23.521943 44.035942 L 23.521943 43.193513 L 23.39823 43.075691 L 23.39823 41.037366 L 23.280408 40.79583 L 23.280408 37.915076 L 23.162585 37.67354 L 23.162585 34.439319 L 23.038872 34.197783 L 23.038872 31.075493 L 22.92105 30.957671 L 22.92105 28.436274 L 22.803227 28.318452 L 22.803227 26.875129 L 22.679514 26.875129 L 22.679514 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.442446 44.153765 L 25.442446 43.676585 L 25.318733 43.552871 L 25.318733 41.873904 L 25.200911 41.756082 L 25.200911 39.116863 L 25.077197 38.875327 L 25.077197 35.753037 L 24.959375 35.517393 L 24.959375 32.27728 L 24.841553 32.035745 L 24.841553 29.15499 L 24.717839 29.037168 L 24.717839 27.234487 L 24.600017 27.116665 L 24.600017 26.639485 L 24.482195 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.879878 35.393679 L 26.879878 33.355354 L 26.762056 33.119709 L 26.762056 30.356777 L 26.638342 30.115242 L 26.638342 27.835381 L 26.52052 27.717558 L 26.52052 26.639485 L 26.396807 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 22.196443 27.835381 L 22.196443 28.67781 L 22.320156 28.795632 L 22.320156 30.716135 L 22.443869 30.957671 L 22.443869 33.479067 L 22.561692 33.838425 L 22.561692 36.595466 L 22.679514 36.954824 L 22.679514 39.476221 L 22.803227 39.717756 L 22.803227 41.638259 L 22.92105 41.873904 L 22.92105 42.957869 L 23.038872 42.957869 L 23.038872 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.999123 27.717558 L 23.999123 27.959094 L 24.122837 28.076916 L 24.122837 29.396526 L 24.240659 29.514348 L 24.240659 31.912031 L 24.358481 32.035745 L 24.358481 34.798677 L 24.482195 35.034321 L 24.482195 37.797253 L 24.600017 37.915076 L 24.600017 40.436472 L 24.717839 40.678008 L 24.717839 42.356975 L 24.841553 42.474797 L 24.841553 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.801804 27.717558 L 25.919626 27.717558 L 25.919626 28.318452 L 26.037449 28.554097 L 26.037449 30.115242 L 26.161162 30.356777 L 26.161162 32.872283 L 26.278984 33.231641 L 26.278984 35.753037 L 26.396807 36.118286 L 26.396807 38.993149 L 26.52052 39.234685 L 26.52052 41.278901 L 26.638342 41.514546 L 26.638342 42.716333 L 26.762056 42.834155 L 26.762056 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.716416 27.717558 L 27.716416 27.835381 L 27.840129 27.835381 L 27.840129 28.913454 L 27.963843 29.037168 L 27.963843 30.233064 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.762056 26.639485 L 26.879878 26.639485 L 26.879878 26.875129 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24.959375 26.639485 L 24.959375 26.875129 L 25.077197 26.998843 L 25.077197 28.554097 L 25.200911 28.67781 L 25.200911 31.193315 L 25.318733 31.317029 L 25.318733 34.557141 L 25.442446 34.674963 L 25.442446 38.032898 L 25.560268 38.156611 L 25.560268 41.037366 L 25.678091 41.155188 L 25.678091 43.193513 L 25.801804 43.317227 L 25.801804 44.153765 L 25.919626 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.038872 26.639485 L 23.162585 26.639485 L 23.162585 27.717558 L 23.280408 27.835381 L 23.280408 30.115242 L 23.39823 30.233064 L 23.39823 33.231641 L 23.521943 33.479067 L 23.521943 36.713289 L 23.639765 36.954824 L 23.639765 39.959292 L 23.763479 40.194937 L 23.763479 42.474797 L 23.881301 42.59262 L 23.881301 43.912229 L 23.999123 43.912229 L 23.999123 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.837085 41.396724 L 21.837085 41.756082 L 21.960798 41.873904 L 21.960798 43.552871 L 22.07862 43.676585 L 22.07862 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.60144 34.197783 L 21.60144 35.393679 L 21.719263 35.753037 L 21.719263 38.875327 L 21.837085 39.234685 L 21.837085 40.194937 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.359905 28.076916 L 21.359905 28.913454 L 21.477727 29.278703 L 21.477727 32.035745 L 21.60144 32.395102 L 21.60144 32.75446 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.960798 27.835381 L 21.960798 29.037168 L 22.07862 29.278703 L 22.07862 31.317029 L 22.196443 31.552673 L 22.196443 33.838425 L 22.320156 34.197783 L 22.320156 36.954824 L 22.443869 37.314182 L 22.443869 39.835579 L 22.561692 40.071223 L 22.561692 41.997617 L 22.679514 42.11544 L 22.679514 42.957869 L 22.803227 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.763479 27.717558 L 23.763479 28.194739 L 23.881301 28.318452 L 23.881301 29.638061 L 23.999123 29.873706 L 23.999123 32.035745 L 24.122837 32.395102 L 24.122837 35.275857 L 24.240659 35.635215 L 24.240659 38.156611 L 24.358481 38.515969 L 24.358481 40.678008 L 24.482195 40.913652 L 24.482195 42.474797 L 24.600017 42.59262 L 24.600017 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.560268 27.717558 L 25.678091 27.717558 L 25.678091 28.554097 L 25.801804 28.795632 L 25.801804 30.4746 L 25.919626 30.716135 L 25.919626 33.119709 L 26.037449 33.355354 L 26.037449 36.353931 L 26.161162 36.713289 L 26.161162 39.116863 L 26.278984 39.476221 L 26.278984 41.396724 L 26.396807 41.638259 L 26.396807 42.834155 L 26.52052 42.957869 L 26.52052 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.480771 27.717558 L 27.480771 27.835381 L 27.604485 27.959094 L 27.604485 29.278703 L 27.716416 29.396526 L 27.716416 31.440742 L 27.840129 31.552673 L 27.840129 34.315605 L 27.963843 34.557141 L 27.963843 36.236108 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 26.751416 L 15.239038 26.639485 L 15.121216 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.638144 27.717558 L 14.638144 28.194739 L 14.761858 28.194739 L 14.761858 29.755884 L 14.87968 29.873706 L 14.87968 32.395102 L 14.997502 32.636638 L 14.997502 35.393679 L 15.121216 35.635215 L 15.121216 38.274434 L 15.239038 38.515969 L 15.239038 39.234685 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.359905 39.594043 L 21.359905 36.713289 L 21.236191 36.477644 L 21.236191 34.439319 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.719263 44.153765 L 21.719263 43.912229 L 21.60144 43.794407 L 21.60144 42.474797 L 21.477727 42.233262 L 21.477727 41.997617 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 13.677893 26.639485 L 13.677893 26.751416 L 13.801606 26.751416 L 13.801606 28.076916 L 13.919428 28.194739 L 13.919428 30.592422 L 14.037251 30.833957 L 14.037251 33.838425 L 14.160964 34.07407 L 14.160964 37.314182 L 14.278786 37.555718 L 14.278786 40.554294 L 14.396609 40.678008 L 14.396609 42.834155 L 14.520322 42.957869 L 14.520322 44.035942 L 14.638144 44.035942 L 14.638144 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.396609 27.717558 L 14.396609 28.318452 L 14.520322 28.554097 L 14.520322 30.115242 L 14.638144 30.4746 L 14.638144 32.518816 L 14.761858 32.872283 L 14.761858 35.517393 L 14.87968 35.87675 L 14.87968 38.639683 L 14.997502 38.875327 L 14.997502 41.037366 L 15.121216 41.278901 L 15.121216 42.59262 L 15.239038 42.716333 L 15.239038 42.957869 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.640991 44.153765 L 8.517277 44.153765 L 8.517277 43.44094 L 8.399455 43.193513 L 8.399455 41.278901 L 8.281633 40.913652 L 8.281633 38.156611 L 8.15792 37.67354 L 8.15792 34.916499 L 8.040097 34.439319 L 8.040097 31.317029 L 7.922275 31.075493 L 7.922275 28.554097 L 7.798562 28.318452 L 7.798562 26.998843 L 7.680739 26.875129 L 7.680739 26.751416 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.443672 44.153765 L 10.443672 43.794407 L 10.319958 43.676585 L 10.319958 42.11544 L 10.196245 41.873904 L 10.196245 39.352507 L 10.078423 39.116863 L 10.078423 35.994573 L 9.9606 35.753037 L 9.9606 32.518816 L 9.842778 32.27728 L 9.842778 29.514348 L 9.719065 29.278703 L 9.719065 27.352309 L 9.601242 27.352309 L 9.601242 26.639485 L 9.477529 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.358283 44.153765 L 12.358283 44.035942 L 12.240461 44.035942 L 12.240461 42.834155 L 12.122639 42.716333 L 12.122639 40.436472 L 11.998925 40.31865 L 11.998925 37.314182 L 11.881103 37.072646 L 11.881103 33.714712 L 11.763281 33.59689 L 11.763281 30.4746 L 11.639568 30.356777 L 11.639568 28.076916 L 11.521745 27.959094 L 11.521745 26.751416 L 11.398032 26.751416 L 11.398032 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.278786 44.153765 L 14.160964 44.153765 L 14.160964 43.44094 L 14.037251 43.317227 L 14.037251 41.514546 L 13.919428 41.278901 L 13.919428 38.515969 L 13.801606 38.274434 L 13.801606 35.034321 L 13.677893 34.916499 L 13.677893 31.676387 L 13.560071 31.440742 L 13.560071 28.913454 L 13.442248 28.67781 L 13.442248 26.998843 L 13.318535 26.998843 L 13.318535 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.079846 27.835381 L 7.680739 26.751416 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.079846 27.835381 L 7.197668 27.835381 L 7.197668 28.913454 L 7.321381 29.15499 L 7.321381 31.075493 L 7.439204 31.440742 L 7.439204 33.956248 L 7.557026 34.315605 L 7.557026 37.072646 L 7.680739 37.437896 L 7.680739 39.717756 L 7.798562 39.959292 L 7.798562 41.873904 L 7.922275 41.997617 L 7.922275 42.957869 L 8.040097 42.957869 L 8.040097 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9.000349 27.717558 L 9.000349 28.076916 L 9.118171 28.194739 L 9.118171 29.514348 L 9.235993 29.873706 L 9.235993 31.912031 L 9.359707 32.27728 L 9.359707 35.034321 L 9.477529 35.393679 L 9.477529 38.032898 L 9.601242 38.274434 L 9.601242 40.79583 L 9.719065 41.037366 L 9.719065 42.474797 L 9.842778 42.59262 L 9.842778 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.803029 27.717558 L 10.920852 27.717558 L 10.920852 28.554097 L 11.038674 28.67781 L 11.038674 30.356777 L 11.162387 30.592422 L 11.162387 32.872283 L 11.28021 33.231641 L 11.28021 36.236108 L 11.398032 36.595466 L 11.398032 38.993149 L 11.521745 39.352507 L 11.521745 41.514546 L 11.639568 41.756082 L 11.639568 42.834155 L 11.763281 42.834155 L 11.763281 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.717641 27.717558 L 12.717641 27.835381 L 12.841355 27.835381 L 12.841355 29.15499 L 12.959177 29.396526 L 12.959177 31.193315 L 13.076999 31.552673 L 13.076999 33.956248 L 13.200713 34.315605 L 13.200713 37.314182 L 13.318535 37.67354 L 13.318535 39.959292 L 13.442248 40.194937 L 13.442248 42.11544 L 13.560071 42.233262 L 13.560071 42.957869 L 13.677893 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11.763281 26.639485 L 11.881103 26.639485 L 11.881103 27.476023 L 11.998925 27.593845 L 11.998925 29.514348 L 12.122639 29.755884 L 12.122639 32.636638 L 12.240461 32.75446 L 12.240461 35.994573 L 12.358283 36.236108 L 12.358283 39.352507 L 12.481997 39.594043 L 12.481997 42.11544 L 12.599819 42.233262 L 12.599819 43.794407 L 12.717641 43.794407 L 12.717641 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9.9606 26.639485 L 9.9606 26.998843 L 10.078423 26.998843 L 10.078423 28.67781 L 10.196245 28.795632 L 10.196245 31.440742 L 10.319958 31.552673 L 10.319958 34.674963 L 10.443672 34.916499 L 10.443672 38.156611 L 10.561494 38.392256 L 10.561494 41.396724 L 10.679316 41.514546 L 10.679316 43.44094 L 10.803029 43.44094 L 10.803029 44.153765 L 10.920852 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.040097 26.639485 L 8.15792 26.751416 L 8.15792 27.835381 L 8.281633 27.959094 L 8.281633 30.233064 L 8.399455 30.4746 L 8.399455 33.59689 L 8.517277 33.838425 L 8.517277 37.072646 L 8.640991 37.314182 L 8.640991 40.31865 L 8.764704 40.554294 L 8.764704 42.716333 L 8.876635 42.834155 L 8.876635 44.035942 L 9.000349 44.035942 L 9.000349 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.237417 26.751416 L 6.237417 27.352309 L 6.36113 27.352309 L 6.36113 29.278703 L 6.478952 29.514348 L 6.478952 32.27728 L 6.602666 32.518816 L 6.602666 35.753037 L 6.720488 35.994573 L 6.720488 39.116863 L 6.83831 39.352507 L 6.83831 41.873904 L 6.962024 42.11544 L 6.962024 43.676585 L 7.079846 43.794407 L 7.079846 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.83831 27.835381 L 6.962024 27.959094 L 6.962024 29.15499 L 7.079846 29.396526 L 7.079846 31.193315 L 7.197668 31.552673 L 7.197668 34.197783 L 7.321381 34.557141 L 7.321381 37.437896 L 7.439204 37.797253 L 7.439204 39.959292 L 7.557026 40.31865 L 7.557026 42.11544 L 7.680739 42.233262 L 7.680739 43.075691 L 7.798562 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.764704 27.717558 L 8.764704 28.194739 L 8.876635 28.318452 L 8.876635 29.873706 L 9.000349 30.233064 L 9.000349 32.395102 L 9.118171 32.75446 L 9.118171 35.275857 L 9.235993 35.635215 L 9.235993 38.515969 L 9.359707 38.751614 L 9.359707 40.913652 L 9.477529 41.155188 L 9.477529 42.474797 L 9.601242 42.59262 L 9.601242 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.561494 27.717558 L 10.679316 27.717558 L 10.679316 28.554097 L 10.803029 28.795632 L 10.803029 30.716135 L 10.920852 31.075493 L 10.920852 33.355354 L 11.038674 33.714712 L 11.038674 36.353931 L 11.162387 36.713289 L 11.162387 39.476221 L 11.28021 39.717756 L 11.28021 41.638259 L 11.398032 41.756082 L 11.398032 42.957869 L 11.521745 42.957869 L 11.521745 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.481997 27.717558 L 12.481997 27.959094 L 12.599819 28.076916 L 12.599819 29.15499 L 12.717641 29.396526 L 12.717641 31.676387 L 12.841355 32.035745 L 12.841355 34.557141 L 12.959177 34.916499 L 12.959177 37.437896 L 13.076999 37.797253 L 13.076999 40.31865 L 13.200713 40.678008 L 13.200713 42.233262 L 13.318535 42.356975 L 13.318535 43.075691 L 13.442248 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.237417 26.751416 L 6.83831 27.835381 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.799985 44.153765 L 4.799985 43.676585 L 4.682163 43.552871 L 4.682163 41.997617 L 4.558449 41.756082 L 4.558449 39.116863 L 4.440627 38.875327 L 4.440627 35.635215 L 4.322805 35.275857 L 4.322805 32.035745 L 4.199091 31.794209 L 4.199091 31.552673 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.480376 27.352309 L 3.480376 27.234487 L 3.604089 27.234487 L 3.604089 27.352309 L 3.721911 27.352309 L 3.721911 27.717558 L 3.839733 27.835381 L 3.839733 28.318452 L 3.963447 28.436274 L 3.963447 29.278703 L 4.075378 29.396526 L 4.075378 30.356777 L 4.199091 30.592422 L 4.199091 31.552673 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.356662 27.717558 L 3.356662 27.959094 L 3.480376 28.076916 L 3.480376 29.396526 L 3.604089 29.514348 L 3.604089 31.912031 L 3.721911 32.27728 L 3.721911 34.674963 L 3.839733 35.034321 L 3.839733 37.67354 L 3.963447 38.032898 L 3.963447 40.554294 L 4.075378 40.79583 L 4.075378 42.233262 L 4.199091 42.474797 L 4.199091 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.159343 27.717558 L 5.283056 27.717558 L 5.283056 28.318452 L 5.400878 28.554097 L 5.400878 30.115242 L 5.518701 30.356777 L 5.518701 32.872283 L 5.642414 33.231641 L 5.642414 35.87675 L 5.760236 36.236108 L 5.760236 38.639683 L 5.878059 38.993149 L 5.878059 41.278901 L 6.001772 41.514546 L 6.001772 42.716333 L 6.119594 42.834155 L 6.119594 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.079846 27.717558 L 7.079846 27.835381 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.720488 44.153765 L 6.720488 44.035942 L 6.602666 43.912229 L 6.602666 42.59262 L 6.478952 42.474797 L 6.478952 40.071223 L 6.36113 39.959292 L 6.36113 36.837002 L 6.237417 36.595466 L 6.237417 33.355354 L 6.119594 33.119709 L 6.119594 30.115242 L 6.001772 29.997419 L 6.001772 27.835381 L 5.878059 27.717558 L 5.878059 26.639485 L 5.760236 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.680739 26.751416 L 7.680739 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.199091 31.552673 L 4.199091 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.121018 27.959094 L 3.121018 28.076916 L 3.23884 28.194739 L 3.23884 31.075493 L 3.356662 31.440742 L 3.356662 36.236108 L 3.480376 36.595466 L 3.480376 40.79583 L 3.604089 41.037366 L 3.604089 43.44094 L 3.721911 43.44094 L 3.721911 43.552871 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.121018 27.959094 L 3.121018 27.717558 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.997304 42.957869 L 2.997304 27.835381 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.322805 26.639485 L 4.322805 26.875129 L 4.440627 26.998843 L 4.440627 28.554097 L 4.558449 28.67781 L 4.558449 31.193315 L 4.682163 31.440742 L 4.682163 34.557141 L 4.799985 34.798677 L 4.799985 38.032898 L 4.923698 38.156611 L 4.923698 41.037366 L 5.041521 41.155188 L 5.041521 43.193513 L 5.159343 43.317227 L 5.159343 44.153765 L 5.283056 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.119594 26.639485 L 6.237417 26.639485 L 6.237417 26.751416 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.121018 27.959094 L 3.121018 28.076916 L 3.23884 28.194739 L 3.23884 29.755884 L 3.356662 29.997419 L 3.356662 32.153567 L 3.480376 32.518816 L 3.480376 35.158035 L 3.604089 35.517393 L 3.604089 38.156611 L 3.721911 38.515969 L 3.721911 40.678008 L 3.839733 40.913652 L 3.839733 42.474797 L 3.963447 42.59262 L 3.963447 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.923698 27.717558 L 5.041521 27.717558 L 5.041521 28.436274 L 5.159343 28.67781 L 5.159343 30.592422 L 5.283056 30.833957 L 5.283056 33.231641 L 5.400878 33.59689 L 5.400878 36.236108 L 5.518701 36.595466 L 5.518701 39.234685 L 5.642414 39.476221 L 5.642414 41.514546 L 5.760236 41.638259 L 5.760236 42.834155 L 5.878059 42.834155 L 5.878059 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.83831 27.717558 L 6.83831 27.835381 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.83831 27.835381 L 7.079846 27.835381 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip10)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1.076801 42.957869 L 1.076801 27.835381 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.717443 42.59262 L 0.717443 28.076916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 46.675161 L 15.239038 45.231839 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 35.393679 L 15.239038 45.231839 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 25.55552 L 15.239038 35.393679 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 25.55552 L 15.239038 23.994375 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 45.231839 L 15.239038 45.956445 L 15.35686 46.19209 L 15.35686 46.557339 L 15.480573 46.675161 L 15.480573 46.916697 L 15.604287 47.158233 L 15.716218 47.393877 L 15.716218 47.51759 L 15.839931 47.753235 L 15.963645 47.994771 L 16.075576 48.236306 L 16.199289 48.477842 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.439402 45.355552 L 19.79876 45.355552 L 19.79876 44.996194 L 19.680937 44.754658 L 19.680937 44.277478 L 19.557224 44.035942 L 19.557224 43.676585 L 19.439402 43.44094 L 19.321579 43.193513 L 19.321579 43.075691 L 19.197866 42.834155 L 19.080044 42.59262 L 18.962221 42.356975 L 18.838508 42.11544 L 18.720686 41.873904 L 16.199289 41.873904 L 16.075576 42.11544 L 15.963645 42.356975 L 15.839931 42.59262 L 15.716218 42.834155 L 15.716218 43.075691 L 15.604287 43.193513 L 15.480573 43.44094 L 15.480573 43.676585 L 15.35686 43.794407 L 15.35686 44.277478 L 15.239038 44.3953 L 15.239038 45.231839 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16.199289 48.477842 L 18.720686 48.477842 L 18.838508 48.236306 L 18.962221 48.118484 L 18.962221 47.994771 L 19.080044 47.753235 L 19.197866 47.635413 L 19.197866 47.51759 L 19.321579 47.276055 L 19.321579 47.158233 L 19.439402 47.034519 L 19.439402 46.916697 L 19.557224 46.798875 L 19.557224 46.557339 L 19.680937 46.315803 L 19.680937 46.074268 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 46.074268 L 19.439402 45.355552 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.60144 26.515771 L 22.196443 26.156413 L 21.359905 26.0327 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.557224 24.23591 L 19.557224 23.994375 L 19.439402 23.752839 L 19.197866 23.275659 L 19.197866 23.034123 L 19.080044 22.798479 L 18.962221 22.674765 L 18.838508 22.556943 L 18.838508 22.439121 L 18.720686 22.315407 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 23.752839 L 19.557224 24.23591 M 22.196443 27.835381 L 21.118369 28.076916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.557224 24.23591 L 19.557224 24.713091 L 19.680937 25.196162 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 25.313984 L 19.680937 25.196162 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.680937 25.55552 L 19.680937 25.196162 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 18.720686 22.315407 L 16.199289 22.315407 L 16.075576 22.556943 L 15.963645 22.674765 L 15.716218 23.157837 L 15.716218 23.393481 L 15.604287 23.635017 L 15.480573 23.752839 L 15.480573 23.994375 L 15.35686 24.23591 L 15.35686 24.595268 L 15.239038 24.836804 L 15.239038 26.274236 L 15.35686 26.515771 L 15.35686 26.875129 L 15.480573 27.116665 L 15.480573 27.234487 L 15.604287 27.476023 L 15.716218 27.717558 L 15.716218 27.959094 L 15.839931 28.076916 L 15.963645 28.318452 L 16.075576 28.554097 L 16.199289 28.795632 L 18.720686 28.795632 L 18.838508 28.554097 L 18.962221 28.318452 L 19.080044 28.076916 L 19.197866 27.959094 L 19.321579 27.717558 L 19.321579 27.476023 L 19.439402 27.234487 L 19.557224 27.116665 L 19.557224 26.639485 L 19.680937 26.515771 L 19.680937 25.914878 L 19.79876 25.673342 L 19.79876 25.55552 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 31.912031 L 19.680937 31.676387 L 19.680937 30.592422 L 19.557224 30.356777 L 19.557224 29.873706 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 35.393679 L 19.79876 35.034321 L 19.680937 34.557141 L 19.680937 33.479067 L 19.557224 33.119709 L 19.557224 32.27728 L 19.439402 31.912031 L 19.321579 31.440742 L 19.321579 31.075493 L 19.197866 30.592422 L 19.080044 30.233064 L 18.962221 29.755884 L 18.838508 29.278703 L 18.720686 28.795632 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 29.638061 L 19.557224 29.873706 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.359905 32.518816 L 22.196443 33.838425 L 21.118369 34.439319 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 33.714712 L 22.196443 33.838425 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 20.872085 L 21.118369 49.797451 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 20.872085 L 19.79876 49.797451 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 25.673342 L 22.196443 27.835381 M 21.118369 23.393481 L 22.196443 26.156413 M 19.79876 46.916697 L 19.680937 46.798875 M 21.118369 43.794407 L 21.359905 43.552871 M 21.60144 44.153765 L 21.719263 44.035942 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 47.393877 L 22.196443 44.513123 L 21.118369 44.035942 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 38.875327 L 19.557224 38.751614 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.680937 40.436472 L 19.680937 39.594043 L 19.557224 39.234685 L 19.557224 38.751614 L 19.680937 38.751614 L 19.79876 38.639683 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 18.720686 41.873904 L 18.838508 41.396724 L 18.962221 41.037366 L 19.197866 40.071223 L 19.321579 39.717756 L 19.321579 39.234685 L 19.557224 38.515969 L 19.557224 37.67354 L 19.680937 37.314182 L 19.680937 36.118286 L 19.79876 35.753037 L 19.79876 35.393679 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16.199289 28.795632 L 16.075576 29.278703 L 15.963645 29.755884 L 15.839931 30.233064 L 15.716218 30.592422 L 15.716218 31.075493 L 15.604287 31.440742 L 15.480573 31.912031 L 15.480573 32.27728 L 15.35686 32.636638 L 15.35686 33.479067 L 15.239038 33.838425 L 15.239038 36.837002 L 15.35686 37.314182 L 15.35686 38.032898 L 15.480573 38.515969 L 15.480573 38.875327 L 15.604287 39.234685 L 15.716218 39.717756 L 15.716218 40.071223 L 15.963645 41.037366 L 16.075576 41.396724 L 16.199289 41.873904 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 39.234685 L 22.196443 40.79583 L 21.118369 42.716333 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip11)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 45.355552 L 19.922473 45.355552 M 32.040493 42.957869 L 31.4396 42.957869 M 28.682559 42.957869 L 28.075774 42.957869 M 32.040493 27.835381 L 31.4396 27.835381 M 28.682559 27.835381 L 28.075774 27.835381 M 28.075774 42.957869 L 27.239236 43.794407 M 28.075774 27.835381 L 27.840129 27.476023 M 23.639765 44.153765 L 23.038872 43.075691 M 25.442446 44.153765 L 24.841553 43.075691 M 22.07862 27.593845 L 22.679514 26.639485 M 23.999123 27.717558 L 24.482195 26.639485 M 25.801804 27.717558 L 26.396807 26.639485 M 27.716416 27.717558 L 27.840129 27.476023 M 27.239236 43.794407 L 26.762056 43.075691 M 26.879878 26.639485 L 27.480771 27.717558 M 24.959375 26.639485 L 25.560268 27.717558 M 23.038872 26.639485 L 23.763479 27.717558 M 22.803227 43.075691 L 22.07862 44.153765 M 24.717839 43.075691 L 23.999123 44.153765 M 26.52052 43.075691 L 25.919626 44.153765 M 14.520322 27.717558 L 15.121216 26.639485 M 21.719263 44.153765 L 21.118369 43.075691 M 13.677893 26.639485 L 14.396609 27.717558 M 15.239038 43.193513 L 14.638144 44.153765 M 8.517277 44.153765 L 8.040097 43.075691 M 10.443672 44.153765 L 9.842778 43.075691 M 12.358283 44.153765 L 11.763281 43.075691 M 14.160964 44.153765 L 13.677893 43.075691 M 9.000349 27.717558 L 9.477529 26.639485 M 10.803029 27.717558 L 11.398032 26.639485 M 12.717641 27.717558 L 13.318535 26.639485 M 11.763281 26.639485 L 12.481997 27.717558 M 9.9606 26.639485 L 10.561494 27.717558 M 8.040097 26.639485 L 8.764704 27.717558 M 7.798562 43.075691 L 7.079846 44.153765 M 9.601242 43.075691 L 9.000349 44.153765 M 11.521745 43.075691 L 10.920852 44.153765 M 13.442248 43.075691 L 12.717641 44.153765 M 4.799985 44.153765 L 4.199091 43.075691 M 3.356662 27.717558 L 3.480376 27.352309 M 5.159343 27.717558 L 5.760236 26.639485 M 7.079846 27.717558 L 7.680739 26.639485 M 6.720488 44.153765 L 6.119594 43.075691 M 2.997304 27.835381 L 3.121018 27.717558 M 3.480376 27.352309 L 4.199091 26.639485 M 2.997304 42.957869 L 3.721911 43.552871 M 4.322805 26.639485 L 4.923698 27.717558 M 6.237417 26.639485 L 6.83831 27.717558 M 4.075378 43.075691 L 3.721911 43.552871 M 5.878059 43.075691 L 5.283056 44.153765 M 3.121018 27.717558 L 3.356662 27.717558 M 3.963447 43.075691 L 4.199091 43.075691 M 4.923698 27.717558 L 5.159343 27.717558 M 5.878059 43.075691 L 6.119594 43.075691 M 6.83831 27.717558 L 7.079846 27.717558 M 7.798562 43.075691 L 8.040097 43.075691 M 8.764704 27.717558 L 9.000349 27.717558 M 9.601242 43.075691 L 9.842778 43.075691 M 10.561494 27.717558 L 10.803029 27.717558 M 11.521745 43.075691 L 11.763281 43.075691 M 12.481997 27.717558 L 12.717641 27.717558 M 13.442248 43.075691 L 13.677893 43.075691 M 14.396609 27.717558 L 14.638144 27.717558 M 22.803227 43.075691 L 23.038872 43.075691 M 23.763479 27.717558 L 23.999123 27.717558 M 24.600017 43.075691 L 24.841553 43.075691 M 25.560268 27.717558 L 25.801804 27.717558 M 26.52052 43.075691 L 26.762056 43.075691 M 27.480771 27.717558 L 27.716416 27.717558 M 2.997304 42.957869 L 1.076801 42.957869 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip12)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.997304 27.835381 L 1.076801 27.835381 L 0.717443 28.076916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip13)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.717443 42.59262 L 1.076801 42.957869 M 15.239038 46.675161 L 16.199289 48.477842 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 46.675161 L 19.79876 46.557339 L 19.680937 46.315803 L 19.680937 45.838623 L 19.557224 45.71491 L 19.557224 45.591196 L 19.439402 45.355552 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.680937 23.876553 L 18.720686 22.315407 M 19.79876 20.872085 L 21.118369 20.872085 M 19.79876 49.797451 L 21.118369 49.797451 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 24.713091 L 21.118369 24.954626 L 21.236191 25.196162 L 21.236191 25.673342 L 21.359905 25.914878 L 21.477727 26.156413 L 21.477727 26.392058 L 21.60144 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 31.676387 L 21.118369 31.794209 L 21.236191 31.912031 L 21.236191 32.27728 L 21.359905 32.395102 L 21.359905 32.518816 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 23.994375 L 16.199289 22.315407 M 21.60144 44.153765 L 21.60144 44.277478 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 40.79583 L 19.79876 40.554294 L 19.680937 40.436472 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 46.675161 L 18.720686 48.477842 M 25.919626 44.153765 L 25.442446 44.153765 M 23.999123 44.153765 L 23.639765 44.153765 M 22.07862 44.153765 L 21.719263 44.153765 M 14.638144 44.153765 L 14.278786 44.153765 M 12.717641 44.153765 L 12.358283 44.153765 M 10.920852 44.153765 L 10.443672 44.153765 M 9.000349 44.153765 L 8.640991 44.153765 M 7.079846 44.153765 L 6.720488 44.153765 M 5.283056 44.153765 L 4.799985 44.153765 M 26.762056 26.639485 L 26.396807 26.639485 M 24.959375 26.639485 L 24.600017 26.639485 M 23.038872 26.639485 L 22.679514 26.639485 M 15.239038 26.639485 L 15.121216 26.639485 M 13.677893 26.639485 L 13.318535 26.639485 M 11.763281 26.639485 L 11.398032 26.639485 M 9.9606 26.639485 L 9.477529 26.639485 M 8.040097 26.639485 L 7.680739 26.639485 M 6.119594 26.639485 L 5.760236 26.639485 M 4.322805 26.639485 L 4.199091 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.482393 299.751501 L 32.040493 299.751501 L 32.040493 326.756364 L 36.482393 326.756364 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.075774 305.636723 L 28.075774 320.75332 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.682559 313.195021 L 28.800381 313.071308 L 28.800381 312.835663 L 28.924094 312.717841 L 28.924094 312.594128 L 29.041916 312.594128 L 29.041916 312.476306 L 29.159739 312.352592 L 29.283452 312.352592 L 29.395383 312.23477 L 29.519097 312.23477 L 29.64281 312.116948 L 30.603061 312.116948 L 30.720884 312.23477 L 30.838706 312.23477 L 30.962419 312.352592 L 31.080242 312.476306 L 31.198064 312.594128 L 31.321777 312.594128 L 31.321777 312.717841 L 31.4396 312.835663 L 31.4396 313.554379 L 31.321777 313.678093 L 31.321777 313.795915 L 31.198064 313.913737 L 31.080242 314.037451 L 30.962419 314.037451 L 30.962419 314.155273 L 30.838706 314.155273 L 30.720884 314.278986 L 30.479348 314.278986 L 30.361526 314.396809 L 29.878455 314.396809 L 29.760632 314.278986 L 29.519097 314.278986 L 29.395383 314.155273 L 29.283452 314.155273 L 29.159739 314.037451 L 29.041916 314.037451 L 29.041916 313.913737 L 28.924094 313.795915 L 28.924094 313.678093 L 28.800381 313.554379 L 28.800381 313.318735 Z M 28.682559 313.195021 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.4396 305.636723 L 31.321777 305.636723 L 31.198064 305.754545 L 29.041916 305.754545 L 28.924094 305.636723 L 28.682559 305.636723 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.682559 320.75332 L 31.4396 320.75332 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.840129 305.395187 L 27.840129 306.231725 L 27.963843 306.355439 L 27.963843 314.155273 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.879878 304.794294 L 26.879878 304.912116 L 26.9977 305.035829 L 26.9977 305.518901 L 27.121413 305.636723 L 27.121413 306.355439 L 27.239236 306.479152 L 27.239236 307.31569 L 27.357058 307.557226 L 27.357058 308.393764 L 27.480771 308.517477 L 27.480771 309.595551 L 27.604485 309.837087 L 27.604485 310.673625 L 27.716416 310.915161 L 27.716416 311.993234 L 27.840129 312.23477 L 27.840129 313.318735 L 27.963843 313.554379 L 27.963843 314.155273 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.879878 313.195021 L 26.879878 304.794294 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.239236 321.713571 L 27.121413 321.713571 L 27.121413 319.798959 L 26.9977 319.675246 L 26.9977 315.474882 L 26.879878 315.35706 L 26.879878 313.195021 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.639765 321.955107 L 23.521943 321.955107 L 23.521943 320.994856 L 23.39823 320.877033 L 23.39823 318.838708 L 23.280408 318.714995 L 23.280408 315.716418 L 23.162585 315.592705 L 23.162585 312.23477 L 23.038872 312.116948 L 23.038872 308.994658 L 22.92105 308.753122 L 22.92105 306.355439 L 22.803227 306.119794 L 22.803227 304.794294 L 22.679514 304.676471 L 22.679514 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.442446 321.955107 L 25.442446 321.595749 L 25.318733 321.477927 L 25.318733 319.798959 L 25.200911 319.675246 L 25.200911 317.036027 L 25.077197 316.794492 L 25.077197 313.554379 L 24.959375 313.436557 L 24.959375 310.196445 L 24.841553 309.954909 L 24.841553 307.074155 L 24.717839 306.83851 L 24.717839 305.153652 L 24.600017 305.035829 L 24.600017 304.440827 L 24.482195 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.879878 313.195021 L 26.879878 311.274518 L 26.762056 311.032983 L 26.762056 308.158119 L 26.638342 308.034406 L 26.638342 305.754545 L 26.52052 305.636723 L 26.52052 304.552758 L 26.396807 304.552758 L 26.396807 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 22.196443 305.636723 L 22.196443 306.591083 L 22.320156 306.714797 L 22.320156 308.6353 L 22.443869 308.876835 L 22.443869 311.392341 L 22.561692 311.751699 L 22.561692 314.396809 L 22.679514 314.756166 L 22.679514 317.277563 L 22.803227 317.636921 L 22.803227 319.557424 L 22.92105 319.675246 L 22.92105 320.75332 L 23.038872 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.999123 305.518901 L 23.999123 305.872367 L 24.122837 305.872367 L 24.122837 307.197868 L 24.240659 307.439404 L 24.240659 309.713373 L 24.358481 309.954909 L 24.358481 312.717841 L 24.482195 312.959377 L 24.482195 315.592705 L 24.600017 315.83424 L 24.600017 318.355637 L 24.717839 318.47935 L 24.717839 320.27614 L 24.841553 320.27614 L 24.841553 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.801804 305.518901 L 25.919626 305.518901 L 25.919626 306.231725 L 26.037449 306.355439 L 26.037449 307.916584 L 26.161162 308.158119 L 26.161162 310.797338 L 26.278984 311.156696 L 26.278984 313.678093 L 26.396807 314.037451 L 26.396807 316.794492 L 26.52052 317.15385 L 26.52052 319.074353 L 26.638342 319.315888 L 26.638342 320.517675 L 26.762056 320.635498 L 26.762056 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.716416 305.518901 L 27.716416 305.636723 L 27.840129 305.754545 L 27.840129 306.714797 L 27.963843 306.83851 L 27.963843 308.034406 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.762056 304.440827 L 26.879878 304.440827 L 26.879878 304.794294 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24.959375 304.440827 L 24.959375 304.794294 L 25.077197 304.794294 L 25.077197 306.355439 L 25.200911 306.479152 L 25.200911 308.994658 L 25.318733 309.236193 L 25.318733 312.352592 L 25.442446 312.594128 L 25.442446 315.83424 L 25.560268 316.075776 L 25.560268 318.95653 L 25.678091 319.074353 L 25.678091 321.118569 L 25.801804 321.118569 L 25.801804 321.955107 L 25.919626 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.038872 304.440827 L 23.038872 304.552758 L 23.162585 304.552758 L 23.162585 305.636723 L 23.280408 305.754545 L 23.280408 307.916584 L 23.39823 308.158119 L 23.39823 311.032983 L 23.521943 311.274518 L 23.521943 314.514631 L 23.639765 314.756166 L 23.639765 317.872565 L 23.763479 317.996279 L 23.763479 320.393962 L 23.881301 320.517675 L 23.881301 321.837285 L 23.999123 321.837285 L 23.999123 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.837085 319.315888 L 21.837085 319.675246 L 21.960798 319.798959 L 21.960798 321.477927 L 22.07862 321.595749 L 22.07862 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.60144 312.116948 L 21.60144 313.318735 L 21.719263 313.678093 L 21.719263 316.676669 L 21.837085 317.036027 L 21.837085 318.114101 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.359905 305.872367 L 21.359905 306.83851 L 21.477727 307.074155 L 21.477727 309.954909 L 21.60144 310.314267 L 21.60144 310.673625 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.960798 305.754545 L 21.960798 306.83851 L 22.07862 307.074155 L 22.07862 309.118371 L 22.196443 309.477729 L 22.196443 311.751699 L 22.320156 312.116948 L 22.320156 314.873989 L 22.443869 315.233347 L 22.443869 317.636921 L 22.561692 317.996279 L 22.561692 319.798959 L 22.679514 320.034604 L 22.679514 320.877033 L 22.803227 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.763479 305.518901 L 23.763479 305.996081 L 23.881301 306.119794 L 23.881301 307.557226 L 23.999123 307.798762 L 23.999123 309.837087 L 24.122837 310.196445 L 24.122837 313.071308 L 24.240659 313.436557 L 24.240659 315.957954 L 24.358481 316.317311 L 24.358481 318.47935 L 24.482195 318.714995 L 24.482195 320.393962 L 24.600017 320.517675 L 24.600017 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.560268 305.518901 L 25.678091 305.636723 L 25.678091 306.479152 L 25.801804 306.591083 L 25.801804 308.275942 L 25.919626 308.6353 L 25.919626 310.915161 L 26.037449 311.274518 L 26.037449 314.155273 L 26.161162 314.638344 L 26.161162 317.036027 L 26.278984 317.277563 L 26.278984 319.192175 L 26.396807 319.439602 L 26.396807 320.75332 L 26.52052 320.75332 L 26.52052 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.480771 305.518901 L 27.480771 305.754545 L 27.604485 305.754545 L 27.604485 307.074155 L 27.716416 307.197868 L 27.716416 309.236193 L 27.840129 309.477729 L 27.840129 312.23477 L 27.963843 312.352592 L 27.963843 314.155273 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 304.552758 L 15.239038 304.440827 L 15.121216 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.638144 305.518901 L 14.638144 305.996081 L 14.761858 306.119794 L 14.761858 307.557226 L 14.87968 307.798762 L 14.87968 310.314267 L 14.997502 310.555803 L 14.997502 313.195021 L 15.121216 313.436557 L 15.121216 316.193598 L 15.239038 316.435134 L 15.239038 317.036027 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.359905 317.395385 L 21.359905 314.638344 L 21.236191 314.278986 L 21.236191 312.23477 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.719263 321.955107 L 21.719263 321.837285 L 21.60144 321.713571 L 21.60144 320.393962 L 21.477727 320.158317 L 21.477727 319.916782 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 13.677893 304.440827 L 13.677893 304.676471 L 13.801606 304.676471 L 13.801606 305.996081 L 13.919428 306.119794 L 13.919428 308.517477 L 14.037251 308.6353 L 14.037251 311.751699 L 14.160964 311.993234 L 14.160964 315.233347 L 14.278786 315.474882 L 14.278786 318.355637 L 14.396609 318.591281 L 14.396609 320.75332 L 14.520322 320.877033 L 14.520322 321.955107 L 14.638144 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.396609 305.518901 L 14.396609 306.231725 L 14.520322 306.355439 L 14.520322 308.034406 L 14.638144 308.275942 L 14.638144 310.43798 L 14.761858 310.673625 L 14.761858 313.436557 L 14.87968 313.795915 L 14.87968 316.435134 L 14.997502 316.794492 L 14.997502 318.95653 L 15.121216 319.192175 L 15.121216 320.517675 L 15.239038 320.635498 L 15.239038 320.75332 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.640991 321.955107 L 8.517277 321.955107 L 8.517277 321.236391 L 8.399455 321.118569 L 8.399455 319.074353 L 8.281633 318.838708 L 8.281633 315.957954 L 8.15792 315.592705 L 8.15792 312.717841 L 8.040097 312.352592 L 8.040097 309.236193 L 7.922275 308.876835 L 7.922275 306.355439 L 7.798562 306.119794 L 7.798562 304.912116 L 7.680739 304.794294 L 7.680739 304.552758 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.443672 321.955107 L 10.443672 321.595749 L 10.319958 321.595749 L 10.319958 319.916782 L 10.196245 319.798959 L 10.196245 317.15385 L 10.078423 317.036027 L 10.078423 313.795915 L 9.9606 313.554379 L 9.9606 310.314267 L 9.842778 310.196445 L 9.842778 307.31569 L 9.719065 307.197868 L 9.719065 305.277365 L 9.601242 305.153652 L 9.601242 304.440827 L 9.477529 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.358283 321.955107 L 12.240461 321.837285 L 12.240461 320.75332 L 12.122639 320.635498 L 12.122639 318.355637 L 11.998925 318.114101 L 11.998925 315.115524 L 11.881103 314.873989 L 11.881103 311.639767 L 11.763281 311.392341 L 11.763281 308.393764 L 11.639568 308.158119 L 11.639568 305.872367 L 11.521745 305.754545 L 11.521745 304.552758 L 11.398032 304.552758 L 11.398032 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.278786 321.955107 L 14.160964 321.955107 L 14.160964 321.354213 L 14.037251 321.236391 L 14.037251 319.315888 L 13.919428 319.192175 L 13.919428 316.435134 L 13.801606 316.193598 L 13.801606 312.959377 L 13.677893 312.717841 L 13.677893 309.595551 L 13.560071 309.354015 L 13.560071 306.714797 L 13.442248 306.591083 L 13.442248 304.912116 L 13.318535 304.794294 L 13.318535 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.079846 305.636723 L 7.680739 304.552758 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.079846 305.636723 L 7.197668 305.754545 L 7.197668 306.83851 L 7.321381 306.956332 L 7.321381 308.994658 L 7.439204 309.236193 L 7.439204 311.875412 L 7.557026 312.23477 L 7.557026 314.997702 L 7.680739 315.35706 L 7.680739 317.513208 L 7.798562 317.872565 L 7.798562 319.675246 L 7.922275 319.916782 L 7.922275 320.877033 L 8.040097 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9.000349 305.518901 L 9.000349 305.996081 L 9.118171 306.119794 L 9.118171 307.439404 L 9.235993 307.675048 L 9.235993 309.713373 L 9.359707 310.072731 L 9.359707 312.959377 L 9.477529 313.318735 L 9.477529 315.83424 L 9.601242 316.193598 L 9.601242 318.591281 L 9.719065 318.838708 L 9.719065 320.27614 L 9.842778 320.393962 L 9.842778 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.803029 305.518901 L 10.920852 305.518901 L 10.920852 306.355439 L 11.038674 306.591083 L 11.038674 308.275942 L 11.162387 308.517477 L 11.162387 310.797338 L 11.28021 311.156696 L 11.28021 314.037451 L 11.398032 314.396809 L 11.398032 316.912314 L 11.521745 317.15385 L 11.521745 319.315888 L 11.639568 319.557424 L 11.639568 320.635498 L 11.763281 320.75332 L 11.763281 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.717641 305.518901 L 12.717641 305.636723 L 12.841355 305.754545 L 12.841355 306.956332 L 12.959177 307.197868 L 12.959177 309.118371 L 13.076999 309.477729 L 13.076999 311.875412 L 13.200713 312.23477 L 13.200713 315.115524 L 13.318535 315.474882 L 13.318535 317.754743 L 13.442248 318.114101 L 13.442248 319.916782 L 13.560071 320.158317 L 13.560071 320.877033 L 13.677893 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11.763281 304.440827 L 11.881103 304.440827 L 11.881103 305.277365 L 11.998925 305.395187 L 11.998925 307.439404 L 12.122639 307.557226 L 12.122639 310.43798 L 12.240461 310.673625 L 12.240461 313.913737 L 12.358283 314.155273 L 12.358283 317.277563 L 12.481997 317.513208 L 12.481997 320.034604 L 12.599819 320.158317 L 12.599819 321.595749 L 12.717641 321.713571 L 12.717641 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9.9606 304.440827 L 9.9606 304.794294 L 10.078423 304.912116 L 10.078423 306.479152 L 10.196245 306.714797 L 10.196245 309.236193 L 10.319958 309.477729 L 10.319958 312.594128 L 10.443672 312.835663 L 10.443672 316.075776 L 10.561494 316.317311 L 10.561494 319.192175 L 10.679316 319.439602 L 10.679316 321.236391 L 10.803029 321.354213 L 10.803029 321.955107 L 10.920852 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.040097 304.440827 L 8.040097 304.552758 L 8.15792 304.552758 L 8.15792 305.754545 L 8.281633 305.872367 L 8.281633 308.158119 L 8.399455 308.275942 L 8.399455 311.516054 L 8.517277 311.751699 L 8.517277 314.997702 L 8.640991 315.233347 L 8.640991 318.231923 L 8.764704 318.355637 L 8.764704 320.635498 L 8.876635 320.75332 L 8.876635 321.837285 L 9.000349 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.237417 304.552758 L 6.237417 305.153652 L 6.36113 305.277365 L 6.36113 307.197868 L 6.478952 307.31569 L 6.478952 310.196445 L 6.602666 310.314267 L 6.602666 313.554379 L 6.720488 313.795915 L 6.720488 317.036027 L 6.83831 317.15385 L 6.83831 319.798959 L 6.962024 319.916782 L 6.962024 321.595749 L 7.079846 321.595749 L 7.079846 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.83831 305.636723 L 6.83831 305.754545 L 6.962024 305.754545 L 6.962024 307.074155 L 7.079846 307.197868 L 7.079846 309.118371 L 7.197668 309.477729 L 7.197668 312.116948 L 7.321381 312.476306 L 7.321381 315.233347 L 7.439204 315.592705 L 7.439204 317.872565 L 7.557026 318.114101 L 7.557026 319.916782 L 7.680739 320.158317 L 7.680739 320.877033 L 7.798562 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.764704 305.518901 L 8.764704 305.996081 L 8.876635 306.119794 L 8.876635 307.798762 L 9.000349 308.034406 L 9.000349 310.196445 L 9.118171 310.555803 L 9.118171 313.071308 L 9.235993 313.436557 L 9.235993 316.317311 L 9.359707 316.676669 L 9.359707 318.714995 L 9.477529 318.95653 L 9.477529 320.393962 L 9.601242 320.517675 L 9.601242 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.561494 305.518901 L 10.561494 305.636723 L 10.679316 305.636723 L 10.679316 306.479152 L 10.803029 306.591083 L 10.803029 308.6353 L 10.920852 308.876835 L 10.920852 311.274518 L 11.038674 311.639767 L 11.038674 314.155273 L 11.162387 314.638344 L 11.162387 317.277563 L 11.28021 317.636921 L 11.28021 319.439602 L 11.398032 319.675246 L 11.398032 320.75332 L 11.521745 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.481997 305.518901 L 12.481997 305.754545 L 12.599819 305.872367 L 12.599819 307.074155 L 12.717641 307.31569 L 12.717641 309.595551 L 12.841355 309.837087 L 12.841355 312.352592 L 12.959177 312.717841 L 12.959177 315.35706 L 13.076999 315.716418 L 13.076999 318.231923 L 13.200713 318.47935 L 13.200713 320.034604 L 13.318535 320.27614 L 13.318535 320.877033 L 13.442248 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.237417 304.552758 L 6.83831 305.636723 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.799985 321.955107 L 4.799985 321.477927 L 4.682163 321.354213 L 4.682163 319.798959 L 4.558449 319.557424 L 4.558449 316.912314 L 4.440627 316.676669 L 4.440627 313.436557 L 4.322805 313.195021 L 4.322805 309.954909 L 4.199091 309.713373 L 4.199091 309.477729 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.480376 305.277365 L 3.480376 305.153652 L 3.604089 305.153652 L 3.721911 305.277365 L 3.721911 305.518901 L 3.839733 305.636723 L 3.839733 306.119794 L 3.963447 306.231725 L 3.963447 307.074155 L 4.075378 307.31569 L 4.075378 308.275942 L 4.199091 308.517477 L 4.199091 309.477729 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.356662 305.518901 L 3.356662 305.872367 L 3.480376 305.996081 L 3.480376 307.197868 L 3.604089 307.439404 L 3.604089 309.713373 L 3.721911 310.072731 L 3.721911 312.594128 L 3.839733 312.959377 L 3.839733 315.474882 L 3.963447 315.83424 L 3.963447 318.355637 L 4.075378 318.591281 L 4.075378 320.158317 L 4.199091 320.27614 L 4.199091 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.159343 305.518901 L 5.283056 305.518901 L 5.283056 306.231725 L 5.400878 306.355439 L 5.400878 307.916584 L 5.518701 308.275942 L 5.518701 310.797338 L 5.642414 311.156696 L 5.642414 313.678093 L 5.760236 314.037451 L 5.760236 316.552956 L 5.878059 316.912314 L 5.878059 319.192175 L 6.001772 319.315888 L 6.001772 320.517675 L 6.119594 320.635498 L 6.119594 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.079846 305.518901 L 7.079846 305.636723 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.720488 321.955107 L 6.720488 321.837285 L 6.602666 321.837285 L 6.602666 320.517675 L 6.478952 320.393962 L 6.478952 317.996279 L 6.36113 317.754743 L 6.36113 314.756166 L 6.237417 314.514631 L 6.237417 311.156696 L 6.119594 311.032983 L 6.119594 308.034406 L 6.001772 307.916584 L 6.001772 305.636723 L 5.878059 305.636723 L 5.878059 304.552758 L 5.760236 304.552758 L 5.760236 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.680739 304.552758 L 7.680739 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.199091 309.477729 L 4.199091 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.121018 305.872367 L 3.121018 305.996081 L 3.23884 306.119794 L 3.23884 308.994658 L 3.356662 309.236193 L 3.356662 314.037451 L 3.480376 314.396809 L 3.480376 318.714995 L 3.604089 318.95653 L 3.604089 321.236391 L 3.721911 321.354213 L 3.721911 321.477927 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.121018 305.872367 L 3.121018 305.518901 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.997304 320.75332 L 2.997304 305.636723 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.322805 304.440827 L 4.322805 304.794294 L 4.440627 304.794294 L 4.440627 306.355439 L 4.558449 306.479152 L 4.558449 308.994658 L 4.682163 309.236193 L 4.682163 312.352592 L 4.799985 312.594128 L 4.799985 315.83424 L 4.923698 316.075776 L 4.923698 318.95653 L 5.041521 319.074353 L 5.041521 321.118569 L 5.159343 321.118569 L 5.159343 321.955107 L 5.283056 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.119594 304.440827 L 6.237417 304.440827 L 6.237417 304.552758 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.121018 305.872367 L 3.121018 305.996081 L 3.23884 306.119794 L 3.23884 307.557226 L 3.356662 307.798762 L 3.356662 310.072731 L 3.480376 310.314267 L 3.480376 312.959377 L 3.604089 313.318735 L 3.604089 316.075776 L 3.721911 316.317311 L 3.721911 318.591281 L 3.839733 318.838708 L 3.839733 320.27614 L 3.963447 320.393962 L 3.963447 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.923698 305.518901 L 5.041521 305.518901 L 5.041521 306.355439 L 5.159343 306.479152 L 5.159343 308.393764 L 5.283056 308.6353 L 5.283056 311.156696 L 5.400878 311.392341 L 5.400878 314.155273 L 5.518701 314.396809 L 5.518701 317.15385 L 5.642414 317.395385 L 5.642414 319.439602 L 5.760236 319.557424 L 5.760236 320.635498 L 5.878059 320.75332 L 5.878059 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.83831 305.518901 L 6.83831 305.636723 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.83831 305.636723 L 7.079846 305.636723 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip14)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1.076801 320.75332 L 1.076801 305.636723 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.717443 320.517675 L 0.717443 305.996081 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 324.594326 L 15.239038 323.033181 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 313.195021 L 15.239038 323.033181 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 303.356862 L 15.239038 313.195021 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 303.356862 L 15.239038 301.913539 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 323.033181 L 15.239038 323.751897 L 15.35686 323.993432 L 15.35686 324.35279 L 15.480573 324.594326 L 15.480573 324.835861 L 15.604287 324.959575 L 15.716218 325.195219 L 15.716218 325.436755 L 15.963645 325.913935 L 16.075576 326.037649 L 16.199289 326.279184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.439402 323.274716 L 19.79876 323.274716 L 19.79876 322.915358 L 19.680937 322.673823 L 19.680937 322.072929 L 19.557224 321.955107 L 19.557224 321.477927 L 19.439402 321.354213 L 19.321579 321.118569 L 19.321579 320.877033 L 19.197866 320.635498 L 19.080044 320.517675 L 18.962221 320.27614 L 18.838508 320.034604 L 18.720686 319.798959 L 16.199289 319.798959 L 16.075576 320.034604 L 15.963645 320.27614 L 15.839931 320.517675 L 15.716218 320.635498 L 15.716218 320.877033 L 15.604287 321.118569 L 15.480573 321.354213 L 15.480573 321.477927 L 15.35686 321.713571 L 15.35686 322.072929 L 15.239038 322.314465 L 15.239038 323.033181 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16.199289 326.279184 L 18.720686 326.279184 L 18.962221 326.037649 L 18.962221 325.796113 L 19.080044 325.678291 L 19.197866 325.554577 L 19.197866 325.318933 L 19.321579 325.195219 L 19.321579 325.071506 L 19.439402 324.959575 L 19.439402 324.712148 L 19.557224 324.594326 L 19.557224 324.476504 L 19.680937 324.234968 L 19.680937 323.87561 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 323.87561 L 19.439402 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.60144 304.317114 L 22.196443 304.075578 L 21.359905 303.834042 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.557224 302.037253 L 19.557224 301.913539 L 19.439402 301.677895 L 19.321579 301.436359 L 19.197866 301.194823 L 19.197866 300.959179 L 18.962221 300.476108 L 18.838508 300.352394 L 18.838508 300.234572 L 18.720686 300.11675 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 301.677895 L 19.557224 302.155075 M 22.196443 305.636723 L 21.118369 305.996081 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.557224 302.037253 L 19.557224 302.514433 L 19.680937 302.997504 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 303.115326 L 19.680937 303.115326 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.680937 303.356862 L 19.680937 302.997504 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 18.720686 300.11675 L 16.199289 300.11675 L 16.075576 300.352394 L 15.963645 300.59393 L 15.839931 300.835466 L 15.716218 301.07111 L 15.716218 301.194823 L 15.604287 301.436359 L 15.480573 301.677895 L 15.480573 301.913539 L 15.35686 302.037253 L 15.35686 302.396611 L 15.239038 302.638146 L 15.239038 304.1934 L 15.35686 304.317114 L 15.35686 304.794294 L 15.480573 304.912116 L 15.480573 305.153652 L 15.604287 305.395187 L 15.716218 305.518901 L 15.716218 305.754545 L 15.839931 305.996081 L 15.963645 306.231725 L 16.075576 306.479152 L 16.199289 306.714797 L 18.720686 306.714797 L 19.080044 305.996081 L 19.197866 305.754545 L 19.321579 305.518901 L 19.321579 305.395187 L 19.557224 304.912116 L 19.557224 304.552758 L 19.680937 304.317114 L 19.680937 303.834042 L 19.79876 303.592507 L 19.79876 303.356862 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 309.837087 L 19.680937 309.595551 L 19.680937 308.517477 L 19.557224 308.275942 L 19.557224 307.798762 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 313.195021 L 19.79876 312.835663 L 19.680937 312.476306 L 19.680937 311.274518 L 19.557224 310.915161 L 19.557224 310.072731 L 19.321579 309.354015 L 19.321579 308.876835 L 19.197866 308.517477 L 19.080044 308.034406 L 18.962221 307.557226 L 18.838508 307.197868 L 18.720686 306.714797 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 307.557226 L 19.557224 307.798762 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.359905 310.43798 L 22.196443 311.751699 L 21.118369 312.352592 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 311.516054 L 22.196443 311.751699 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 298.79714 L 21.118369 327.716616 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 298.79714 L 19.79876 327.716616 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 303.592507 L 22.196443 305.636723 M 21.118369 301.194823 L 22.196443 304.075578 M 19.79876 324.835861 L 19.680937 324.712148 M 21.118369 321.595749 L 21.359905 321.477927 M 21.60144 321.955107 L 21.719263 321.837285 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 325.195219 L 22.196443 322.438178 L 21.118369 321.837285 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 316.794492 L 19.557224 316.676669 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.680937 318.231923 L 19.680937 317.513208 L 19.557224 317.036027 L 19.557224 316.676669 L 19.680937 316.552956 L 19.79876 316.552956 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 18.720686 319.798959 L 18.962221 318.838708 L 19.080044 318.355637 L 19.197866 317.996279 L 19.321579 317.513208 L 19.321579 317.15385 L 19.439402 316.676669 L 19.557224 316.317311 L 19.557224 315.474882 L 19.680937 315.115524 L 19.680937 314.037451 L 19.79876 313.554379 L 19.79876 313.195021 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16.199289 306.714797 L 16.075576 307.197868 L 15.963645 307.557226 L 15.716218 308.517477 L 15.716218 308.876835 L 15.604287 309.354015 L 15.480573 309.713373 L 15.480573 310.072731 L 15.35686 310.555803 L 15.35686 311.274518 L 15.239038 311.751699 L 15.239038 314.756166 L 15.35686 315.115524 L 15.35686 315.957954 L 15.480573 316.317311 L 15.480573 316.676669 L 15.604287 317.15385 L 15.716218 317.513208 L 15.716218 317.996279 L 15.839931 318.355637 L 15.963645 318.838708 L 16.075576 319.315888 L 16.199289 319.798959 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 317.036027 L 22.196443 318.714995 L 21.118369 320.517675 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip15)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 323.274716 L 19.922473 323.274716 M 32.040493 320.75332 L 31.4396 320.75332 M 28.682559 320.75332 L 28.075774 320.75332 M 32.040493 305.636723 L 31.4396 305.636723 M 28.682559 305.636723 L 28.075774 305.636723 M 28.075774 320.75332 L 27.239236 321.713571 M 28.075774 305.636723 L 27.840129 305.395187 M 23.639765 321.955107 L 23.038872 320.877033 M 25.442446 321.955107 L 24.841553 320.877033 M 22.07862 305.518901 L 22.679514 304.440827 M 23.999123 305.518901 L 24.482195 304.440827 M 25.801804 305.518901 L 26.396807 304.440827 M 27.716416 305.518901 L 27.840129 305.395187 M 27.239236 321.713571 L 26.762056 320.877033 M 26.879878 304.440827 L 27.480771 305.518901 M 24.959375 304.440827 L 25.560268 305.518901 M 23.038872 304.440827 L 23.763479 305.518901 M 22.803227 320.877033 L 22.07862 321.955107 M 24.717839 320.877033 L 23.999123 321.955107 M 26.52052 320.877033 L 25.919626 321.955107 M 14.520322 305.518901 L 15.121216 304.440827 M 21.719263 321.955107 L 21.118369 320.994856 M 13.677893 304.440827 L 14.396609 305.518901 M 15.239038 320.994856 L 14.638144 321.955107 M 8.517277 321.955107 L 8.040097 320.877033 M 10.443672 321.955107 L 9.842778 320.877033 M 12.358283 321.955107 L 11.763281 320.877033 M 14.160964 321.955107 L 13.677893 320.877033 M 9.000349 305.518901 L 9.477529 304.440827 M 10.803029 305.518901 L 11.398032 304.440827 M 12.717641 305.518901 L 13.318535 304.440827 M 11.763281 304.440827 L 12.481997 305.518901 M 9.9606 304.440827 L 10.561494 305.518901 M 8.040097 304.440827 L 8.764704 305.518901 M 7.798562 320.877033 L 7.079846 321.955107 M 9.601242 320.877033 L 9.000349 321.955107 M 11.521745 320.877033 L 10.920852 321.955107 M 13.442248 320.877033 L 12.717641 321.955107 M 4.799985 321.955107 L 4.199091 320.877033 M 3.356662 305.518901 L 3.480376 305.277365 M 5.159343 305.518901 L 5.760236 304.440827 M 7.079846 305.518901 L 7.680739 304.440827 M 6.720488 321.955107 L 6.119594 320.877033 M 2.997304 305.636723 L 3.121018 305.518901 M 3.480376 305.153652 L 4.199091 304.440827 M 2.997304 320.75332 L 3.721911 321.477927 M 4.322805 304.440827 L 4.923698 305.518901 M 6.237417 304.440827 L 6.83831 305.518901 M 4.075378 320.877033 L 3.721911 321.477927 M 5.878059 320.877033 L 5.283056 321.955107 M 3.121018 305.518901 L 3.356662 305.518901 M 3.963447 320.877033 L 4.199091 320.877033 M 4.923698 305.518901 L 5.159343 305.518901 M 5.878059 320.877033 L 6.119594 320.877033 M 6.83831 305.518901 L 7.079846 305.518901 M 7.798562 320.877033 L 8.040097 320.877033 M 8.764704 305.518901 L 9.000349 305.518901 M 9.601242 320.877033 L 9.842778 320.877033 M 10.561494 305.518901 L 10.803029 305.518901 M 11.521745 320.877033 L 11.763281 320.877033 M 12.481997 305.518901 L 12.717641 305.518901 M 13.442248 320.877033 L 13.677893 320.877033 M 14.396609 305.518901 L 14.638144 305.518901 M 22.803227 320.877033 L 23.038872 320.877033 M 23.763479 305.518901 L 23.999123 305.518901 M 24.600017 320.877033 L 24.841553 320.877033 M 25.560268 305.518901 L 25.801804 305.518901 M 26.52052 320.877033 L 26.762056 320.877033 M 27.480771 305.518901 L 27.716416 305.518901 M 2.997304 320.75332 L 1.076801 320.75332 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip16)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.997304 305.636723 L 1.076801 305.636723 L 0.717443 305.996081 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip17)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.717443 320.517675 L 1.076801 320.75332 M 15.239038 324.594326 L 16.199289 326.279184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 324.594326 L 19.79876 324.35279 L 19.680937 324.234968 L 19.680937 323.751897 L 19.557224 323.634074 L 19.557224 323.392539 L 19.439402 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.680937 301.795717 L 18.720686 300.11675 M 19.79876 298.79714 L 21.118369 298.79714 M 19.79876 327.716616 L 21.118369 327.716616 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 302.638146 L 21.118369 302.873791 L 21.236191 303.115326 L 21.236191 303.592507 L 21.359905 303.834042 L 21.477727 304.075578 L 21.477727 304.317114 L 21.60144 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 309.595551 L 21.118369 309.713373 L 21.236191 309.837087 L 21.236191 310.196445 L 21.359905 310.314267 L 21.359905 310.43798 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 301.913539 L 16.199289 300.11675 M 21.60144 321.955107 L 21.60144 322.072929 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 318.591281 L 19.79876 318.47935 L 19.680937 318.231923 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 324.594326 L 18.720686 326.279184 M 25.919626 321.955107 L 25.442446 321.955107 M 23.999123 321.955107 L 23.639765 321.955107 M 22.07862 321.955107 L 21.719263 321.955107 M 14.638144 321.955107 L 14.278786 321.955107 M 12.717641 321.955107 L 12.358283 321.955107 M 10.920852 321.955107 L 10.443672 321.955107 M 9.000349 321.955107 L 8.640991 321.955107 M 7.079846 321.955107 L 6.720488 321.955107 M 5.283056 321.955107 L 4.799985 321.955107 M 26.762056 304.440827 L 26.396807 304.440827 M 24.959375 304.440827 L 24.600017 304.440827 M 23.038872 304.440827 L 22.679514 304.440827 M 15.239038 304.440827 L 15.121216 304.440827 M 13.677893 304.440827 L 13.318535 304.440827 M 11.763281 304.440827 L 11.398032 304.440827 M 9.9606 304.440827 L 9.477529 304.440827 M 8.040097 304.440827 L 7.680739 304.440827 M 6.119594 304.440827 L 5.760236 304.440827 M 4.322805 304.440827 L 4.199091 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.395666 173.752368 L 314.395666 170.158789 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.395666 173.752368 L 314.395666 195.478794 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.395666 170.158789 L 314.283735 170.158789 M 314.283735 195.478794 L 314.395666 195.478794 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.283735 191.75561 L 314.395666 191.75561 M 314.395666 173.752368 L 314.283735 173.752368 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip18)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.283735 347.275112 L 314.283735 1.313588 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 41.997617 L 277.558534 41.873904 L 278.159428 41.514546 L 278.642499 40.913652 L 278.878143 40.31865 L 278.878143 39.594043 L 278.642499 38.875327 L 278.159428 38.392256 L 277.558534 38.032898 L 276.839818 37.915076 L 276.121102 38.032898 L 275.520209 38.392256 L 275.037138 38.875327 L 274.801493 39.594043 L 274.801493 40.31865 L 275.037138 40.913652 L 275.520209 41.514546 L 276.121102 41.873904 Z M 276.839818 41.997617 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 110.034086 L 277.558534 109.916263 L 278.159428 109.556905 L 278.642499 108.956012 L 278.878143 108.355118 L 278.878143 107.636402 L 278.642499 106.911796 L 278.159428 106.440506 L 277.558534 106.075257 L 276.839818 105.957435 L 276.121102 106.075257 L 275.520209 106.440506 L 275.037138 106.911796 L 274.801493 107.636402 L 274.801493 108.355118 L 275.037138 108.956012 L 275.520209 109.556905 L 276.121102 109.916263 Z M 276.839818 110.034086 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 67.435445 L 277.558534 67.317623 L 278.159428 66.958265 L 278.642499 66.357371 L 278.878143 65.756478 L 278.878143 65.037762 L 278.642499 64.313155 L 278.159428 63.835975 L 277.558534 63.476617 L 276.839818 63.352903 L 276.121102 63.476617 L 275.520209 63.835975 L 275.037138 64.313155 L 274.801493 65.037762 L 274.801493 65.756478 L 275.037138 66.357371 L 275.520209 66.958265 L 276.121102 67.317623 Z M 276.839818 67.435445 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 58.916895 L 277.558534 58.799073 L 278.159428 58.439715 L 278.642499 57.838821 L 278.878143 57.232036 L 278.878143 56.513321 L 278.642499 55.794605 L 278.159428 55.317425 L 277.558534 54.958067 L 276.839818 54.834353 L 276.121102 54.958067 L 275.520209 55.317425 L 275.037138 55.794605 L 274.801493 56.513321 L 274.801493 57.232036 L 275.037138 57.838821 L 275.520209 58.439715 L 276.121102 58.799073 Z M 276.839818 58.916895 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 75.959886 L 277.558534 75.836172 L 278.159428 75.476815 L 278.642499 74.875921 L 278.878143 74.275027 L 278.878143 73.556312 L 278.642499 72.837596 L 278.159428 72.354524 L 277.558534 71.995167 L 276.839818 71.877344 L 276.121102 71.995167 L 275.520209 72.354524 L 275.037138 72.837596 L 274.801493 73.556312 L 274.801493 74.275027 L 275.037138 74.875921 L 275.520209 75.476815 L 276.121102 75.836172 Z M 276.839818 75.959886 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 92.996986 L 277.558534 92.873272 L 278.159428 92.513914 L 278.642499 91.913021 L 278.878143 91.318018 L 278.878143 90.593411 L 278.642499 89.874696 L 278.159428 89.397515 L 277.558534 89.032266 L 276.839818 88.914444 L 276.121102 89.032266 L 275.520209 89.397515 L 275.037138 89.874696 L 274.801493 90.593411 L 274.801493 91.318018 L 275.037138 91.913021 L 275.520209 92.513914 L 276.121102 92.873272 Z M 276.839818 92.996986 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 84.478436 L 277.558534 84.354722 L 278.159428 83.995365 L 278.642499 83.394471 L 278.878143 82.799468 L 278.878143 82.074862 L 278.642499 81.356146 L 278.159428 80.873074 L 277.558534 80.513717 L 276.839818 80.395894 L 276.121102 80.513717 L 275.520209 80.873074 L 275.037138 81.356146 L 274.801493 82.074862 L 274.801493 82.799468 L 275.037138 83.394471 L 275.520209 83.995365 L 276.121102 84.354722 Z M 276.839818 84.478436 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 50.392454 L 277.558534 50.274632 L 278.159428 49.915274 L 278.642499 49.31438 L 278.878143 48.713487 L 278.878143 47.994771 L 278.642499 47.276055 L 278.159428 46.798875 L 277.558534 46.439517 L 276.839818 46.315803 L 276.121102 46.439517 L 275.520209 46.798875 L 275.037138 47.276055 L 274.801493 47.994771 L 274.801493 48.713487 L 275.037138 49.31438 L 275.520209 49.915274 L 276.121102 50.274632 Z M 276.839818 50.392454 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.604174 101.515536 L 277.32289 101.397713 L 277.923783 101.032464 L 278.395072 100.437462 L 278.642499 99.836568 L 278.642499 99.117853 L 278.395072 98.393246 L 277.923783 97.916065 L 277.32289 97.556707 L 276.604174 97.438885 L 275.879567 97.556707 L 275.278673 97.916065 L 274.801493 98.393246 L 274.559957 99.117853 L 274.559957 99.836568 L 274.801493 100.437462 L 275.278673 101.032464 L 275.879567 101.397713 Z M 276.604174 101.515536 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 33.479067 L 277.558534 33.355354 L 278.159428 32.995996 L 278.642499 32.395102 L 278.878143 31.794209 L 278.878143 31.075493 L 278.642499 30.356777 L 278.159428 29.873706 L 277.558534 29.514348 L 276.839818 29.396526 L 276.121102 29.514348 L 275.520209 29.873706 L 275.037138 30.356777 L 274.801493 31.075493 L 274.801493 31.794209 L 275.037138 32.395102 L 275.520209 32.995996 L 276.121102 33.355354 Z M 276.839818 33.479067 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip19)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.482393 1.313588 L 36.482393 347.275112 L 314.283735 347.275112 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip20)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.283735 1.313588 L 36.482393 1.313588 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.600215 122.876713 L 36.240857 123.954787 L 35.999321 125.03286 L 35.881499 126.116825 L 35.999321 127.194899 L 36.240857 128.278864 L 36.600215 129.356937 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.600215 219.231763 L 36.240857 220.315728 L 35.999321 221.393802 L 35.881499 222.477767 L 35.999321 223.55584 L 36.240857 224.639805 L 36.600215 225.717879 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip21)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 40.317507 347.15729 L 41.395581 347.516648 L 42.479546 347.752292 L 43.55762 347.876006 L 44.641585 347.752292 L 45.719658 347.516648 L 46.803623 347.15729 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.600215 336.959773 L 36.240857 338.037847 L 35.999321 339.11592 L 35.881499 340.193994 L 35.999321 341.277959 L 36.240857 342.356033 L 36.600215 343.439997 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.600215 5.154594 L 36.240857 6.232668 L 35.999321 7.316633 L 35.881499 8.394707 L 35.999321 9.478671 L 36.240857 10.556745 L 36.600215 11.634819 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip22)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 46.803623 1.437302 L 45.719658 1.072053 L 44.641585 0.836408 L 43.55762 0.712695 L 42.479546 0.836408 L 41.395581 1.072053 L 40.317507 1.437302 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip23)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.239396 1.437302 L 125.161322 1.072053 L 124.077357 0.836408 L 122.999284 0.712695 L 121.92121 0.836408 L 120.837245 1.072053 L 119.759171 1.437302 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip24)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.438101 1.437302 L 207.360027 1.072053 L 206.281953 0.836408 L 205.197989 0.712695 L 204.119915 0.836408 L 203.041841 1.072053 L 201.963767 1.437302 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.160021 11.634819 L 314.519379 10.556745 L 314.760915 9.478671 L 314.878737 8.394707 L 314.760915 7.316633 L 314.519379 6.232668 L 314.160021 5.154594 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip25)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 310.442729 1.437302 L 309.358764 1.072053 L 308.28069 0.836408 L 307.196725 0.712695 L 306.118652 0.836408 L 305.040578 1.072053 L 303.962504 1.437302 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip26)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 99.841317 347.15729 L 100.919391 347.516648 L 101.997464 347.752292 L 103.075538 347.876006 L 104.159503 347.752292 L 105.237577 347.516648 L 106.321542 347.15729 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip27)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.877154 347.15729 L 219.961119 347.516648 L 221.039192 347.752292 L 222.123157 347.876006 L 223.201231 347.752292 L 224.279305 347.516648 L 225.357379 347.15729 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.160021 343.439997 L 314.519379 342.356033 L 314.760915 341.277959 L 314.878737 340.193994 L 314.760915 339.11592 L 314.519379 338.037847 L 314.160021 336.959773 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip28)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 303.962504 347.15729 L 305.040578 347.516648 L 306.118652 347.752292 L 307.196725 347.876006 L 308.28069 347.752292 L 309.358764 347.516648 L 310.442729 347.15729 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
</g>
|
||||
<clipPath id="clip29">
|
||||
<path d="M 262 50 L 340.15625 50 L 340.15625 64 L 262 64 Z M 262 50 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip30">
|
||||
<path d="M 232 33 L 340.15625 33 L 340.15625 64 L 232 64 Z M 232 33 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<use xlink:href="#surface5" transform="matrix(1,0,0,1,54,56)"/>
|
||||
<path style="fill:none;stroke-width:1.99255;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.082031 264.758563 L 170.082031 266.75075 M 170.082031 264.758563 L 170.082031 293.957781 M 170.082031 293.957781 L 170.082031 323.153094 M 170.082031 321.160906 L 170.082031 323.153094 " transform="matrix(1,0,0,-1,0,340.157)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1.99255;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.667969 323.153094 C 171.667969 324.028094 170.957031 324.739031 170.082031 324.739031 C 169.203125 324.739031 168.492188 324.028094 168.492188 323.153094 C 168.492188 322.278094 169.203125 321.567156 170.082031 321.567156 C 170.957031 321.567156 171.667969 322.278094 171.667969 323.153094 Z M 171.667969 323.153094 " transform="matrix(1,0,0,-1,0,340.157)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="160.047" y="12.691"/>
|
||||
<use xlink:href="#glyph0-2" x="167.51895" y="12.691"/>
|
||||
<use xlink:href="#glyph0-3" x="173.054171" y="12.691"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip29)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.99255;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.625 277.797625 L 263.625 289.137469 L 340.160156 289.137469 " transform="matrix(1,0,0,-1,0,340.157)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip30)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.99255;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 233.578125 277.797625 L 233.578125 306.145281 L 340.160156 306.145281 " transform="matrix(1,0,0,-1,0,340.157)"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 211 KiB |
BIN
Software/PC_Application/icons/compound_V1_Ref_Middle.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
664
Software/PC_Application/icons/compound_V1_Ref_Middle.svg
Normal file
@ -0,0 +1,664 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="340.157pt" height="340.157pt" viewBox="0 0 340.157 340.157" version="1.1">
|
||||
<defs>
|
||||
<g>
|
||||
<symbol overflow="visible" id="glyph0-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<path style="stroke:none;" d="M 5.796875 -2.296875 C 5.796875 -0.890625 4.828125 -0.09375 3.890625 -0.09375 C 3.421875 -0.09375 2.25 -0.34375 2.25 -2.234375 L 2.25 -6.03125 C 2.25 -6.390625 2.265625 -6.5 3.03125 -6.5 L 3.265625 -6.5 L 3.265625 -6.8125 C 2.921875 -6.78125 2.1875 -6.78125 1.796875 -6.78125 C 1.421875 -6.78125 0.671875 -6.78125 0.328125 -6.8125 L 0.328125 -6.5 L 0.5625 -6.5 C 1.328125 -6.5 1.359375 -6.390625 1.359375 -6.03125 L 1.359375 -2.265625 C 1.359375 -0.875 2.515625 0.21875 3.875 0.21875 C 5.015625 0.21875 5.90625 -0.703125 6.078125 -1.84375 C 6.109375 -2.046875 6.109375 -2.140625 6.109375 -2.53125 L 6.109375 -5.71875 C 6.109375 -6.046875 6.109375 -6.5 7.140625 -6.5 L 7.140625 -6.8125 C 6.78125 -6.796875 6.296875 -6.78125 5.96875 -6.78125 C 5.609375 -6.78125 5.140625 -6.796875 4.78125 -6.8125 L 4.78125 -6.5 C 5.796875 -6.5 5.796875 -6.03125 5.796875 -5.765625 Z M 5.796875 -2.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 3.484375 -3.875 L 2.203125 -4.171875 C 1.578125 -4.328125 1.203125 -4.859375 1.203125 -5.4375 C 1.203125 -6.140625 1.734375 -6.75 2.515625 -6.75 C 4.171875 -6.75 4.390625 -5.109375 4.453125 -4.671875 C 4.46875 -4.609375 4.46875 -4.546875 4.578125 -4.546875 C 4.703125 -4.546875 4.703125 -4.59375 4.703125 -4.78125 L 4.703125 -6.78125 C 4.703125 -6.953125 4.703125 -7.03125 4.59375 -7.03125 C 4.53125 -7.03125 4.515625 -7.015625 4.453125 -6.890625 L 4.09375 -6.328125 C 3.796875 -6.625 3.390625 -7.03125 2.5 -7.03125 C 1.390625 -7.03125 0.5625 -6.15625 0.5625 -5.09375 C 0.5625 -4.265625 1.09375 -3.53125 1.859375 -3.265625 C 1.96875 -3.234375 2.484375 -3.109375 3.1875 -2.9375 C 3.453125 -2.875 3.75 -2.796875 4.03125 -2.4375 C 4.234375 -2.171875 4.34375 -1.84375 4.34375 -1.515625 C 4.34375 -0.8125 3.84375 -0.09375 3 -0.09375 C 2.71875 -0.09375 1.953125 -0.140625 1.421875 -0.625 C 0.84375 -1.171875 0.8125 -1.796875 0.8125 -2.15625 C 0.796875 -2.265625 0.71875 -2.265625 0.6875 -2.265625 C 0.5625 -2.265625 0.5625 -2.1875 0.5625 -2.015625 L 0.5625 -0.015625 C 0.5625 0.15625 0.5625 0.21875 0.671875 0.21875 C 0.734375 0.21875 0.75 0.203125 0.8125 0.09375 C 0.8125 0.078125 0.84375 0.046875 1.171875 -0.484375 C 1.484375 -0.140625 2.125 0.21875 3.015625 0.21875 C 4.171875 0.21875 4.96875 -0.75 4.96875 -1.859375 C 4.96875 -2.84375 4.3125 -3.671875 3.484375 -3.875 Z M 3.484375 -3.875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 2.21875 -3.65625 L 2.21875 -6.09375 C 2.21875 -6.4375 2.234375 -6.5 2.703125 -6.5 L 3.9375 -6.5 C 4.90625 -6.5 5.25 -5.65625 5.25 -5.125 C 5.25 -4.484375 4.765625 -3.65625 3.65625 -3.65625 Z M 4.5625 -3.5625 C 5.53125 -3.75 6.21875 -4.390625 6.21875 -5.125 C 6.21875 -5.984375 5.296875 -6.8125 4 -6.8125 L 0.359375 -6.8125 L 0.359375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.390625 -6.390625 1.390625 -6.03125 L 1.390625 -0.78125 C 1.390625 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.359375 -0.3125 L 0.359375 0 L 4.265625 0 C 5.59375 0 6.484375 -0.890625 6.484375 -1.828125 C 6.484375 -2.6875 5.671875 -3.4375 4.5625 -3.5625 Z M 3.953125 -0.3125 L 2.703125 -0.3125 C 2.234375 -0.3125 2.21875 -0.375 2.21875 -0.703125 L 2.21875 -3.421875 L 4.09375 -3.421875 C 5.078125 -3.421875 5.5 -2.5 5.5 -1.828125 C 5.5 -1.125 4.96875 -0.3125 3.953125 -0.3125 Z M 3.953125 -0.3125 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
<clipPath id="clip2">
|
||||
<path d="M 174 0.691406 L 186 0.691406 L 186 2 L 174 2 Z M 174 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip3">
|
||||
<path d="M 184 0.691406 L 186 0.691406 L 186 2 L 184 2 Z M 184 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip4">
|
||||
<path d="M 174 0.691406 L 176 0.691406 L 176 2 L 174 2 Z M 174 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip5">
|
||||
<path d="M 173 0.691406 L 187 0.691406 L 187 17 L 173 17 Z M 173 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip6">
|
||||
<path d="M 205 0.691406 L 216 0.691406 L 216 2 L 205 2 Z M 205 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip7">
|
||||
<path d="M 214 0.691406 L 216 0.691406 L 216 2 L 214 2 Z M 214 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip8">
|
||||
<path d="M 204 0.691406 L 206 0.691406 L 206 2 L 204 2 Z M 204 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip9">
|
||||
<path d="M 203 0.691406 L 217 0.691406 L 217 17 L 203 17 Z M 203 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip10">
|
||||
<path d="M 18 226 L 30 226 L 30 227.464844 L 18 227.464844 Z M 18 226 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip11">
|
||||
<path d="M 17 205 L 32 205 L 32 227.464844 L 17 227.464844 Z M 17 205 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip12">
|
||||
<path d="M 18 225 L 20 225 L 20 227.464844 L 18 227.464844 Z M 18 225 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip13">
|
||||
<path d="M 28 216 L 34 216 L 34 227.464844 L 28 227.464844 Z M 28 216 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip14">
|
||||
<path d="M 202 226 L 214 226 L 214 227.464844 L 202 227.464844 Z M 202 226 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip15">
|
||||
<path d="M 201 205 L 216 205 L 216 227.464844 L 201 227.464844 Z M 201 205 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip16">
|
||||
<path d="M 202 225 L 204 225 L 204 227.464844 L 202 227.464844 Z M 202 225 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip17">
|
||||
<path d="M 212 216 L 218 216 L 218 227.464844 L 212 227.464844 Z M 212 216 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip18">
|
||||
<path d="M 0.507812 18 L 231.648438 18 L 231.648438 20 L 0.507812 20 Z M 0.507812 18 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip19">
|
||||
<path d="M 0.507812 18 L 231.648438 18 L 231.648438 204 L 0.507812 204 Z M 0.507812 18 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip20">
|
||||
<path d="M 0.507812 18 L 2 18 L 2 204 L 0.507812 204 Z M 0.507812 18 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip21">
|
||||
<path d="M 230 195 L 231.648438 195 L 231.648438 202 L 230 202 Z M 230 195 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip22">
|
||||
<path d="M 0.507812 195 L 2 195 L 2 202 L 0.507812 202 Z M 0.507812 195 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip23">
|
||||
<path d="M 0.507812 143 L 2 143 L 2 149 L 0.507812 149 Z M 0.507812 143 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip24">
|
||||
<path d="M 0.507812 88 L 2 88 L 2 95 L 0.507812 95 Z M 0.507812 88 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip25">
|
||||
<path d="M 0.507812 21 L 2 21 L 2 27 L 0.507812 27 Z M 0.507812 21 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip26">
|
||||
<path d="M 230 156 L 231.648438 156 L 231.648438 162 L 230 162 Z M 230 156 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip27">
|
||||
<path d="M 230 77 L 231.648438 77 L 231.648438 83 L 230 83 Z M 230 77 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip28">
|
||||
<path d="M 230 21 L 231.648438 21 L 231.648438 27 L 230 27 Z M 230 21 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip1">
|
||||
<rect x="0" y="0" width="232" height="228"/>
|
||||
</clipPath>
|
||||
<g id="surface5" clip-path="url(#clip1)">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 108.478832 L 275.037138 108.231405 L 275.160851 107.99576 L 275.037138 107.754225 L 274.801493 107.51858 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 109.073834 L 275.396495 109.073834 L 275.396495 106.911796 L 275.037138 106.911796 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 91.435841 L 275.037138 91.194305 L 275.160851 90.958661 L 275.037138 90.717125 L 274.801493 90.475589 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 92.036734 L 275.396495 92.036734 L 275.396495 89.874696 L 275.037138 89.874696 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 82.9114 L 275.037138 82.675755 L 275.160851 82.440111 L 275.037138 82.192684 L 274.801493 81.957039 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 83.518184 L 275.396495 83.518184 L 275.396495 81.356146 L 275.037138 81.356146 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 74.39285 L 275.037138 74.157205 L 275.160851 73.91567 L 275.037138 73.674134 L 274.801493 73.438489 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 74.993743 L 275.396495 74.993743 L 275.396495 72.837596 L 275.037138 72.837596 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 65.8743 L 275.037138 65.638655 L 275.160851 65.39712 L 275.037138 65.155584 L 274.801493 64.914048 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 66.475193 L 275.396495 66.475193 L 275.396495 64.313155 L 275.037138 64.313155 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 57.35575 L 275.037138 57.114214 L 275.160851 56.872679 L 275.037138 56.637034 L 274.801493 56.395498 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 57.956643 L 275.396495 57.956643 L 275.396495 55.794605 L 275.037138 55.794605 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 48.8372 L 275.037138 48.595664 L 275.160851 48.354129 L 275.037138 48.118484 L 274.801493 47.876948 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 49.438093 L 275.396495 49.438093 L 275.396495 47.276055 L 275.037138 47.276055 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 40.436472 L 275.037138 40.194937 L 275.160851 39.959292 L 275.037138 39.717756 L 274.801493 39.476221 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 41.037366 L 275.396495 41.037366 L 275.396495 38.875327 L 275.037138 38.875327 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 31.912031 L 275.037138 31.676387 L 275.160851 31.440742 L 275.037138 31.193315 L 274.801493 30.957671 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 32.518816 L 275.396495 32.518816 L 275.396495 30.356777 L 275.037138 30.356777 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.442135 99.954391 L 274.67778 99.712855 L 274.801493 99.47721 L 274.67778 99.235675 L 274.442135 98.994139 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 100.555284 L 275.037138 100.555284 L 275.037138 98.393246 L 274.801493 98.393246 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 107.51858 L 278.760321 107.754225 L 278.642499 107.99576 L 278.760321 108.231405 L 279.001857 108.478832 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 106.911796 L 278.395072 106.911796 L 278.395072 109.073834 L 278.760321 109.073834 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 90.475589 L 278.760321 90.717125 L 278.642499 90.958661 L 278.760321 91.194305 L 279.001857 91.435841 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 89.874696 L 278.395072 89.874696 L 278.395072 92.036734 L 278.760321 92.036734 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 81.957039 L 278.760321 82.192684 L 278.642499 82.440111 L 278.760321 82.675755 L 279.001857 82.9114 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 81.356146 L 278.395072 81.356146 L 278.395072 83.518184 L 278.760321 83.518184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 73.438489 L 278.760321 73.674134 L 278.642499 73.91567 L 278.760321 74.157205 L 279.001857 74.39285 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 72.837596 L 278.395072 72.837596 L 278.395072 74.993743 L 278.760321 74.993743 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 64.914048 L 278.760321 65.155584 L 278.642499 65.39712 L 278.760321 65.638655 L 279.001857 65.8743 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 64.313155 L 278.395072 64.313155 L 278.395072 66.475193 L 278.760321 66.475193 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 56.395498 L 278.760321 56.637034 L 278.642499 56.872679 L 278.760321 57.114214 L 279.001857 57.35575 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 55.794605 L 278.395072 55.794605 L 278.395072 57.956643 L 278.760321 57.956643 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 47.876948 L 278.760321 48.118484 L 278.642499 48.354129 L 278.760321 48.595664 L 279.001857 48.8372 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 47.276055 L 278.395072 47.276055 L 278.395072 49.438093 L 278.760321 49.438093 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 39.476221 L 278.760321 39.717756 L 278.642499 39.959292 L 278.760321 40.194937 L 279.001857 40.436472 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 38.875327 L 278.395072 38.875327 L 278.395072 41.037366 L 278.760321 41.037366 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 30.957671 L 278.760321 31.193315 L 278.642499 31.440742 L 278.760321 31.676387 L 279.001857 31.912031 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 30.356777 L 278.395072 30.356777 L 278.395072 32.518816 L 278.760321 32.518816 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 98.994139 L 278.518786 99.235675 L 278.395072 99.47721 L 278.518786 99.712855 L 278.760321 99.954391 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 98.393246 L 278.159428 98.393246 L 278.159428 100.555284 L 278.395072 100.555284 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.642499 109.073834 L 278.395072 109.073834 M 275.396495 109.073834 L 275.037138 109.073834 M 275.037138 106.799864 L 275.396495 106.799864 M 278.395072 106.799864 L 278.642499 106.799864 M 278.642499 92.036734 L 278.395072 92.036734 M 275.396495 92.036734 L 275.037138 92.036734 M 275.037138 89.874696 L 275.396495 89.874696 M 278.395072 89.874696 L 278.642499 89.874696 M 278.642499 83.518184 L 278.395072 83.518184 M 275.396495 83.518184 L 275.037138 83.518184 M 275.037138 81.356146 L 275.396495 81.356146 M 278.395072 81.356146 L 278.642499 81.356146 M 278.642499 74.993743 L 278.395072 74.993743 M 275.396495 74.993743 L 275.037138 74.993743 M 275.037138 72.837596 L 275.396495 72.837596 M 278.395072 72.837596 L 278.642499 72.837596 M 278.642499 66.475193 L 278.395072 66.475193 M 275.396495 66.475193 L 275.037138 66.475193 M 275.037138 64.313155 L 275.396495 64.313155 M 278.395072 64.313155 L 278.642499 64.313155 M 278.642499 58.074466 L 278.395072 58.074466 M 275.396495 58.074466 L 275.037138 58.074466 M 275.037138 55.794605 L 275.396495 55.794605 M 278.395072 55.794605 L 278.642499 55.794605 M 278.642499 49.555916 L 278.395072 49.555916 M 275.396495 49.555916 L 275.037138 49.555916 M 275.037138 47.276055 L 275.396495 47.276055 M 278.395072 47.276055 L 278.642499 47.276055 M 278.642499 41.037366 L 278.395072 41.037366 M 275.396495 41.037366 L 275.037138 41.037366 M 275.037138 38.751614 L 275.396495 38.751614 M 278.395072 38.751614 L 278.642499 38.751614 M 278.642499 32.518816 L 278.395072 32.518816 M 275.396495 32.518816 L 275.037138 32.518816 M 275.037138 30.233064 L 275.396495 30.233064 M 278.395072 30.233064 L 278.642499 30.233064 M 278.395072 100.555284 L 278.159428 100.555284 M 275.037138 100.555284 L 274.801493 100.555284 M 274.801493 98.275423 L 275.037138 98.275423 M 278.159428 98.275423 L 278.395072 98.275423 M 278.395072 109.073834 L 278.395072 106.799864 M 275.396495 106.799864 L 275.396495 109.073834 M 278.395072 109.073834 L 278.518786 109.073834 M 278.395072 106.799864 L 278.518786 106.799864 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 109.073834 L 278.395072 106.799864 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 106.799864 L 275.643922 106.799864 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 106.799864 L 275.643922 109.073834 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 109.073834 L 278.159428 109.073834 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 109.073834 L 278.159428 106.799864 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 106.799864 L 275.643922 106.799864 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 106.799864 L 278.395072 106.799864 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 109.073834 L 278.159428 109.073834 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 109.073834 L 275.396495 109.073834 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 106.799864 L 275.396495 109.073834 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 92.036734 L 278.395072 89.874696 M 275.396495 89.874696 L 275.396495 92.036734 M 278.395072 92.036734 L 278.518786 92.036734 M 278.395072 89.874696 L 278.518786 89.874696 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 92.036734 L 278.395072 89.874696 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 89.874696 L 275.643922 89.874696 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 89.874696 L 275.643922 92.036734 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 92.036734 L 278.159428 92.036734 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 92.036734 L 278.159428 89.874696 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 89.874696 L 275.643922 89.874696 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 89.874696 L 278.395072 89.874696 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 92.036734 L 278.159428 92.036734 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 92.036734 L 275.396495 92.036734 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 89.874696 L 275.396495 92.036734 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 83.518184 L 278.395072 81.356146 M 275.396495 81.356146 L 275.396495 83.518184 M 278.395072 83.518184 L 278.518786 83.518184 M 278.395072 81.356146 L 278.518786 81.356146 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 83.518184 L 278.395072 81.356146 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 81.356146 L 275.643922 81.356146 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 81.356146 L 275.643922 83.518184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 83.518184 L 278.159428 83.518184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 83.518184 L 278.159428 81.356146 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 81.356146 L 275.643922 81.356146 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 81.356146 L 278.395072 81.356146 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 83.518184 L 278.159428 83.518184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 83.518184 L 275.396495 83.518184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 81.356146 L 275.396495 83.518184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 74.993743 L 278.395072 72.837596 M 275.396495 72.837596 L 275.396495 74.993743 M 278.395072 74.993743 L 278.518786 74.993743 M 278.395072 72.837596 L 278.518786 72.837596 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 74.993743 L 278.395072 72.837596 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 72.837596 L 275.643922 72.837596 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 72.837596 L 275.643922 74.993743 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 74.993743 L 278.159428 74.993743 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 74.993743 L 278.159428 72.837596 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 72.837596 L 275.643922 72.837596 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 72.837596 L 278.395072 72.837596 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 74.993743 L 278.159428 74.993743 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 74.993743 L 275.396495 74.993743 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 72.837596 L 275.396495 74.993743 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 66.475193 L 278.395072 64.313155 M 275.396495 64.313155 L 275.396495 66.475193 M 278.395072 66.475193 L 278.518786 66.475193 M 278.395072 64.313155 L 278.518786 64.313155 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 66.475193 L 278.395072 64.313155 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 64.313155 L 275.643922 64.313155 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 64.313155 L 275.643922 66.475193 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 66.475193 L 278.159428 66.475193 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 66.475193 L 278.159428 64.313155 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 64.313155 L 275.643922 64.313155 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 64.313155 L 278.395072 64.313155 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 66.475193 L 278.159428 66.475193 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 66.475193 L 275.396495 66.475193 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 64.313155 L 275.396495 66.475193 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 58.074466 L 278.395072 55.794605 M 275.396495 55.794605 L 275.396495 58.074466 M 278.395072 58.074466 L 278.518786 58.074466 M 278.395072 55.794605 L 278.518786 55.794605 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 58.074466 L 278.395072 55.794605 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 55.794605 L 275.643922 55.794605 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 55.794605 L 275.643922 58.074466 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 58.074466 L 278.159428 58.074466 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 58.074466 L 278.159428 55.794605 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 55.794605 L 275.643922 55.794605 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 55.794605 L 278.395072 55.794605 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 58.074466 L 278.159428 58.074466 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 58.074466 L 275.396495 58.074466 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 55.794605 L 275.396495 58.074466 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 49.555916 L 278.395072 47.276055 M 275.396495 47.276055 L 275.396495 49.555916 M 278.395072 49.555916 L 278.518786 49.555916 M 278.395072 47.276055 L 278.518786 47.276055 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 49.555916 L 278.395072 47.276055 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 47.276055 L 275.643922 47.276055 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 47.276055 L 275.643922 49.555916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 49.555916 L 278.159428 49.555916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 49.555916 L 278.159428 47.276055 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 47.276055 L 275.643922 47.276055 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 47.276055 L 278.395072 47.276055 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 49.555916 L 278.159428 49.555916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 49.555916 L 275.396495 49.555916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 47.276055 L 275.396495 49.555916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 41.037366 L 278.395072 38.751614 M 275.396495 38.751614 L 275.396495 41.037366 M 278.395072 41.037366 L 278.518786 41.037366 M 278.395072 38.751614 L 278.518786 38.751614 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 41.037366 L 278.395072 38.751614 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 38.751614 L 275.643922 38.751614 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 38.751614 L 275.643922 41.037366 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 41.037366 L 278.159428 41.037366 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 41.037366 L 278.159428 38.751614 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 38.751614 L 275.643922 38.751614 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 38.751614 L 278.395072 38.751614 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 41.037366 L 278.159428 41.037366 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 41.037366 L 275.396495 41.037366 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 38.751614 L 275.396495 41.037366 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 32.518816 L 278.395072 30.233064 M 275.396495 30.233064 L 275.396495 32.518816 M 278.395072 32.518816 L 278.518786 32.518816 M 278.395072 30.233064 L 278.518786 30.233064 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 32.518816 L 278.395072 30.233064 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 30.233064 L 275.643922 30.233064 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 30.233064 L 275.643922 32.518816 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 32.518816 L 278.159428 32.518816 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 32.518816 L 278.159428 30.233064 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 30.233064 L 275.643922 30.233064 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 30.233064 L 278.395072 30.233064 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 32.518816 L 278.159428 32.518816 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 32.518816 L 275.396495 32.518816 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 30.233064 L 275.396495 32.518816 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 100.555284 L 278.159428 98.275423 M 275.037138 98.275423 L 275.037138 100.555284 M 278.159428 100.555284 L 278.283141 100.555284 M 278.159428 98.275423 L 278.283141 98.275423 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 100.555284 L 278.159428 98.275423 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.923783 98.275423 L 275.278673 98.275423 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.278673 98.275423 L 275.278673 100.555284 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.278673 100.555284 L 277.923783 100.555284 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.923783 100.555284 L 277.923783 98.275423 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 98.275423 L 275.278673 98.275423 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.923783 98.275423 L 278.159428 98.275423 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 100.555284 L 277.923783 100.555284 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.278673 100.555284 L 275.037138 100.555284 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.160851 98.275423 L 275.160851 100.555284 M 318.837566 263.515262 L 318.837566 277.913143 M 340.92335 277.913143 L 340.92335 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip2)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 341.282707 263.756798 L 341.282707 277.677499 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.002847 277.913143 L 339.120669 277.913143 L 339.120669 277.795321 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 336.840808 277.913143 L 336.840808 277.677499 L 336.95863 277.553785 L 336.95863 276.593534 L 337.076453 276.357889 L 337.076453 274.914567 L 337.200166 274.555209 L 337.200166 272.634706 L 337.317988 272.39317 L 337.317988 270.231132 L 337.441702 269.995487 L 337.441702 267.957162 L 337.559524 267.591913 L 337.559524 265.912945 L 337.677346 265.677301 L 337.677346 264.357692 L 337.801059 264.233978 L 337.801059 263.638976 L 337.924773 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 334.560947 277.913143 L 334.560947 277.677499 L 334.678769 277.553785 L 334.678769 276.593534 L 334.802483 276.357889 L 334.802483 274.914567 L 334.920305 274.555209 L 334.920305 272.634706 L 335.038127 272.39317 L 335.038127 270.231132 L 335.161841 269.995487 L 335.161841 268.31652 L 335.279663 267.957162 L 335.279663 266.154481 L 335.397485 265.912945 L 335.397485 264.593336 L 335.521199 264.357692 L 335.521199 263.638976 L 335.639021 263.638976 L 335.639021 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.281086 277.913143 L 332.281086 277.677499 L 332.398908 277.677499 L 332.398908 276.717247 L 332.522622 276.593534 L 332.522622 275.156102 L 332.640444 274.914567 L 332.640444 272.994064 L 332.764158 272.634706 L 332.764158 270.596381 L 332.876089 270.354845 L 332.876089 268.31652 L 332.999802 267.957162 L 332.999802 266.154481 L 333.123515 265.912945 L 333.123515 264.593336 L 333.235447 264.357692 L 333.235447 263.638976 L 333.35916 263.638976 L 333.35916 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.001225 277.913143 L 330.001225 277.795321 L 330.119048 277.677499 L 330.119048 276.958783 L 330.23687 276.717247 L 330.23687 275.397638 L 330.360583 275.156102 L 330.360583 273.353422 L 330.478406 272.994064 L 330.478406 270.955739 L 330.602119 270.596381 L 330.602119 268.552164 L 330.719941 268.31652 L 330.719941 266.396017 L 330.837763 266.154481 L 330.837763 264.717049 L 330.961477 264.593336 L 330.961477 263.756798 L 331.079299 263.638976 L 331.079299 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 327.721364 277.913143 L 327.721364 277.795321 L 327.839187 277.677499 L 327.839187 276.958783 L 327.9629 276.717247 L 327.9629 275.397638 L 328.080722 275.156102 L 328.080722 273.71278 L 328.198545 273.353422 L 328.198545 271.315096 L 328.322258 270.955739 L 328.322258 268.911522 L 328.44008 268.552164 L 328.44008 266.755375 L 328.557903 266.396017 L 328.557903 264.958585 L 328.681616 264.717049 L 328.681616 263.87462 L 328.799438 263.756798 L 328.799438 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 276.717247 L 325.677148 275.639174 L 325.800862 275.397638 L 325.800862 273.836493 L 325.924575 273.594957 L 325.924575 271.43881 L 326.036506 271.073561 L 326.036506 268.911522 L 326.160219 268.675878 L 326.160219 266.873197 L 326.283933 266.637552 L 326.283933 264.958585 L 326.395864 264.834872 L 326.395864 263.87462 L 326.519577 263.756798 L 326.519577 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.395864 263.515262 L 326.395864 263.638976 L 326.283933 263.756798 L 326.283933 264.593336 L 326.160219 264.717049 L 326.160219 266.278195 L 326.036506 266.396017 L 326.036506 268.440233 L 325.924575 268.675878 L 325.924575 270.837916 L 325.800862 271.073561 L 325.800862 273.117777 L 325.677148 273.353422 L 325.677148 274.678922 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 328.681616 263.515262 L 328.681616 263.638976 L 328.557903 263.638976 L 328.557903 264.475514 L 328.44008 264.593336 L 328.44008 266.036659 L 328.322258 266.278195 L 328.322258 268.074984 L 328.198545 268.31652 L 328.198545 270.354845 L 328.080722 270.714203 L 328.080722 272.752528 L 327.9629 273.117777 L 327.9629 274.914567 L 327.839187 275.279816 L 327.839187 276.593534 L 327.721364 276.83507 L 327.721364 277.677499 L 327.603542 277.795321 L 327.603542 277.913143 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.961477 263.515262 L 330.961477 263.638976 L 330.837763 263.638976 L 330.837763 264.233978 L 330.719941 264.475514 L 330.719941 265.677301 L 330.602119 266.036659 L 330.602119 267.715626 L 330.478406 268.074984 L 330.478406 270.1192 L 330.360583 270.354845 L 330.360583 272.516884 L 330.23687 272.752528 L 330.23687 274.678922 L 330.119048 274.914567 L 330.119048 276.475712 L 330.001225 276.593534 L 330.001225 277.553785 L 329.877512 277.677499 L 329.877512 277.913143 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.235447 263.515262 L 333.123515 263.638976 L 333.123515 264.233978 L 332.999802 264.475514 L 332.999802 265.677301 L 332.876089 266.036659 L 332.876089 267.715626 L 332.764158 268.074984 L 332.764158 270.1192 L 332.640444 270.354845 L 332.640444 272.516884 L 332.522622 272.752528 L 332.522622 274.437387 L 332.398908 274.678922 L 332.398908 276.234176 L 332.281086 276.475712 L 332.281086 277.435963 L 332.157373 277.553785 L 332.157373 277.913143 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.521199 263.515262 L 335.397485 263.515262 L 335.397485 264.116156 L 335.279663 264.233978 L 335.279663 265.435765 L 335.161841 265.677301 L 335.161841 267.474091 L 335.038127 267.715626 L 335.038127 269.753951 L 334.920305 270.1192 L 334.920305 272.157526 L 334.802483 272.516884 L 334.802483 274.437387 L 334.678769 274.678922 L 334.678769 276.234176 L 334.560947 276.475712 L 334.560947 277.435963 L 334.443125 277.553785 L 334.443125 277.913143 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.801059 263.515262 L 337.677346 263.515262 L 337.677346 263.998334 L 337.559524 264.116156 L 337.559524 265.19423 L 337.441702 265.435765 L 337.441702 267.114733 L 337.317988 267.474091 L 337.317988 269.394593 L 337.200166 269.753951 L 337.200166 271.798168 L 337.076453 272.157526 L 337.076453 274.072137 L 336.95863 274.437387 L 336.95863 275.998532 L 336.840808 276.234176 L 336.840808 277.318141 L 336.717095 277.435963 L 336.717095 277.913143 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.120669 276.717247 L 339.120669 277.318141 L 339.002847 277.318141 L 339.002847 277.913143 L 338.879133 277.913143 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.601921 262.437189 L 318.601921 278.873395 M 318.236672 279.232753 L 314.283735 279.232753 M 314.283735 262.195653 L 318.236672 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.236672 278.873395 L 318.236672 262.437189 L 314.283735 262.437189 M 314.283735 278.873395 L 318.236672 278.873395 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 262.195653 L 325.800862 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.761113 279.232753 L 326.878935 279.114931 L 326.878935 278.514037 L 327.002649 278.396215 L 327.002649 276.958783 L 327.120471 276.717247 L 327.120471 274.678922 L 327.238293 274.555209 L 327.238293 272.033812 L 327.356115 271.91599 L 327.356115 269.153058 L 327.479829 268.911522 L 327.479829 266.755375 L 327.603542 266.513839 L 327.603542 264.357692 L 327.721364 264.233978 L 327.721364 262.914369 L 327.839187 262.796546 L 327.839187 262.195653 L 327.9629 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 329.040974 279.232753 L 329.040974 279.114931 L 329.158796 279.114931 L 329.158796 278.396215 L 329.28251 278.278392 L 329.28251 276.717247 L 329.400332 276.593534 L 329.400332 274.555209 L 329.518154 274.313673 L 329.518154 271.91599 L 329.641867 271.674454 L 329.641867 268.911522 L 329.75969 268.675878 L 329.75969 266.396017 L 329.877512 266.154481 L 329.877512 264.233978 L 330.001225 264.116156 L 330.001225 262.796546 L 330.119048 262.678724 L 330.119048 262.195653 L 330.23687 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 331.320835 279.232753 L 331.320835 279.114931 L 331.438657 279.114931 L 331.438657 278.278392 L 331.556479 278.154679 L 331.556479 276.593534 L 331.680193 276.475712 L 331.680193 274.195851 L 331.803906 273.954315 L 331.803906 271.43881 L 331.921728 271.197274 L 331.921728 268.675878 L 332.039551 268.552164 L 332.039551 266.154481 L 332.157373 266.036659 L 332.157373 263.998334 L 332.281086 263.87462 L 332.281086 262.678724 L 332.398908 262.555011 L 332.398908 262.195653 L 332.522622 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.600696 279.232753 L 333.600696 279.114931 L 333.718518 278.997108 L 333.718518 278.154679 L 333.842231 278.036857 L 333.842231 276.357889 L 333.960054 276.116354 L 333.960054 273.954315 L 334.077876 273.71278 L 334.077876 271.197274 L 334.201589 271.073561 L 334.201589 268.31652 L 334.319411 268.074984 L 334.319411 266.036659 L 334.443125 265.795123 L 334.443125 263.87462 L 334.560947 263.756798 L 334.560947 262.555011 L 334.678769 262.555011 L 334.678769 262.195653 L 334.802483 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.880556 279.232753 L 335.880556 278.997108 L 335.998379 278.997108 L 335.998379 278.036857 L 336.122092 277.913143 L 336.122092 276.116354 L 336.239914 275.998532 L 336.239914 273.71278 L 336.357737 273.594957 L 336.357737 271.073561 L 336.48145 270.837916 L 336.48145 268.074984 L 336.599272 267.957162 L 336.599272 265.677301 L 336.717095 265.435765 L 336.717095 263.756798 L 336.840808 263.638976 L 336.840808 262.555011 L 336.95863 262.437189 L 336.95863 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 338.160417 279.232753 L 338.160417 278.873395 L 338.27824 278.873395 L 338.27824 277.913143 L 338.396062 277.677499 L 338.396062 275.998532 L 338.519775 275.751105 L 338.519775 273.477135 L 338.643489 273.117777 L 338.643489 270.955739 L 338.761311 270.596381 L 338.761311 268.074984 L 338.879133 267.715626 L 338.879133 265.435765 L 339.002847 265.19423 L 339.002847 263.515262 L 339.120669 263.39744 L 339.120669 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.160219 279.232753 L 326.283933 279.232753 L 326.283933 278.755573 L 326.395864 278.63775 L 326.395864 277.435963 L 326.519577 277.318141 L 326.519577 275.397638 L 326.643291 275.279816 L 326.643291 272.876241 L 326.761113 272.634706 L 326.761113 269.995487 L 326.878935 269.753951 L 326.878935 267.232555 L 327.002649 266.99691 L 327.002649 264.958585 L 327.120471 264.834872 L 327.120471 263.279618 L 327.238293 263.155904 L 327.238293 262.313475 L 327.356115 262.313475 L 327.356115 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 328.44008 279.232753 L 328.557903 279.232753 L 328.557903 278.63775 L 328.681616 278.63775 L 328.681616 277.318141 L 328.799438 277.194428 L 328.799438 275.032389 L 328.923152 274.914567 L 328.923152 272.634706 L 329.040974 272.39317 L 329.040974 269.753951 L 329.158796 269.518307 L 329.158796 266.99691 L 329.28251 266.873197 L 329.28251 264.834872 L 329.400332 264.593336 L 329.400332 263.032191 L 329.518154 262.914369 L 329.518154 262.313475 L 329.641867 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.719941 279.232753 L 330.837763 279.232753 L 330.837763 278.63775 L 330.961477 278.514037 L 330.961477 277.194428 L 331.079299 276.958783 L 331.079299 274.914567 L 331.197121 274.678922 L 331.197121 272.275348 L 331.320835 272.033812 L 331.320835 269.518307 L 331.438657 269.276771 L 331.438657 266.873197 L 331.556479 266.637552 L 331.556479 264.475514 L 331.680193 264.357692 L 331.680193 262.914369 L 331.803906 262.914369 L 331.803906 262.195653 L 331.921728 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.999802 279.232753 L 333.123515 279.114931 L 333.123515 278.514037 L 333.235447 278.396215 L 333.235447 276.83507 L 333.35916 276.717247 L 333.35916 274.678922 L 333.482873 274.437387 L 333.482873 272.033812 L 333.600696 271.798168 L 333.600696 269.153058 L 333.718518 268.911522 L 333.718518 266.513839 L 333.842231 266.278195 L 333.842231 264.357692 L 333.960054 264.233978 L 333.960054 262.914369 L 334.077876 262.796546 L 334.077876 262.195653 L 334.201589 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.279663 279.232753 L 335.279663 279.114931 L 335.397485 279.114931 L 335.397485 278.278392 L 335.521199 278.278392 L 335.521199 276.717247 L 335.639021 276.593534 L 335.639021 274.437387 L 335.762734 274.313673 L 335.762734 271.798168 L 335.880556 271.556632 L 335.880556 268.911522 L 335.998379 268.675878 L 335.998379 266.278195 L 336.122092 266.154481 L 336.122092 264.233978 L 336.239914 264.116156 L 336.239914 262.796546 L 336.357737 262.678724 L 336.357737 262.195653 L 336.48145 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.559524 279.232753 L 337.559524 279.114931 L 337.677346 279.114931 L 337.677346 278.278392 L 337.801059 278.154679 L 337.801059 276.593534 L 337.924773 276.475712 L 337.924773 274.072137 L 338.036704 273.836493 L 338.036704 271.43881 L 338.160417 271.197274 L 338.160417 268.675878 L 338.27824 268.440233 L 338.27824 266.154481 L 338.396062 265.912945 L 338.396062 263.998334 L 338.519775 263.87462 L 338.519775 262.678724 L 338.643489 262.555011 L 338.643489 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.120669 276.717247 L 339.120669 262.796546 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 262.195653 L 325.677148 274.678922 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.120669 278.036857 L 339.120669 277.795321 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 276.717247 L 325.677148 278.278392 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.236672 262.195653 L 318.236672 262.437189 M 318.236672 278.873395 L 318.236672 279.232753 M 318.236672 262.437189 L 318.601921 262.437189 M 318.601921 278.873395 L 318.236672 278.873395 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.478208 262.437189 L 318.236672 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.236672 279.114931 L 318.478208 278.873395 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.837566 277.913143 L 318.719743 278.036857 L 318.601921 278.154679 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.601921 263.155904 L 318.719743 263.279618 L 318.837566 263.39744 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip3)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.92335 277.913143 L 341.158994 277.677499 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip4)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 341.158994 263.756798 L 341.041172 263.638976 L 340.92335 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip5)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.92335 277.913143 L 339.120669 277.913143 M 339.002847 277.913143 L 338.879133 277.913143 M 336.840808 277.913143 L 336.599272 277.913143 M 334.560947 277.913143 L 334.443125 277.913143 M 332.281086 277.913143 L 332.157373 277.913143 M 330.001225 277.913143 L 329.877512 277.913143 M 327.721364 277.913143 L 327.603542 277.913143 M 325.677148 277.913143 L 318.837566 277.913143 M 340.92335 263.515262 L 339.120669 263.515262 M 337.924773 263.515262 L 337.801059 263.515262 M 335.639021 263.515262 L 335.521199 263.515262 M 333.35916 263.515262 L 333.235447 263.515262 M 331.079299 263.515262 L 330.961477 263.515262 M 328.799438 263.515262 L 328.681616 263.515262 M 326.519577 263.515262 L 326.395864 263.515262 M 325.677148 263.515262 L 318.837566 263.515262 M 338.160417 279.232753 L 337.559524 279.232753 M 335.880556 279.232753 L 335.279663 279.232753 M 333.600696 279.232753 L 332.999802 279.232753 M 331.320835 279.232753 L 330.719941 279.232753 M 329.040974 279.232753 L 328.44008 279.232753 M 326.761113 279.232753 L 326.283933 279.232753 M 339.120669 262.195653 L 338.643489 262.195653 M 336.95863 262.195653 L 336.48145 262.195653 M 334.678769 262.195653 L 334.201589 262.195653 M 332.398908 262.195653 L 331.921728 262.195653 M 330.23687 262.195653 L 329.641867 262.195653 M 327.9629 262.195653 L 327.356115 262.195653 M 327.603542 277.913143 L 326.761113 279.232753 M 329.877512 277.913143 L 329.040974 279.232753 M 332.157373 277.913143 L 331.320835 279.232753 M 334.443125 277.913143 L 333.600696 279.232753 M 336.717095 277.913143 L 335.880556 279.232753 M 338.879133 277.913143 L 338.160417 279.232753 M 325.677148 262.195653 L 326.395864 263.515262 M 327.9629 262.195653 L 328.681616 263.515262 M 330.23687 262.195653 L 330.961477 263.515262 M 332.522622 262.195653 L 333.235447 263.515262 M 334.802483 262.195653 L 335.521199 263.515262 M 336.95863 262.195653 L 337.801059 263.515262 M 326.160219 279.232753 L 325.677148 278.278392 M 328.44008 279.232753 L 327.721364 277.913143 M 330.719941 279.232753 L 330.001225 277.913143 M 332.999802 279.232753 L 332.281086 277.913143 M 335.279663 279.232753 L 334.443125 277.913143 M 337.559524 279.232753 L 336.717095 277.913143 M 339.120669 278.036857 L 339.002847 277.913143 M 337.924773 263.515262 L 338.643489 262.195653 M 335.639021 263.515262 L 336.357737 262.195653 M 333.35916 263.515262 L 334.077876 262.195653 M 331.079299 263.515262 L 331.921728 262.195653 M 328.799438 263.515262 L 329.641867 262.195653 M 326.519577 263.515262 L 327.356115 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.837566 308.876835 L 318.837566 323.274716 M 340.92335 323.274716 L 340.92335 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip6)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 341.282707 309.118371 L 341.282707 323.033181 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.002847 323.274716 L 339.120669 323.274716 L 339.120669 323.156894 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 336.840808 323.274716 L 336.840808 323.033181 L 336.95863 322.915358 L 336.95863 321.955107 L 337.076453 321.713571 L 337.076453 320.27614 L 337.200166 319.916782 L 337.200166 318.114101 L 337.317988 317.754743 L 337.317988 315.716418 L 337.441702 315.35706 L 337.441702 313.318735 L 337.559524 312.959377 L 337.559524 311.274518 L 337.677346 311.032983 L 337.677346 309.713373 L 337.801059 309.595551 L 337.801059 308.994658 L 337.924773 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 334.560947 323.274716 L 334.560947 323.033181 L 334.678769 322.915358 L 334.678769 321.955107 L 334.802483 321.713571 L 334.802483 320.27614 L 334.920305 319.916782 L 334.920305 318.114101 L 335.038127 317.754743 L 335.038127 315.716418 L 335.161841 315.35706 L 335.161841 313.678093 L 335.279663 313.318735 L 335.279663 311.516054 L 335.397485 311.274518 L 335.397485 309.954909 L 335.521199 309.713373 L 335.521199 308.994658 L 335.639021 308.994658 L 335.639021 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.281086 323.274716 L 332.281086 323.033181 L 332.398908 323.033181 L 332.398908 322.072929 L 332.522622 321.955107 L 332.522622 320.517675 L 332.640444 320.27614 L 332.640444 318.355637 L 332.764158 318.114101 L 332.764158 315.957954 L 332.876089 315.716418 L 332.876089 313.678093 L 332.999802 313.318735 L 332.999802 311.516054 L 333.123515 311.274518 L 333.123515 309.954909 L 333.235447 309.713373 L 333.235447 308.994658 L 333.35916 308.994658 L 333.35916 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.001225 323.274716 L 330.001225 323.156894 L 330.119048 323.033181 L 330.119048 322.314465 L 330.23687 322.072929 L 330.23687 320.75332 L 330.360583 320.517675 L 330.360583 318.714995 L 330.478406 318.355637 L 330.478406 316.317311 L 330.602119 315.957954 L 330.602119 313.913737 L 330.719941 313.678093 L 330.719941 311.751699 L 330.837763 311.516054 L 330.837763 310.072731 L 330.961477 309.954909 L 330.961477 309.118371 L 331.079299 308.994658 L 331.079299 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 327.721364 323.274716 L 327.721364 323.156894 L 327.839187 323.033181 L 327.839187 322.314465 L 327.9629 322.196643 L 327.9629 320.75332 L 328.080722 320.517675 L 328.080722 319.074353 L 328.198545 318.714995 L 328.198545 316.676669 L 328.322258 316.317311 L 328.322258 314.278986 L 328.44008 313.913737 L 328.44008 312.116948 L 328.557903 311.751699 L 328.557903 310.314267 L 328.681616 310.072731 L 328.681616 309.236193 L 328.799438 309.118371 L 328.799438 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 322.072929 L 325.677148 320.994856 L 325.800862 320.75332 L 325.800862 319.192175 L 325.924575 318.95653 L 325.924575 316.794492 L 326.036506 316.435134 L 326.036506 314.278986 L 326.160219 314.037451 L 326.160219 312.23477 L 326.283933 311.993234 L 326.283933 310.314267 L 326.395864 310.196445 L 326.395864 309.236193 L 326.519577 309.236193 L 326.519577 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.395864 308.876835 L 326.395864 308.994658 L 326.283933 309.118371 L 326.283933 309.954909 L 326.160219 310.072731 L 326.160219 311.639767 L 326.036506 311.875412 L 326.036506 313.795915 L 325.924575 314.037451 L 325.924575 316.193598 L 325.800862 316.435134 L 325.800862 318.47935 L 325.677148 318.714995 L 325.677148 320.034604 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 328.681616 308.876835 L 328.681616 308.994658 L 328.557903 308.994658 L 328.557903 309.837087 L 328.44008 309.954909 L 328.44008 311.392341 L 328.322258 311.639767 L 328.322258 313.436557 L 328.198545 313.795915 L 328.198545 315.716418 L 328.080722 316.075776 L 328.080722 318.114101 L 327.9629 318.47935 L 327.9629 320.27614 L 327.839187 320.635498 L 327.839187 321.955107 L 327.721364 322.196643 L 327.721364 323.033181 L 327.603542 323.156894 L 327.603542 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.961477 308.876835 L 330.961477 308.994658 L 330.837763 308.994658 L 330.837763 309.595551 L 330.719941 309.837087 L 330.719941 311.032983 L 330.602119 311.392341 L 330.602119 313.071308 L 330.478406 313.436557 L 330.478406 315.474882 L 330.360583 315.716418 L 330.360583 317.872565 L 330.23687 318.114101 L 330.23687 320.034604 L 330.119048 320.27614 L 330.119048 321.837285 L 330.001225 321.955107 L 330.001225 322.915358 L 329.877512 323.033181 L 329.877512 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.235447 308.876835 L 333.123515 308.994658 L 333.123515 309.595551 L 332.999802 309.837087 L 332.999802 311.032983 L 332.876089 311.392341 L 332.876089 313.071308 L 332.764158 313.436557 L 332.764158 315.474882 L 332.640444 315.716418 L 332.640444 317.872565 L 332.522622 318.114101 L 332.522622 319.798959 L 332.398908 320.034604 L 332.398908 321.595749 L 332.281086 321.837285 L 332.281086 322.797536 L 332.157373 322.915358 L 332.157373 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.521199 308.876835 L 335.397485 308.876835 L 335.397485 309.477729 L 335.279663 309.595551 L 335.279663 310.797338 L 335.161841 311.032983 L 335.161841 312.835663 L 335.038127 313.071308 L 335.038127 315.115524 L 334.920305 315.474882 L 334.920305 317.513208 L 334.802483 317.872565 L 334.802483 319.798959 L 334.678769 320.034604 L 334.678769 321.595749 L 334.560947 321.837285 L 334.560947 322.797536 L 334.443125 322.915358 L 334.443125 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.801059 308.876835 L 337.677346 308.876835 L 337.677346 309.354015 L 337.559524 309.477729 L 337.559524 310.555803 L 337.441702 310.797338 L 337.441702 312.476306 L 337.317988 312.835663 L 337.317988 314.756166 L 337.200166 315.115524 L 337.200166 317.15385 L 337.076453 317.513208 L 337.076453 319.439602 L 336.95863 319.798959 L 336.95863 321.354213 L 336.840808 321.595749 L 336.840808 322.673823 L 336.717095 322.797536 L 336.717095 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.120669 322.072929 L 339.120669 322.673823 L 339.002847 322.797536 L 339.002847 323.274716 L 338.879133 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.601921 307.798762 L 318.601921 324.234968 M 318.236672 324.594326 L 314.283735 324.594326 M 314.283735 307.557226 L 318.236672 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.236672 324.234968 L 318.236672 307.798762 L 314.283735 307.798762 M 314.283735 324.234968 L 318.236672 324.234968 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 307.557226 L 325.800862 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.761113 324.594326 L 326.878935 324.476504 L 326.878935 323.87561 L 327.002649 323.751897 L 327.002649 322.314465 L 327.120471 322.072929 L 327.120471 320.034604 L 327.238293 319.916782 L 327.238293 317.395385 L 327.356115 317.277563 L 327.356115 314.514631 L 327.479829 314.278986 L 327.479829 312.116948 L 327.603542 311.875412 L 327.603542 309.713373 L 327.721364 309.595551 L 327.721364 308.275942 L 327.839187 308.158119 L 327.839187 307.557226 L 327.9629 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 329.040974 324.594326 L 329.040974 324.476504 L 329.158796 324.476504 L 329.158796 323.751897 L 329.28251 323.634074 L 329.28251 322.072929 L 329.400332 321.955107 L 329.400332 319.916782 L 329.518154 319.675246 L 329.518154 317.277563 L 329.641867 317.036027 L 329.641867 314.278986 L 329.75969 314.155273 L 329.75969 311.751699 L 329.877512 311.516054 L 329.877512 309.595551 L 330.001225 309.477729 L 330.001225 308.158119 L 330.119048 308.034406 L 330.119048 307.557226 L 330.23687 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 331.320835 324.594326 L 331.320835 324.476504 L 331.438657 324.476504 L 331.438657 323.634074 L 331.556479 323.516252 L 331.556479 321.955107 L 331.680193 321.837285 L 331.680193 319.557424 L 331.803906 319.315888 L 331.803906 316.794492 L 331.921728 316.552956 L 331.921728 314.155273 L 332.039551 313.913737 L 332.039551 311.516054 L 332.157373 311.392341 L 332.157373 309.354015 L 332.281086 309.236193 L 332.281086 308.034406 L 332.398908 307.916584 L 332.398908 307.557226 L 332.522622 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.600696 324.594326 L 333.600696 324.476504 L 333.718518 324.35279 L 333.718518 323.516252 L 333.842231 323.392539 L 333.842231 321.713571 L 333.960054 321.477927 L 333.960054 319.315888 L 334.077876 319.074353 L 334.077876 316.552956 L 334.201589 316.435134 L 334.201589 313.678093 L 334.319411 313.436557 L 334.319411 311.392341 L 334.443125 311.156696 L 334.443125 309.236193 L 334.560947 309.118371 L 334.560947 307.916584 L 334.678769 307.916584 L 334.678769 307.557226 L 334.802483 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.880556 324.594326 L 335.880556 324.35279 L 335.998379 324.35279 L 335.998379 323.392539 L 336.122092 323.274716 L 336.122092 321.477927 L 336.239914 321.354213 L 336.239914 319.074353 L 336.357737 318.95653 L 336.357737 316.435134 L 336.48145 316.193598 L 336.48145 313.436557 L 336.599272 313.318735 L 336.599272 311.032983 L 336.717095 310.797338 L 336.717095 309.118371 L 336.840808 308.994658 L 336.840808 307.916584 L 336.95863 307.798762 L 336.95863 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 338.160417 324.594326 L 338.160417 324.234968 L 338.27824 324.234968 L 338.27824 323.274716 L 338.396062 323.033181 L 338.396062 321.354213 L 338.519775 321.118569 L 338.519775 318.838708 L 338.643489 318.47935 L 338.643489 316.317311 L 338.761311 315.957954 L 338.761311 313.436557 L 338.879133 313.071308 L 338.879133 310.797338 L 339.002847 310.555803 L 339.002847 308.876835 L 339.120669 308.753122 L 339.120669 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.160219 324.594326 L 326.283933 324.594326 L 326.283933 324.117146 L 326.395864 323.993432 L 326.395864 322.797536 L 326.519577 322.673823 L 326.519577 320.75332 L 326.643291 320.635498 L 326.643291 318.231923 L 326.761113 317.996279 L 326.761113 315.35706 L 326.878935 315.115524 L 326.878935 312.594128 L 327.002649 312.476306 L 327.002649 310.314267 L 327.120471 310.196445 L 327.120471 308.6353 L 327.238293 308.517477 L 327.238293 307.675048 L 327.356115 307.675048 L 327.356115 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 328.44008 324.594326 L 328.557903 324.594326 L 328.557903 323.993432 L 328.681616 323.993432 L 328.681616 322.673823 L 328.799438 322.556001 L 328.799438 320.393962 L 328.923152 320.27614 L 328.923152 317.996279 L 329.040974 317.872565 L 329.040974 315.115524 L 329.158796 314.873989 L 329.158796 312.476306 L 329.28251 312.23477 L 329.28251 310.196445 L 329.400332 309.954909 L 329.400332 308.393764 L 329.518154 308.275942 L 329.518154 307.675048 L 329.641867 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.719941 324.594326 L 330.837763 324.594326 L 330.837763 323.993432 L 330.961477 323.87561 L 330.961477 322.556001 L 331.079299 322.314465 L 331.079299 320.27614 L 331.197121 320.034604 L 331.197121 317.636921 L 331.320835 317.395385 L 331.320835 314.873989 L 331.438657 314.638344 L 331.438657 312.23477 L 331.556479 311.993234 L 331.556479 309.837087 L 331.680193 309.713373 L 331.680193 308.275942 L 331.803906 308.275942 L 331.803906 307.557226 L 331.921728 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.999802 324.594326 L 333.123515 324.476504 L 333.123515 323.87561 L 333.235447 323.751897 L 333.235447 322.196643 L 333.35916 322.072929 L 333.35916 320.034604 L 333.482873 319.798959 L 333.482873 317.395385 L 333.600696 317.15385 L 333.600696 314.514631 L 333.718518 314.278986 L 333.718518 311.875412 L 333.842231 311.639767 L 333.842231 309.713373 L 333.960054 309.595551 L 333.960054 308.275942 L 334.077876 308.158119 L 334.077876 307.557226 L 334.201589 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.279663 324.594326 L 335.279663 324.476504 L 335.397485 324.476504 L 335.397485 323.634074 L 335.521199 323.634074 L 335.521199 322.072929 L 335.639021 321.955107 L 335.639021 319.798959 L 335.762734 319.675246 L 335.762734 317.15385 L 335.880556 317.036027 L 335.880556 314.278986 L 335.998379 314.037451 L 335.998379 311.639767 L 336.122092 311.516054 L 336.122092 309.595551 L 336.239914 309.477729 L 336.239914 308.158119 L 336.357737 308.034406 L 336.357737 307.557226 L 336.48145 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.559524 324.594326 L 337.559524 324.476504 L 337.677346 324.476504 L 337.677346 323.634074 L 337.801059 323.516252 L 337.801059 321.955107 L 337.924773 321.837285 L 337.924773 319.439602 L 338.036704 319.315888 L 338.036704 316.794492 L 338.160417 316.552956 L 338.160417 314.037451 L 338.27824 313.795915 L 338.27824 311.516054 L 338.396062 311.274518 L 338.396062 309.354015 L 338.519775 309.236193 L 338.519775 308.034406 L 338.643489 307.916584 L 338.643489 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.120669 322.072929 L 339.120669 308.158119 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 307.557226 L 325.677148 320.034604 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.120669 323.392539 L 339.120669 323.156894 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 322.072929 L 325.677148 323.634074 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.236672 307.557226 L 318.236672 307.798762 M 318.236672 324.234968 L 318.236672 324.594326 M 318.236672 307.798762 L 318.601921 307.798762 M 318.601921 324.234968 L 318.236672 324.234968 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.478208 307.798762 L 318.236672 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.236672 324.476504 L 318.478208 324.234968 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.837566 323.392539 L 318.719743 323.516252 L 318.601921 323.634074 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.601921 308.517477 L 318.837566 308.753122 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip7)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.92335 323.274716 L 341.041172 323.156894 L 341.158994 323.033181 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip8)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 341.158994 309.118371 L 341.041172 308.994658 L 340.92335 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip9)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.92335 323.274716 L 339.120669 323.274716 M 339.002847 323.274716 L 338.879133 323.274716 M 336.840808 323.274716 L 336.599272 323.274716 M 334.560947 323.274716 L 334.443125 323.274716 M 332.281086 323.274716 L 332.157373 323.274716 M 330.001225 323.274716 L 329.877512 323.274716 M 327.721364 323.274716 L 327.603542 323.274716 M 325.677148 323.274716 L 318.837566 323.274716 M 340.92335 308.876835 L 339.120669 308.876835 M 337.924773 308.876835 L 337.801059 308.876835 M 335.639021 308.876835 L 335.521199 308.876835 M 333.35916 308.876835 L 333.235447 308.876835 M 331.079299 308.876835 L 330.961477 308.876835 M 328.799438 308.876835 L 328.681616 308.876835 M 326.519577 308.876835 L 326.395864 308.876835 M 325.677148 308.876835 L 318.837566 308.876835 M 338.160417 324.594326 L 337.559524 324.594326 M 335.880556 324.594326 L 335.279663 324.594326 M 333.600696 324.594326 L 332.999802 324.594326 M 331.320835 324.594326 L 330.719941 324.594326 M 329.040974 324.594326 L 328.44008 324.594326 M 326.761113 324.594326 L 326.283933 324.594326 M 339.120669 307.557226 L 338.643489 307.557226 M 336.95863 307.557226 L 336.48145 307.557226 M 334.678769 307.557226 L 334.201589 307.557226 M 332.398908 307.557226 L 331.921728 307.557226 M 330.23687 307.557226 L 329.641867 307.557226 M 327.9629 307.557226 L 327.356115 307.557226 M 327.603542 323.274716 L 326.761113 324.594326 M 329.877512 323.274716 L 329.040974 324.594326 M 332.157373 323.274716 L 331.320835 324.594326 M 334.443125 323.274716 L 333.600696 324.594326 M 336.717095 323.274716 L 335.880556 324.594326 M 338.879133 323.274716 L 338.160417 324.594326 M 325.677148 307.557226 L 326.395864 308.876835 M 327.9629 307.557226 L 328.681616 308.876835 M 330.23687 307.557226 L 330.961477 308.876835 M 332.522622 307.557226 L 333.235447 308.876835 M 334.802483 307.557226 L 335.521199 308.876835 M 336.95863 307.557226 L 337.801059 308.876835 M 326.160219 324.594326 L 325.677148 323.634074 M 328.44008 324.594326 L 327.721364 323.274716 M 330.719941 324.594326 L 330.001225 323.274716 M 332.999802 324.594326 L 332.281086 323.274716 M 335.279663 324.594326 L 334.443125 323.274716 M 337.559524 324.594326 L 336.717095 323.274716 M 339.120669 323.392539 L 339.002847 323.274716 M 337.924773 308.876835 L 338.643489 307.557226 M 335.639021 308.876835 L 336.357737 307.557226 M 333.35916 308.876835 L 334.077876 307.557226 M 331.079299 308.876835 L 331.921728 307.557226 M 328.799438 308.876835 L 329.641867 307.557226 M 326.519577 308.876835 L 327.356115 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.482393 21.838227 L 32.040493 21.838227 L 32.040493 48.8372 L 36.482393 48.8372 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.075774 27.835381 L 28.075774 42.957869 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.682559 35.393679 L 28.800381 35.275857 L 28.800381 35.034321 L 28.924094 34.916499 L 28.924094 34.798677 L 29.041916 34.674963 L 29.041916 34.557141 L 29.159739 34.557141 L 29.283452 34.439319 L 29.395383 34.439319 L 29.519097 34.315605 L 29.760632 34.315605 L 29.878455 34.197783 L 30.361526 34.197783 L 30.479348 34.315605 L 30.720884 34.315605 L 30.838706 34.439319 L 30.962419 34.439319 L 30.962419 34.557141 L 31.080242 34.557141 L 31.321777 34.798677 L 31.321777 34.916499 L 31.4396 35.034321 L 31.4396 35.753037 L 31.321777 35.87675 L 31.321777 35.994573 L 31.198064 35.994573 L 30.838706 36.353931 L 30.720884 36.353931 L 30.603061 36.477644 L 29.64281 36.477644 L 29.519097 36.353931 L 29.395383 36.353931 L 29.283452 36.236108 L 29.159739 36.236108 L 29.041916 36.118286 L 29.041916 35.994573 L 28.924094 35.994573 L 28.924094 35.87675 L 28.800381 35.753037 L 28.800381 35.517393 Z M 28.682559 35.393679 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.4396 27.835381 L 28.682559 27.835381 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.682559 42.957869 L 28.924094 42.957869 L 29.041916 42.834155 L 31.198064 42.834155 L 31.321777 42.957869 L 31.4396 42.957869 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.840129 27.476023 L 27.840129 28.436274 L 27.963843 28.554097 L 27.963843 36.236108 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.879878 26.875129 L 26.879878 27.116665 L 26.9977 27.116665 L 26.9977 27.717558 L 27.121413 27.835381 L 27.121413 28.436274 L 27.239236 28.67781 L 27.239236 29.396526 L 27.357058 29.638061 L 27.357058 30.4746 L 27.480771 30.716135 L 27.480771 31.676387 L 27.604485 31.912031 L 27.604485 32.75446 L 27.716416 33.119709 L 27.716416 34.197783 L 27.840129 34.439319 L 27.840129 35.393679 L 27.963843 35.635215 L 27.963843 36.236108 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.879878 35.393679 L 26.879878 26.875129 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.239236 43.794407 L 27.121413 43.794407 L 27.121413 41.997617 L 26.9977 41.873904 L 26.9977 37.67354 L 26.879878 37.437896 L 26.879878 35.393679 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.639765 44.153765 L 23.521943 44.035942 L 23.521943 43.193513 L 23.39823 43.075691 L 23.39823 41.037366 L 23.280408 40.79583 L 23.280408 37.915076 L 23.162585 37.67354 L 23.162585 34.439319 L 23.038872 34.197783 L 23.038872 31.075493 L 22.92105 30.957671 L 22.92105 28.436274 L 22.803227 28.318452 L 22.803227 26.875129 L 22.679514 26.875129 L 22.679514 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.442446 44.153765 L 25.442446 43.676585 L 25.318733 43.552871 L 25.318733 41.873904 L 25.200911 41.756082 L 25.200911 39.116863 L 25.077197 38.875327 L 25.077197 35.753037 L 24.959375 35.517393 L 24.959375 32.27728 L 24.841553 32.035745 L 24.841553 29.15499 L 24.717839 29.037168 L 24.717839 27.234487 L 24.600017 27.116665 L 24.600017 26.639485 L 24.482195 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.879878 35.393679 L 26.879878 33.355354 L 26.762056 33.119709 L 26.762056 30.356777 L 26.638342 30.115242 L 26.638342 27.835381 L 26.52052 27.717558 L 26.52052 26.639485 L 26.396807 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 22.196443 27.835381 L 22.196443 28.67781 L 22.320156 28.795632 L 22.320156 30.716135 L 22.443869 30.957671 L 22.443869 33.479067 L 22.561692 33.838425 L 22.561692 36.595466 L 22.679514 36.954824 L 22.679514 39.476221 L 22.803227 39.717756 L 22.803227 41.638259 L 22.92105 41.873904 L 22.92105 42.957869 L 23.038872 42.957869 L 23.038872 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.999123 27.717558 L 23.999123 27.959094 L 24.122837 28.076916 L 24.122837 29.396526 L 24.240659 29.514348 L 24.240659 31.912031 L 24.358481 32.035745 L 24.358481 34.798677 L 24.482195 35.034321 L 24.482195 37.797253 L 24.600017 37.915076 L 24.600017 40.436472 L 24.717839 40.678008 L 24.717839 42.356975 L 24.841553 42.474797 L 24.841553 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.801804 27.717558 L 25.919626 27.717558 L 25.919626 28.318452 L 26.037449 28.554097 L 26.037449 30.115242 L 26.161162 30.356777 L 26.161162 32.872283 L 26.278984 33.231641 L 26.278984 35.753037 L 26.396807 36.118286 L 26.396807 38.993149 L 26.52052 39.234685 L 26.52052 41.278901 L 26.638342 41.514546 L 26.638342 42.716333 L 26.762056 42.834155 L 26.762056 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.716416 27.717558 L 27.716416 27.835381 L 27.840129 27.835381 L 27.840129 28.913454 L 27.963843 29.037168 L 27.963843 30.233064 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.762056 26.639485 L 26.879878 26.639485 L 26.879878 26.875129 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24.959375 26.639485 L 24.959375 26.875129 L 25.077197 26.998843 L 25.077197 28.554097 L 25.200911 28.67781 L 25.200911 31.193315 L 25.318733 31.317029 L 25.318733 34.557141 L 25.442446 34.674963 L 25.442446 38.032898 L 25.560268 38.156611 L 25.560268 41.037366 L 25.678091 41.155188 L 25.678091 43.193513 L 25.801804 43.317227 L 25.801804 44.153765 L 25.919626 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.038872 26.639485 L 23.162585 26.639485 L 23.162585 27.717558 L 23.280408 27.835381 L 23.280408 30.115242 L 23.39823 30.233064 L 23.39823 33.231641 L 23.521943 33.479067 L 23.521943 36.713289 L 23.639765 36.954824 L 23.639765 39.959292 L 23.763479 40.194937 L 23.763479 42.474797 L 23.881301 42.59262 L 23.881301 43.912229 L 23.999123 43.912229 L 23.999123 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.837085 41.396724 L 21.837085 41.756082 L 21.960798 41.873904 L 21.960798 43.552871 L 22.07862 43.676585 L 22.07862 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.60144 34.197783 L 21.60144 35.393679 L 21.719263 35.753037 L 21.719263 38.875327 L 21.837085 39.234685 L 21.837085 40.194937 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.359905 28.076916 L 21.359905 28.913454 L 21.477727 29.278703 L 21.477727 32.035745 L 21.60144 32.395102 L 21.60144 32.75446 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.960798 27.835381 L 21.960798 29.037168 L 22.07862 29.278703 L 22.07862 31.317029 L 22.196443 31.552673 L 22.196443 33.838425 L 22.320156 34.197783 L 22.320156 36.954824 L 22.443869 37.314182 L 22.443869 39.835579 L 22.561692 40.071223 L 22.561692 41.997617 L 22.679514 42.11544 L 22.679514 42.957869 L 22.803227 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.763479 27.717558 L 23.763479 28.194739 L 23.881301 28.318452 L 23.881301 29.638061 L 23.999123 29.873706 L 23.999123 32.035745 L 24.122837 32.395102 L 24.122837 35.275857 L 24.240659 35.635215 L 24.240659 38.156611 L 24.358481 38.515969 L 24.358481 40.678008 L 24.482195 40.913652 L 24.482195 42.474797 L 24.600017 42.59262 L 24.600017 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.560268 27.717558 L 25.678091 27.717558 L 25.678091 28.554097 L 25.801804 28.795632 L 25.801804 30.4746 L 25.919626 30.716135 L 25.919626 33.119709 L 26.037449 33.355354 L 26.037449 36.353931 L 26.161162 36.713289 L 26.161162 39.116863 L 26.278984 39.476221 L 26.278984 41.396724 L 26.396807 41.638259 L 26.396807 42.834155 L 26.52052 42.957869 L 26.52052 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.480771 27.717558 L 27.480771 27.835381 L 27.604485 27.959094 L 27.604485 29.278703 L 27.716416 29.396526 L 27.716416 31.440742 L 27.840129 31.552673 L 27.840129 34.315605 L 27.963843 34.557141 L 27.963843 36.236108 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 26.751416 L 15.239038 26.639485 L 15.121216 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.638144 27.717558 L 14.638144 28.194739 L 14.761858 28.194739 L 14.761858 29.755884 L 14.87968 29.873706 L 14.87968 32.395102 L 14.997502 32.636638 L 14.997502 35.393679 L 15.121216 35.635215 L 15.121216 38.274434 L 15.239038 38.515969 L 15.239038 39.234685 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.359905 39.594043 L 21.359905 36.713289 L 21.236191 36.477644 L 21.236191 34.439319 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.719263 44.153765 L 21.719263 43.912229 L 21.60144 43.794407 L 21.60144 42.474797 L 21.477727 42.233262 L 21.477727 41.997617 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 13.677893 26.639485 L 13.677893 26.751416 L 13.801606 26.751416 L 13.801606 28.076916 L 13.919428 28.194739 L 13.919428 30.592422 L 14.037251 30.833957 L 14.037251 33.838425 L 14.160964 34.07407 L 14.160964 37.314182 L 14.278786 37.555718 L 14.278786 40.554294 L 14.396609 40.678008 L 14.396609 42.834155 L 14.520322 42.957869 L 14.520322 44.035942 L 14.638144 44.035942 L 14.638144 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.396609 27.717558 L 14.396609 28.318452 L 14.520322 28.554097 L 14.520322 30.115242 L 14.638144 30.4746 L 14.638144 32.518816 L 14.761858 32.872283 L 14.761858 35.517393 L 14.87968 35.87675 L 14.87968 38.639683 L 14.997502 38.875327 L 14.997502 41.037366 L 15.121216 41.278901 L 15.121216 42.59262 L 15.239038 42.716333 L 15.239038 42.957869 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.640991 44.153765 L 8.517277 44.153765 L 8.517277 43.44094 L 8.399455 43.193513 L 8.399455 41.278901 L 8.281633 40.913652 L 8.281633 38.156611 L 8.15792 37.67354 L 8.15792 34.916499 L 8.040097 34.439319 L 8.040097 31.317029 L 7.922275 31.075493 L 7.922275 28.554097 L 7.798562 28.318452 L 7.798562 26.998843 L 7.680739 26.875129 L 7.680739 26.751416 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.443672 44.153765 L 10.443672 43.794407 L 10.319958 43.676585 L 10.319958 42.11544 L 10.196245 41.873904 L 10.196245 39.352507 L 10.078423 39.116863 L 10.078423 35.994573 L 9.9606 35.753037 L 9.9606 32.518816 L 9.842778 32.27728 L 9.842778 29.514348 L 9.719065 29.278703 L 9.719065 27.352309 L 9.601242 27.352309 L 9.601242 26.639485 L 9.477529 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.358283 44.153765 L 12.358283 44.035942 L 12.240461 44.035942 L 12.240461 42.834155 L 12.122639 42.716333 L 12.122639 40.436472 L 11.998925 40.31865 L 11.998925 37.314182 L 11.881103 37.072646 L 11.881103 33.714712 L 11.763281 33.59689 L 11.763281 30.4746 L 11.639568 30.356777 L 11.639568 28.076916 L 11.521745 27.959094 L 11.521745 26.751416 L 11.398032 26.751416 L 11.398032 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.278786 44.153765 L 14.160964 44.153765 L 14.160964 43.44094 L 14.037251 43.317227 L 14.037251 41.514546 L 13.919428 41.278901 L 13.919428 38.515969 L 13.801606 38.274434 L 13.801606 35.034321 L 13.677893 34.916499 L 13.677893 31.676387 L 13.560071 31.440742 L 13.560071 28.913454 L 13.442248 28.67781 L 13.442248 26.998843 L 13.318535 26.998843 L 13.318535 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.079846 27.835381 L 7.680739 26.751416 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.079846 27.835381 L 7.197668 27.835381 L 7.197668 28.913454 L 7.321381 29.15499 L 7.321381 31.075493 L 7.439204 31.440742 L 7.439204 33.956248 L 7.557026 34.315605 L 7.557026 37.072646 L 7.680739 37.437896 L 7.680739 39.717756 L 7.798562 39.959292 L 7.798562 41.873904 L 7.922275 41.997617 L 7.922275 42.957869 L 8.040097 42.957869 L 8.040097 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9.000349 27.717558 L 9.000349 28.076916 L 9.118171 28.194739 L 9.118171 29.514348 L 9.235993 29.873706 L 9.235993 31.912031 L 9.359707 32.27728 L 9.359707 35.034321 L 9.477529 35.393679 L 9.477529 38.032898 L 9.601242 38.274434 L 9.601242 40.79583 L 9.719065 41.037366 L 9.719065 42.474797 L 9.842778 42.59262 L 9.842778 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.803029 27.717558 L 10.920852 27.717558 L 10.920852 28.554097 L 11.038674 28.67781 L 11.038674 30.356777 L 11.162387 30.592422 L 11.162387 32.872283 L 11.28021 33.231641 L 11.28021 36.236108 L 11.398032 36.595466 L 11.398032 38.993149 L 11.521745 39.352507 L 11.521745 41.514546 L 11.639568 41.756082 L 11.639568 42.834155 L 11.763281 42.834155 L 11.763281 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.717641 27.717558 L 12.717641 27.835381 L 12.841355 27.835381 L 12.841355 29.15499 L 12.959177 29.396526 L 12.959177 31.193315 L 13.076999 31.552673 L 13.076999 33.956248 L 13.200713 34.315605 L 13.200713 37.314182 L 13.318535 37.67354 L 13.318535 39.959292 L 13.442248 40.194937 L 13.442248 42.11544 L 13.560071 42.233262 L 13.560071 42.957869 L 13.677893 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11.763281 26.639485 L 11.881103 26.639485 L 11.881103 27.476023 L 11.998925 27.593845 L 11.998925 29.514348 L 12.122639 29.755884 L 12.122639 32.636638 L 12.240461 32.75446 L 12.240461 35.994573 L 12.358283 36.236108 L 12.358283 39.352507 L 12.481997 39.594043 L 12.481997 42.11544 L 12.599819 42.233262 L 12.599819 43.794407 L 12.717641 43.794407 L 12.717641 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9.9606 26.639485 L 9.9606 26.998843 L 10.078423 26.998843 L 10.078423 28.67781 L 10.196245 28.795632 L 10.196245 31.440742 L 10.319958 31.552673 L 10.319958 34.674963 L 10.443672 34.916499 L 10.443672 38.156611 L 10.561494 38.392256 L 10.561494 41.396724 L 10.679316 41.514546 L 10.679316 43.44094 L 10.803029 43.44094 L 10.803029 44.153765 L 10.920852 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.040097 26.639485 L 8.15792 26.751416 L 8.15792 27.835381 L 8.281633 27.959094 L 8.281633 30.233064 L 8.399455 30.4746 L 8.399455 33.59689 L 8.517277 33.838425 L 8.517277 37.072646 L 8.640991 37.314182 L 8.640991 40.31865 L 8.764704 40.554294 L 8.764704 42.716333 L 8.876635 42.834155 L 8.876635 44.035942 L 9.000349 44.035942 L 9.000349 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.237417 26.751416 L 6.237417 27.352309 L 6.36113 27.352309 L 6.36113 29.278703 L 6.478952 29.514348 L 6.478952 32.27728 L 6.602666 32.518816 L 6.602666 35.753037 L 6.720488 35.994573 L 6.720488 39.116863 L 6.83831 39.352507 L 6.83831 41.873904 L 6.962024 42.11544 L 6.962024 43.676585 L 7.079846 43.794407 L 7.079846 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.83831 27.835381 L 6.962024 27.959094 L 6.962024 29.15499 L 7.079846 29.396526 L 7.079846 31.193315 L 7.197668 31.552673 L 7.197668 34.197783 L 7.321381 34.557141 L 7.321381 37.437896 L 7.439204 37.797253 L 7.439204 39.959292 L 7.557026 40.31865 L 7.557026 42.11544 L 7.680739 42.233262 L 7.680739 43.075691 L 7.798562 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.764704 27.717558 L 8.764704 28.194739 L 8.876635 28.318452 L 8.876635 29.873706 L 9.000349 30.233064 L 9.000349 32.395102 L 9.118171 32.75446 L 9.118171 35.275857 L 9.235993 35.635215 L 9.235993 38.515969 L 9.359707 38.751614 L 9.359707 40.913652 L 9.477529 41.155188 L 9.477529 42.474797 L 9.601242 42.59262 L 9.601242 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.561494 27.717558 L 10.679316 27.717558 L 10.679316 28.554097 L 10.803029 28.795632 L 10.803029 30.716135 L 10.920852 31.075493 L 10.920852 33.355354 L 11.038674 33.714712 L 11.038674 36.353931 L 11.162387 36.713289 L 11.162387 39.476221 L 11.28021 39.717756 L 11.28021 41.638259 L 11.398032 41.756082 L 11.398032 42.957869 L 11.521745 42.957869 L 11.521745 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.481997 27.717558 L 12.481997 27.959094 L 12.599819 28.076916 L 12.599819 29.15499 L 12.717641 29.396526 L 12.717641 31.676387 L 12.841355 32.035745 L 12.841355 34.557141 L 12.959177 34.916499 L 12.959177 37.437896 L 13.076999 37.797253 L 13.076999 40.31865 L 13.200713 40.678008 L 13.200713 42.233262 L 13.318535 42.356975 L 13.318535 43.075691 L 13.442248 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.237417 26.751416 L 6.83831 27.835381 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.799985 44.153765 L 4.799985 43.676585 L 4.682163 43.552871 L 4.682163 41.997617 L 4.558449 41.756082 L 4.558449 39.116863 L 4.440627 38.875327 L 4.440627 35.635215 L 4.322805 35.275857 L 4.322805 32.035745 L 4.199091 31.794209 L 4.199091 31.552673 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.480376 27.352309 L 3.480376 27.234487 L 3.604089 27.234487 L 3.604089 27.352309 L 3.721911 27.352309 L 3.721911 27.717558 L 3.839733 27.835381 L 3.839733 28.318452 L 3.963447 28.436274 L 3.963447 29.278703 L 4.075378 29.396526 L 4.075378 30.356777 L 4.199091 30.592422 L 4.199091 31.552673 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.356662 27.717558 L 3.356662 27.959094 L 3.480376 28.076916 L 3.480376 29.396526 L 3.604089 29.514348 L 3.604089 31.912031 L 3.721911 32.27728 L 3.721911 34.674963 L 3.839733 35.034321 L 3.839733 37.67354 L 3.963447 38.032898 L 3.963447 40.554294 L 4.075378 40.79583 L 4.075378 42.233262 L 4.199091 42.474797 L 4.199091 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.159343 27.717558 L 5.283056 27.717558 L 5.283056 28.318452 L 5.400878 28.554097 L 5.400878 30.115242 L 5.518701 30.356777 L 5.518701 32.872283 L 5.642414 33.231641 L 5.642414 35.87675 L 5.760236 36.236108 L 5.760236 38.639683 L 5.878059 38.993149 L 5.878059 41.278901 L 6.001772 41.514546 L 6.001772 42.716333 L 6.119594 42.834155 L 6.119594 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.079846 27.717558 L 7.079846 27.835381 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.720488 44.153765 L 6.720488 44.035942 L 6.602666 43.912229 L 6.602666 42.59262 L 6.478952 42.474797 L 6.478952 40.071223 L 6.36113 39.959292 L 6.36113 36.837002 L 6.237417 36.595466 L 6.237417 33.355354 L 6.119594 33.119709 L 6.119594 30.115242 L 6.001772 29.997419 L 6.001772 27.835381 L 5.878059 27.717558 L 5.878059 26.639485 L 5.760236 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.680739 26.751416 L 7.680739 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.199091 31.552673 L 4.199091 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.121018 27.959094 L 3.121018 28.076916 L 3.23884 28.194739 L 3.23884 31.075493 L 3.356662 31.440742 L 3.356662 36.236108 L 3.480376 36.595466 L 3.480376 40.79583 L 3.604089 41.037366 L 3.604089 43.44094 L 3.721911 43.44094 L 3.721911 43.552871 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.121018 27.959094 L 3.121018 27.717558 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.997304 42.957869 L 2.997304 27.835381 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.322805 26.639485 L 4.322805 26.875129 L 4.440627 26.998843 L 4.440627 28.554097 L 4.558449 28.67781 L 4.558449 31.193315 L 4.682163 31.440742 L 4.682163 34.557141 L 4.799985 34.798677 L 4.799985 38.032898 L 4.923698 38.156611 L 4.923698 41.037366 L 5.041521 41.155188 L 5.041521 43.193513 L 5.159343 43.317227 L 5.159343 44.153765 L 5.283056 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.119594 26.639485 L 6.237417 26.639485 L 6.237417 26.751416 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.121018 27.959094 L 3.121018 28.076916 L 3.23884 28.194739 L 3.23884 29.755884 L 3.356662 29.997419 L 3.356662 32.153567 L 3.480376 32.518816 L 3.480376 35.158035 L 3.604089 35.517393 L 3.604089 38.156611 L 3.721911 38.515969 L 3.721911 40.678008 L 3.839733 40.913652 L 3.839733 42.474797 L 3.963447 42.59262 L 3.963447 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.923698 27.717558 L 5.041521 27.717558 L 5.041521 28.436274 L 5.159343 28.67781 L 5.159343 30.592422 L 5.283056 30.833957 L 5.283056 33.231641 L 5.400878 33.59689 L 5.400878 36.236108 L 5.518701 36.595466 L 5.518701 39.234685 L 5.642414 39.476221 L 5.642414 41.514546 L 5.760236 41.638259 L 5.760236 42.834155 L 5.878059 42.834155 L 5.878059 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.83831 27.717558 L 6.83831 27.835381 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.83831 27.835381 L 7.079846 27.835381 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip10)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1.076801 42.957869 L 1.076801 27.835381 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.717443 42.59262 L 0.717443 28.076916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 46.675161 L 15.239038 45.231839 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 35.393679 L 15.239038 45.231839 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 25.55552 L 15.239038 35.393679 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 25.55552 L 15.239038 23.994375 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 45.231839 L 15.239038 45.956445 L 15.35686 46.19209 L 15.35686 46.557339 L 15.480573 46.675161 L 15.480573 46.916697 L 15.604287 47.158233 L 15.716218 47.393877 L 15.716218 47.51759 L 15.839931 47.753235 L 15.963645 47.994771 L 16.075576 48.236306 L 16.199289 48.477842 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.439402 45.355552 L 19.79876 45.355552 L 19.79876 44.996194 L 19.680937 44.754658 L 19.680937 44.277478 L 19.557224 44.035942 L 19.557224 43.676585 L 19.439402 43.44094 L 19.321579 43.193513 L 19.321579 43.075691 L 19.197866 42.834155 L 19.080044 42.59262 L 18.962221 42.356975 L 18.838508 42.11544 L 18.720686 41.873904 L 16.199289 41.873904 L 16.075576 42.11544 L 15.963645 42.356975 L 15.839931 42.59262 L 15.716218 42.834155 L 15.716218 43.075691 L 15.604287 43.193513 L 15.480573 43.44094 L 15.480573 43.676585 L 15.35686 43.794407 L 15.35686 44.277478 L 15.239038 44.3953 L 15.239038 45.231839 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16.199289 48.477842 L 18.720686 48.477842 L 18.838508 48.236306 L 18.962221 48.118484 L 18.962221 47.994771 L 19.080044 47.753235 L 19.197866 47.635413 L 19.197866 47.51759 L 19.321579 47.276055 L 19.321579 47.158233 L 19.439402 47.034519 L 19.439402 46.916697 L 19.557224 46.798875 L 19.557224 46.557339 L 19.680937 46.315803 L 19.680937 46.074268 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 46.074268 L 19.439402 45.355552 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.60144 26.515771 L 22.196443 26.156413 L 21.359905 26.0327 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.557224 24.23591 L 19.557224 23.994375 L 19.439402 23.752839 L 19.197866 23.275659 L 19.197866 23.034123 L 19.080044 22.798479 L 18.962221 22.674765 L 18.838508 22.556943 L 18.838508 22.439121 L 18.720686 22.315407 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 23.752839 L 19.557224 24.23591 M 22.196443 27.835381 L 21.118369 28.076916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.557224 24.23591 L 19.557224 24.713091 L 19.680937 25.196162 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 25.313984 L 19.680937 25.196162 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.680937 25.55552 L 19.680937 25.196162 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 18.720686 22.315407 L 16.199289 22.315407 L 16.075576 22.556943 L 15.963645 22.674765 L 15.716218 23.157837 L 15.716218 23.393481 L 15.604287 23.635017 L 15.480573 23.752839 L 15.480573 23.994375 L 15.35686 24.23591 L 15.35686 24.595268 L 15.239038 24.836804 L 15.239038 26.274236 L 15.35686 26.515771 L 15.35686 26.875129 L 15.480573 27.116665 L 15.480573 27.234487 L 15.604287 27.476023 L 15.716218 27.717558 L 15.716218 27.959094 L 15.839931 28.076916 L 15.963645 28.318452 L 16.075576 28.554097 L 16.199289 28.795632 L 18.720686 28.795632 L 18.838508 28.554097 L 18.962221 28.318452 L 19.080044 28.076916 L 19.197866 27.959094 L 19.321579 27.717558 L 19.321579 27.476023 L 19.439402 27.234487 L 19.557224 27.116665 L 19.557224 26.639485 L 19.680937 26.515771 L 19.680937 25.914878 L 19.79876 25.673342 L 19.79876 25.55552 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 31.912031 L 19.680937 31.676387 L 19.680937 30.592422 L 19.557224 30.356777 L 19.557224 29.873706 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 35.393679 L 19.79876 35.034321 L 19.680937 34.557141 L 19.680937 33.479067 L 19.557224 33.119709 L 19.557224 32.27728 L 19.439402 31.912031 L 19.321579 31.440742 L 19.321579 31.075493 L 19.197866 30.592422 L 19.080044 30.233064 L 18.962221 29.755884 L 18.838508 29.278703 L 18.720686 28.795632 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 29.638061 L 19.557224 29.873706 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.359905 32.518816 L 22.196443 33.838425 L 21.118369 34.439319 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 33.714712 L 22.196443 33.838425 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 20.872085 L 21.118369 49.797451 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 20.872085 L 19.79876 49.797451 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 25.673342 L 22.196443 27.835381 M 21.118369 23.393481 L 22.196443 26.156413 M 19.79876 46.916697 L 19.680937 46.798875 M 21.118369 43.794407 L 21.359905 43.552871 M 21.60144 44.153765 L 21.719263 44.035942 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 47.393877 L 22.196443 44.513123 L 21.118369 44.035942 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 38.875327 L 19.557224 38.751614 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.680937 40.436472 L 19.680937 39.594043 L 19.557224 39.234685 L 19.557224 38.751614 L 19.680937 38.751614 L 19.79876 38.639683 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 18.720686 41.873904 L 18.838508 41.396724 L 18.962221 41.037366 L 19.197866 40.071223 L 19.321579 39.717756 L 19.321579 39.234685 L 19.557224 38.515969 L 19.557224 37.67354 L 19.680937 37.314182 L 19.680937 36.118286 L 19.79876 35.753037 L 19.79876 35.393679 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16.199289 28.795632 L 16.075576 29.278703 L 15.963645 29.755884 L 15.839931 30.233064 L 15.716218 30.592422 L 15.716218 31.075493 L 15.604287 31.440742 L 15.480573 31.912031 L 15.480573 32.27728 L 15.35686 32.636638 L 15.35686 33.479067 L 15.239038 33.838425 L 15.239038 36.837002 L 15.35686 37.314182 L 15.35686 38.032898 L 15.480573 38.515969 L 15.480573 38.875327 L 15.604287 39.234685 L 15.716218 39.717756 L 15.716218 40.071223 L 15.963645 41.037366 L 16.075576 41.396724 L 16.199289 41.873904 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 39.234685 L 22.196443 40.79583 L 21.118369 42.716333 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip11)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 45.355552 L 19.922473 45.355552 M 32.040493 42.957869 L 31.4396 42.957869 M 28.682559 42.957869 L 28.075774 42.957869 M 32.040493 27.835381 L 31.4396 27.835381 M 28.682559 27.835381 L 28.075774 27.835381 M 28.075774 42.957869 L 27.239236 43.794407 M 28.075774 27.835381 L 27.840129 27.476023 M 23.639765 44.153765 L 23.038872 43.075691 M 25.442446 44.153765 L 24.841553 43.075691 M 22.07862 27.593845 L 22.679514 26.639485 M 23.999123 27.717558 L 24.482195 26.639485 M 25.801804 27.717558 L 26.396807 26.639485 M 27.716416 27.717558 L 27.840129 27.476023 M 27.239236 43.794407 L 26.762056 43.075691 M 26.879878 26.639485 L 27.480771 27.717558 M 24.959375 26.639485 L 25.560268 27.717558 M 23.038872 26.639485 L 23.763479 27.717558 M 22.803227 43.075691 L 22.07862 44.153765 M 24.717839 43.075691 L 23.999123 44.153765 M 26.52052 43.075691 L 25.919626 44.153765 M 14.520322 27.717558 L 15.121216 26.639485 M 21.719263 44.153765 L 21.118369 43.075691 M 13.677893 26.639485 L 14.396609 27.717558 M 15.239038 43.193513 L 14.638144 44.153765 M 8.517277 44.153765 L 8.040097 43.075691 M 10.443672 44.153765 L 9.842778 43.075691 M 12.358283 44.153765 L 11.763281 43.075691 M 14.160964 44.153765 L 13.677893 43.075691 M 9.000349 27.717558 L 9.477529 26.639485 M 10.803029 27.717558 L 11.398032 26.639485 M 12.717641 27.717558 L 13.318535 26.639485 M 11.763281 26.639485 L 12.481997 27.717558 M 9.9606 26.639485 L 10.561494 27.717558 M 8.040097 26.639485 L 8.764704 27.717558 M 7.798562 43.075691 L 7.079846 44.153765 M 9.601242 43.075691 L 9.000349 44.153765 M 11.521745 43.075691 L 10.920852 44.153765 M 13.442248 43.075691 L 12.717641 44.153765 M 4.799985 44.153765 L 4.199091 43.075691 M 3.356662 27.717558 L 3.480376 27.352309 M 5.159343 27.717558 L 5.760236 26.639485 M 7.079846 27.717558 L 7.680739 26.639485 M 6.720488 44.153765 L 6.119594 43.075691 M 2.997304 27.835381 L 3.121018 27.717558 M 3.480376 27.352309 L 4.199091 26.639485 M 2.997304 42.957869 L 3.721911 43.552871 M 4.322805 26.639485 L 4.923698 27.717558 M 6.237417 26.639485 L 6.83831 27.717558 M 4.075378 43.075691 L 3.721911 43.552871 M 5.878059 43.075691 L 5.283056 44.153765 M 3.121018 27.717558 L 3.356662 27.717558 M 3.963447 43.075691 L 4.199091 43.075691 M 4.923698 27.717558 L 5.159343 27.717558 M 5.878059 43.075691 L 6.119594 43.075691 M 6.83831 27.717558 L 7.079846 27.717558 M 7.798562 43.075691 L 8.040097 43.075691 M 8.764704 27.717558 L 9.000349 27.717558 M 9.601242 43.075691 L 9.842778 43.075691 M 10.561494 27.717558 L 10.803029 27.717558 M 11.521745 43.075691 L 11.763281 43.075691 M 12.481997 27.717558 L 12.717641 27.717558 M 13.442248 43.075691 L 13.677893 43.075691 M 14.396609 27.717558 L 14.638144 27.717558 M 22.803227 43.075691 L 23.038872 43.075691 M 23.763479 27.717558 L 23.999123 27.717558 M 24.600017 43.075691 L 24.841553 43.075691 M 25.560268 27.717558 L 25.801804 27.717558 M 26.52052 43.075691 L 26.762056 43.075691 M 27.480771 27.717558 L 27.716416 27.717558 M 2.997304 42.957869 L 1.076801 42.957869 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip12)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.997304 27.835381 L 1.076801 27.835381 L 0.717443 28.076916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip13)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.717443 42.59262 L 1.076801 42.957869 M 15.239038 46.675161 L 16.199289 48.477842 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 46.675161 L 19.79876 46.557339 L 19.680937 46.315803 L 19.680937 45.838623 L 19.557224 45.71491 L 19.557224 45.591196 L 19.439402 45.355552 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.680937 23.876553 L 18.720686 22.315407 M 19.79876 20.872085 L 21.118369 20.872085 M 19.79876 49.797451 L 21.118369 49.797451 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 24.713091 L 21.118369 24.954626 L 21.236191 25.196162 L 21.236191 25.673342 L 21.359905 25.914878 L 21.477727 26.156413 L 21.477727 26.392058 L 21.60144 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 31.676387 L 21.118369 31.794209 L 21.236191 31.912031 L 21.236191 32.27728 L 21.359905 32.395102 L 21.359905 32.518816 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 23.994375 L 16.199289 22.315407 M 21.60144 44.153765 L 21.60144 44.277478 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 40.79583 L 19.79876 40.554294 L 19.680937 40.436472 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 46.675161 L 18.720686 48.477842 M 25.919626 44.153765 L 25.442446 44.153765 M 23.999123 44.153765 L 23.639765 44.153765 M 22.07862 44.153765 L 21.719263 44.153765 M 14.638144 44.153765 L 14.278786 44.153765 M 12.717641 44.153765 L 12.358283 44.153765 M 10.920852 44.153765 L 10.443672 44.153765 M 9.000349 44.153765 L 8.640991 44.153765 M 7.079846 44.153765 L 6.720488 44.153765 M 5.283056 44.153765 L 4.799985 44.153765 M 26.762056 26.639485 L 26.396807 26.639485 M 24.959375 26.639485 L 24.600017 26.639485 M 23.038872 26.639485 L 22.679514 26.639485 M 15.239038 26.639485 L 15.121216 26.639485 M 13.677893 26.639485 L 13.318535 26.639485 M 11.763281 26.639485 L 11.398032 26.639485 M 9.9606 26.639485 L 9.477529 26.639485 M 8.040097 26.639485 L 7.680739 26.639485 M 6.119594 26.639485 L 5.760236 26.639485 M 4.322805 26.639485 L 4.199091 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.482393 299.751501 L 32.040493 299.751501 L 32.040493 326.756364 L 36.482393 326.756364 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.075774 305.636723 L 28.075774 320.75332 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.682559 313.195021 L 28.800381 313.071308 L 28.800381 312.835663 L 28.924094 312.717841 L 28.924094 312.594128 L 29.041916 312.594128 L 29.041916 312.476306 L 29.159739 312.352592 L 29.283452 312.352592 L 29.395383 312.23477 L 29.519097 312.23477 L 29.64281 312.116948 L 30.603061 312.116948 L 30.720884 312.23477 L 30.838706 312.23477 L 30.962419 312.352592 L 31.080242 312.476306 L 31.198064 312.594128 L 31.321777 312.594128 L 31.321777 312.717841 L 31.4396 312.835663 L 31.4396 313.554379 L 31.321777 313.678093 L 31.321777 313.795915 L 31.198064 313.913737 L 31.080242 314.037451 L 30.962419 314.037451 L 30.962419 314.155273 L 30.838706 314.155273 L 30.720884 314.278986 L 30.479348 314.278986 L 30.361526 314.396809 L 29.878455 314.396809 L 29.760632 314.278986 L 29.519097 314.278986 L 29.395383 314.155273 L 29.283452 314.155273 L 29.159739 314.037451 L 29.041916 314.037451 L 29.041916 313.913737 L 28.924094 313.795915 L 28.924094 313.678093 L 28.800381 313.554379 L 28.800381 313.318735 Z M 28.682559 313.195021 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.4396 305.636723 L 31.321777 305.636723 L 31.198064 305.754545 L 29.041916 305.754545 L 28.924094 305.636723 L 28.682559 305.636723 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.682559 320.75332 L 31.4396 320.75332 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.840129 305.395187 L 27.840129 306.231725 L 27.963843 306.355439 L 27.963843 314.155273 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.879878 304.794294 L 26.879878 304.912116 L 26.9977 305.035829 L 26.9977 305.518901 L 27.121413 305.636723 L 27.121413 306.355439 L 27.239236 306.479152 L 27.239236 307.31569 L 27.357058 307.557226 L 27.357058 308.393764 L 27.480771 308.517477 L 27.480771 309.595551 L 27.604485 309.837087 L 27.604485 310.673625 L 27.716416 310.915161 L 27.716416 311.993234 L 27.840129 312.23477 L 27.840129 313.318735 L 27.963843 313.554379 L 27.963843 314.155273 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.879878 313.195021 L 26.879878 304.794294 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.239236 321.713571 L 27.121413 321.713571 L 27.121413 319.798959 L 26.9977 319.675246 L 26.9977 315.474882 L 26.879878 315.35706 L 26.879878 313.195021 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.639765 321.955107 L 23.521943 321.955107 L 23.521943 320.994856 L 23.39823 320.877033 L 23.39823 318.838708 L 23.280408 318.714995 L 23.280408 315.716418 L 23.162585 315.592705 L 23.162585 312.23477 L 23.038872 312.116948 L 23.038872 308.994658 L 22.92105 308.753122 L 22.92105 306.355439 L 22.803227 306.119794 L 22.803227 304.794294 L 22.679514 304.676471 L 22.679514 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.442446 321.955107 L 25.442446 321.595749 L 25.318733 321.477927 L 25.318733 319.798959 L 25.200911 319.675246 L 25.200911 317.036027 L 25.077197 316.794492 L 25.077197 313.554379 L 24.959375 313.436557 L 24.959375 310.196445 L 24.841553 309.954909 L 24.841553 307.074155 L 24.717839 306.83851 L 24.717839 305.153652 L 24.600017 305.035829 L 24.600017 304.440827 L 24.482195 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.879878 313.195021 L 26.879878 311.274518 L 26.762056 311.032983 L 26.762056 308.158119 L 26.638342 308.034406 L 26.638342 305.754545 L 26.52052 305.636723 L 26.52052 304.552758 L 26.396807 304.552758 L 26.396807 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 22.196443 305.636723 L 22.196443 306.591083 L 22.320156 306.714797 L 22.320156 308.6353 L 22.443869 308.876835 L 22.443869 311.392341 L 22.561692 311.751699 L 22.561692 314.396809 L 22.679514 314.756166 L 22.679514 317.277563 L 22.803227 317.636921 L 22.803227 319.557424 L 22.92105 319.675246 L 22.92105 320.75332 L 23.038872 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.999123 305.518901 L 23.999123 305.872367 L 24.122837 305.872367 L 24.122837 307.197868 L 24.240659 307.439404 L 24.240659 309.713373 L 24.358481 309.954909 L 24.358481 312.717841 L 24.482195 312.959377 L 24.482195 315.592705 L 24.600017 315.83424 L 24.600017 318.355637 L 24.717839 318.47935 L 24.717839 320.27614 L 24.841553 320.27614 L 24.841553 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.801804 305.518901 L 25.919626 305.518901 L 25.919626 306.231725 L 26.037449 306.355439 L 26.037449 307.916584 L 26.161162 308.158119 L 26.161162 310.797338 L 26.278984 311.156696 L 26.278984 313.678093 L 26.396807 314.037451 L 26.396807 316.794492 L 26.52052 317.15385 L 26.52052 319.074353 L 26.638342 319.315888 L 26.638342 320.517675 L 26.762056 320.635498 L 26.762056 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.716416 305.518901 L 27.716416 305.636723 L 27.840129 305.754545 L 27.840129 306.714797 L 27.963843 306.83851 L 27.963843 308.034406 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.762056 304.440827 L 26.879878 304.440827 L 26.879878 304.794294 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24.959375 304.440827 L 24.959375 304.794294 L 25.077197 304.794294 L 25.077197 306.355439 L 25.200911 306.479152 L 25.200911 308.994658 L 25.318733 309.236193 L 25.318733 312.352592 L 25.442446 312.594128 L 25.442446 315.83424 L 25.560268 316.075776 L 25.560268 318.95653 L 25.678091 319.074353 L 25.678091 321.118569 L 25.801804 321.118569 L 25.801804 321.955107 L 25.919626 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.038872 304.440827 L 23.038872 304.552758 L 23.162585 304.552758 L 23.162585 305.636723 L 23.280408 305.754545 L 23.280408 307.916584 L 23.39823 308.158119 L 23.39823 311.032983 L 23.521943 311.274518 L 23.521943 314.514631 L 23.639765 314.756166 L 23.639765 317.872565 L 23.763479 317.996279 L 23.763479 320.393962 L 23.881301 320.517675 L 23.881301 321.837285 L 23.999123 321.837285 L 23.999123 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.837085 319.315888 L 21.837085 319.675246 L 21.960798 319.798959 L 21.960798 321.477927 L 22.07862 321.595749 L 22.07862 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.60144 312.116948 L 21.60144 313.318735 L 21.719263 313.678093 L 21.719263 316.676669 L 21.837085 317.036027 L 21.837085 318.114101 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.359905 305.872367 L 21.359905 306.83851 L 21.477727 307.074155 L 21.477727 309.954909 L 21.60144 310.314267 L 21.60144 310.673625 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.960798 305.754545 L 21.960798 306.83851 L 22.07862 307.074155 L 22.07862 309.118371 L 22.196443 309.477729 L 22.196443 311.751699 L 22.320156 312.116948 L 22.320156 314.873989 L 22.443869 315.233347 L 22.443869 317.636921 L 22.561692 317.996279 L 22.561692 319.798959 L 22.679514 320.034604 L 22.679514 320.877033 L 22.803227 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.763479 305.518901 L 23.763479 305.996081 L 23.881301 306.119794 L 23.881301 307.557226 L 23.999123 307.798762 L 23.999123 309.837087 L 24.122837 310.196445 L 24.122837 313.071308 L 24.240659 313.436557 L 24.240659 315.957954 L 24.358481 316.317311 L 24.358481 318.47935 L 24.482195 318.714995 L 24.482195 320.393962 L 24.600017 320.517675 L 24.600017 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.560268 305.518901 L 25.678091 305.636723 L 25.678091 306.479152 L 25.801804 306.591083 L 25.801804 308.275942 L 25.919626 308.6353 L 25.919626 310.915161 L 26.037449 311.274518 L 26.037449 314.155273 L 26.161162 314.638344 L 26.161162 317.036027 L 26.278984 317.277563 L 26.278984 319.192175 L 26.396807 319.439602 L 26.396807 320.75332 L 26.52052 320.75332 L 26.52052 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.480771 305.518901 L 27.480771 305.754545 L 27.604485 305.754545 L 27.604485 307.074155 L 27.716416 307.197868 L 27.716416 309.236193 L 27.840129 309.477729 L 27.840129 312.23477 L 27.963843 312.352592 L 27.963843 314.155273 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 304.552758 L 15.239038 304.440827 L 15.121216 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.638144 305.518901 L 14.638144 305.996081 L 14.761858 306.119794 L 14.761858 307.557226 L 14.87968 307.798762 L 14.87968 310.314267 L 14.997502 310.555803 L 14.997502 313.195021 L 15.121216 313.436557 L 15.121216 316.193598 L 15.239038 316.435134 L 15.239038 317.036027 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.359905 317.395385 L 21.359905 314.638344 L 21.236191 314.278986 L 21.236191 312.23477 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.719263 321.955107 L 21.719263 321.837285 L 21.60144 321.713571 L 21.60144 320.393962 L 21.477727 320.158317 L 21.477727 319.916782 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 13.677893 304.440827 L 13.677893 304.676471 L 13.801606 304.676471 L 13.801606 305.996081 L 13.919428 306.119794 L 13.919428 308.517477 L 14.037251 308.6353 L 14.037251 311.751699 L 14.160964 311.993234 L 14.160964 315.233347 L 14.278786 315.474882 L 14.278786 318.355637 L 14.396609 318.591281 L 14.396609 320.75332 L 14.520322 320.877033 L 14.520322 321.955107 L 14.638144 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.396609 305.518901 L 14.396609 306.231725 L 14.520322 306.355439 L 14.520322 308.034406 L 14.638144 308.275942 L 14.638144 310.43798 L 14.761858 310.673625 L 14.761858 313.436557 L 14.87968 313.795915 L 14.87968 316.435134 L 14.997502 316.794492 L 14.997502 318.95653 L 15.121216 319.192175 L 15.121216 320.517675 L 15.239038 320.635498 L 15.239038 320.75332 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.640991 321.955107 L 8.517277 321.955107 L 8.517277 321.236391 L 8.399455 321.118569 L 8.399455 319.074353 L 8.281633 318.838708 L 8.281633 315.957954 L 8.15792 315.592705 L 8.15792 312.717841 L 8.040097 312.352592 L 8.040097 309.236193 L 7.922275 308.876835 L 7.922275 306.355439 L 7.798562 306.119794 L 7.798562 304.912116 L 7.680739 304.794294 L 7.680739 304.552758 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.443672 321.955107 L 10.443672 321.595749 L 10.319958 321.595749 L 10.319958 319.916782 L 10.196245 319.798959 L 10.196245 317.15385 L 10.078423 317.036027 L 10.078423 313.795915 L 9.9606 313.554379 L 9.9606 310.314267 L 9.842778 310.196445 L 9.842778 307.31569 L 9.719065 307.197868 L 9.719065 305.277365 L 9.601242 305.153652 L 9.601242 304.440827 L 9.477529 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.358283 321.955107 L 12.240461 321.837285 L 12.240461 320.75332 L 12.122639 320.635498 L 12.122639 318.355637 L 11.998925 318.114101 L 11.998925 315.115524 L 11.881103 314.873989 L 11.881103 311.639767 L 11.763281 311.392341 L 11.763281 308.393764 L 11.639568 308.158119 L 11.639568 305.872367 L 11.521745 305.754545 L 11.521745 304.552758 L 11.398032 304.552758 L 11.398032 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.278786 321.955107 L 14.160964 321.955107 L 14.160964 321.354213 L 14.037251 321.236391 L 14.037251 319.315888 L 13.919428 319.192175 L 13.919428 316.435134 L 13.801606 316.193598 L 13.801606 312.959377 L 13.677893 312.717841 L 13.677893 309.595551 L 13.560071 309.354015 L 13.560071 306.714797 L 13.442248 306.591083 L 13.442248 304.912116 L 13.318535 304.794294 L 13.318535 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.079846 305.636723 L 7.680739 304.552758 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.079846 305.636723 L 7.197668 305.754545 L 7.197668 306.83851 L 7.321381 306.956332 L 7.321381 308.994658 L 7.439204 309.236193 L 7.439204 311.875412 L 7.557026 312.23477 L 7.557026 314.997702 L 7.680739 315.35706 L 7.680739 317.513208 L 7.798562 317.872565 L 7.798562 319.675246 L 7.922275 319.916782 L 7.922275 320.877033 L 8.040097 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9.000349 305.518901 L 9.000349 305.996081 L 9.118171 306.119794 L 9.118171 307.439404 L 9.235993 307.675048 L 9.235993 309.713373 L 9.359707 310.072731 L 9.359707 312.959377 L 9.477529 313.318735 L 9.477529 315.83424 L 9.601242 316.193598 L 9.601242 318.591281 L 9.719065 318.838708 L 9.719065 320.27614 L 9.842778 320.393962 L 9.842778 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.803029 305.518901 L 10.920852 305.518901 L 10.920852 306.355439 L 11.038674 306.591083 L 11.038674 308.275942 L 11.162387 308.517477 L 11.162387 310.797338 L 11.28021 311.156696 L 11.28021 314.037451 L 11.398032 314.396809 L 11.398032 316.912314 L 11.521745 317.15385 L 11.521745 319.315888 L 11.639568 319.557424 L 11.639568 320.635498 L 11.763281 320.75332 L 11.763281 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.717641 305.518901 L 12.717641 305.636723 L 12.841355 305.754545 L 12.841355 306.956332 L 12.959177 307.197868 L 12.959177 309.118371 L 13.076999 309.477729 L 13.076999 311.875412 L 13.200713 312.23477 L 13.200713 315.115524 L 13.318535 315.474882 L 13.318535 317.754743 L 13.442248 318.114101 L 13.442248 319.916782 L 13.560071 320.158317 L 13.560071 320.877033 L 13.677893 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11.763281 304.440827 L 11.881103 304.440827 L 11.881103 305.277365 L 11.998925 305.395187 L 11.998925 307.439404 L 12.122639 307.557226 L 12.122639 310.43798 L 12.240461 310.673625 L 12.240461 313.913737 L 12.358283 314.155273 L 12.358283 317.277563 L 12.481997 317.513208 L 12.481997 320.034604 L 12.599819 320.158317 L 12.599819 321.595749 L 12.717641 321.713571 L 12.717641 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9.9606 304.440827 L 9.9606 304.794294 L 10.078423 304.912116 L 10.078423 306.479152 L 10.196245 306.714797 L 10.196245 309.236193 L 10.319958 309.477729 L 10.319958 312.594128 L 10.443672 312.835663 L 10.443672 316.075776 L 10.561494 316.317311 L 10.561494 319.192175 L 10.679316 319.439602 L 10.679316 321.236391 L 10.803029 321.354213 L 10.803029 321.955107 L 10.920852 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.040097 304.440827 L 8.040097 304.552758 L 8.15792 304.552758 L 8.15792 305.754545 L 8.281633 305.872367 L 8.281633 308.158119 L 8.399455 308.275942 L 8.399455 311.516054 L 8.517277 311.751699 L 8.517277 314.997702 L 8.640991 315.233347 L 8.640991 318.231923 L 8.764704 318.355637 L 8.764704 320.635498 L 8.876635 320.75332 L 8.876635 321.837285 L 9.000349 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.237417 304.552758 L 6.237417 305.153652 L 6.36113 305.277365 L 6.36113 307.197868 L 6.478952 307.31569 L 6.478952 310.196445 L 6.602666 310.314267 L 6.602666 313.554379 L 6.720488 313.795915 L 6.720488 317.036027 L 6.83831 317.15385 L 6.83831 319.798959 L 6.962024 319.916782 L 6.962024 321.595749 L 7.079846 321.595749 L 7.079846 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.83831 305.636723 L 6.83831 305.754545 L 6.962024 305.754545 L 6.962024 307.074155 L 7.079846 307.197868 L 7.079846 309.118371 L 7.197668 309.477729 L 7.197668 312.116948 L 7.321381 312.476306 L 7.321381 315.233347 L 7.439204 315.592705 L 7.439204 317.872565 L 7.557026 318.114101 L 7.557026 319.916782 L 7.680739 320.158317 L 7.680739 320.877033 L 7.798562 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.764704 305.518901 L 8.764704 305.996081 L 8.876635 306.119794 L 8.876635 307.798762 L 9.000349 308.034406 L 9.000349 310.196445 L 9.118171 310.555803 L 9.118171 313.071308 L 9.235993 313.436557 L 9.235993 316.317311 L 9.359707 316.676669 L 9.359707 318.714995 L 9.477529 318.95653 L 9.477529 320.393962 L 9.601242 320.517675 L 9.601242 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.561494 305.518901 L 10.561494 305.636723 L 10.679316 305.636723 L 10.679316 306.479152 L 10.803029 306.591083 L 10.803029 308.6353 L 10.920852 308.876835 L 10.920852 311.274518 L 11.038674 311.639767 L 11.038674 314.155273 L 11.162387 314.638344 L 11.162387 317.277563 L 11.28021 317.636921 L 11.28021 319.439602 L 11.398032 319.675246 L 11.398032 320.75332 L 11.521745 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.481997 305.518901 L 12.481997 305.754545 L 12.599819 305.872367 L 12.599819 307.074155 L 12.717641 307.31569 L 12.717641 309.595551 L 12.841355 309.837087 L 12.841355 312.352592 L 12.959177 312.717841 L 12.959177 315.35706 L 13.076999 315.716418 L 13.076999 318.231923 L 13.200713 318.47935 L 13.200713 320.034604 L 13.318535 320.27614 L 13.318535 320.877033 L 13.442248 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.237417 304.552758 L 6.83831 305.636723 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.799985 321.955107 L 4.799985 321.477927 L 4.682163 321.354213 L 4.682163 319.798959 L 4.558449 319.557424 L 4.558449 316.912314 L 4.440627 316.676669 L 4.440627 313.436557 L 4.322805 313.195021 L 4.322805 309.954909 L 4.199091 309.713373 L 4.199091 309.477729 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.480376 305.277365 L 3.480376 305.153652 L 3.604089 305.153652 L 3.721911 305.277365 L 3.721911 305.518901 L 3.839733 305.636723 L 3.839733 306.119794 L 3.963447 306.231725 L 3.963447 307.074155 L 4.075378 307.31569 L 4.075378 308.275942 L 4.199091 308.517477 L 4.199091 309.477729 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.356662 305.518901 L 3.356662 305.872367 L 3.480376 305.996081 L 3.480376 307.197868 L 3.604089 307.439404 L 3.604089 309.713373 L 3.721911 310.072731 L 3.721911 312.594128 L 3.839733 312.959377 L 3.839733 315.474882 L 3.963447 315.83424 L 3.963447 318.355637 L 4.075378 318.591281 L 4.075378 320.158317 L 4.199091 320.27614 L 4.199091 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.159343 305.518901 L 5.283056 305.518901 L 5.283056 306.231725 L 5.400878 306.355439 L 5.400878 307.916584 L 5.518701 308.275942 L 5.518701 310.797338 L 5.642414 311.156696 L 5.642414 313.678093 L 5.760236 314.037451 L 5.760236 316.552956 L 5.878059 316.912314 L 5.878059 319.192175 L 6.001772 319.315888 L 6.001772 320.517675 L 6.119594 320.635498 L 6.119594 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.079846 305.518901 L 7.079846 305.636723 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.720488 321.955107 L 6.720488 321.837285 L 6.602666 321.837285 L 6.602666 320.517675 L 6.478952 320.393962 L 6.478952 317.996279 L 6.36113 317.754743 L 6.36113 314.756166 L 6.237417 314.514631 L 6.237417 311.156696 L 6.119594 311.032983 L 6.119594 308.034406 L 6.001772 307.916584 L 6.001772 305.636723 L 5.878059 305.636723 L 5.878059 304.552758 L 5.760236 304.552758 L 5.760236 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.680739 304.552758 L 7.680739 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.199091 309.477729 L 4.199091 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.121018 305.872367 L 3.121018 305.996081 L 3.23884 306.119794 L 3.23884 308.994658 L 3.356662 309.236193 L 3.356662 314.037451 L 3.480376 314.396809 L 3.480376 318.714995 L 3.604089 318.95653 L 3.604089 321.236391 L 3.721911 321.354213 L 3.721911 321.477927 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.121018 305.872367 L 3.121018 305.518901 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.997304 320.75332 L 2.997304 305.636723 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.322805 304.440827 L 4.322805 304.794294 L 4.440627 304.794294 L 4.440627 306.355439 L 4.558449 306.479152 L 4.558449 308.994658 L 4.682163 309.236193 L 4.682163 312.352592 L 4.799985 312.594128 L 4.799985 315.83424 L 4.923698 316.075776 L 4.923698 318.95653 L 5.041521 319.074353 L 5.041521 321.118569 L 5.159343 321.118569 L 5.159343 321.955107 L 5.283056 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.119594 304.440827 L 6.237417 304.440827 L 6.237417 304.552758 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.121018 305.872367 L 3.121018 305.996081 L 3.23884 306.119794 L 3.23884 307.557226 L 3.356662 307.798762 L 3.356662 310.072731 L 3.480376 310.314267 L 3.480376 312.959377 L 3.604089 313.318735 L 3.604089 316.075776 L 3.721911 316.317311 L 3.721911 318.591281 L 3.839733 318.838708 L 3.839733 320.27614 L 3.963447 320.393962 L 3.963447 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.923698 305.518901 L 5.041521 305.518901 L 5.041521 306.355439 L 5.159343 306.479152 L 5.159343 308.393764 L 5.283056 308.6353 L 5.283056 311.156696 L 5.400878 311.392341 L 5.400878 314.155273 L 5.518701 314.396809 L 5.518701 317.15385 L 5.642414 317.395385 L 5.642414 319.439602 L 5.760236 319.557424 L 5.760236 320.635498 L 5.878059 320.75332 L 5.878059 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.83831 305.518901 L 6.83831 305.636723 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.83831 305.636723 L 7.079846 305.636723 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip14)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1.076801 320.75332 L 1.076801 305.636723 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.717443 320.517675 L 0.717443 305.996081 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 324.594326 L 15.239038 323.033181 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 313.195021 L 15.239038 323.033181 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 303.356862 L 15.239038 313.195021 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 303.356862 L 15.239038 301.913539 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 323.033181 L 15.239038 323.751897 L 15.35686 323.993432 L 15.35686 324.35279 L 15.480573 324.594326 L 15.480573 324.835861 L 15.604287 324.959575 L 15.716218 325.195219 L 15.716218 325.436755 L 15.963645 325.913935 L 16.075576 326.037649 L 16.199289 326.279184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.439402 323.274716 L 19.79876 323.274716 L 19.79876 322.915358 L 19.680937 322.673823 L 19.680937 322.072929 L 19.557224 321.955107 L 19.557224 321.477927 L 19.439402 321.354213 L 19.321579 321.118569 L 19.321579 320.877033 L 19.197866 320.635498 L 19.080044 320.517675 L 18.962221 320.27614 L 18.838508 320.034604 L 18.720686 319.798959 L 16.199289 319.798959 L 16.075576 320.034604 L 15.963645 320.27614 L 15.839931 320.517675 L 15.716218 320.635498 L 15.716218 320.877033 L 15.604287 321.118569 L 15.480573 321.354213 L 15.480573 321.477927 L 15.35686 321.713571 L 15.35686 322.072929 L 15.239038 322.314465 L 15.239038 323.033181 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16.199289 326.279184 L 18.720686 326.279184 L 18.962221 326.037649 L 18.962221 325.796113 L 19.080044 325.678291 L 19.197866 325.554577 L 19.197866 325.318933 L 19.321579 325.195219 L 19.321579 325.071506 L 19.439402 324.959575 L 19.439402 324.712148 L 19.557224 324.594326 L 19.557224 324.476504 L 19.680937 324.234968 L 19.680937 323.87561 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 323.87561 L 19.439402 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.60144 304.317114 L 22.196443 304.075578 L 21.359905 303.834042 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.557224 302.037253 L 19.557224 301.913539 L 19.439402 301.677895 L 19.321579 301.436359 L 19.197866 301.194823 L 19.197866 300.959179 L 18.962221 300.476108 L 18.838508 300.352394 L 18.838508 300.234572 L 18.720686 300.11675 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 301.677895 L 19.557224 302.155075 M 22.196443 305.636723 L 21.118369 305.996081 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.557224 302.037253 L 19.557224 302.514433 L 19.680937 302.997504 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 303.115326 L 19.680937 303.115326 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.680937 303.356862 L 19.680937 302.997504 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 18.720686 300.11675 L 16.199289 300.11675 L 16.075576 300.352394 L 15.963645 300.59393 L 15.839931 300.835466 L 15.716218 301.07111 L 15.716218 301.194823 L 15.604287 301.436359 L 15.480573 301.677895 L 15.480573 301.913539 L 15.35686 302.037253 L 15.35686 302.396611 L 15.239038 302.638146 L 15.239038 304.1934 L 15.35686 304.317114 L 15.35686 304.794294 L 15.480573 304.912116 L 15.480573 305.153652 L 15.604287 305.395187 L 15.716218 305.518901 L 15.716218 305.754545 L 15.839931 305.996081 L 15.963645 306.231725 L 16.075576 306.479152 L 16.199289 306.714797 L 18.720686 306.714797 L 19.080044 305.996081 L 19.197866 305.754545 L 19.321579 305.518901 L 19.321579 305.395187 L 19.557224 304.912116 L 19.557224 304.552758 L 19.680937 304.317114 L 19.680937 303.834042 L 19.79876 303.592507 L 19.79876 303.356862 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 309.837087 L 19.680937 309.595551 L 19.680937 308.517477 L 19.557224 308.275942 L 19.557224 307.798762 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 313.195021 L 19.79876 312.835663 L 19.680937 312.476306 L 19.680937 311.274518 L 19.557224 310.915161 L 19.557224 310.072731 L 19.321579 309.354015 L 19.321579 308.876835 L 19.197866 308.517477 L 19.080044 308.034406 L 18.962221 307.557226 L 18.838508 307.197868 L 18.720686 306.714797 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 307.557226 L 19.557224 307.798762 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.359905 310.43798 L 22.196443 311.751699 L 21.118369 312.352592 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 311.516054 L 22.196443 311.751699 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 298.79714 L 21.118369 327.716616 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 298.79714 L 19.79876 327.716616 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 303.592507 L 22.196443 305.636723 M 21.118369 301.194823 L 22.196443 304.075578 M 19.79876 324.835861 L 19.680937 324.712148 M 21.118369 321.595749 L 21.359905 321.477927 M 21.60144 321.955107 L 21.719263 321.837285 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 325.195219 L 22.196443 322.438178 L 21.118369 321.837285 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 316.794492 L 19.557224 316.676669 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.680937 318.231923 L 19.680937 317.513208 L 19.557224 317.036027 L 19.557224 316.676669 L 19.680937 316.552956 L 19.79876 316.552956 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 18.720686 319.798959 L 18.962221 318.838708 L 19.080044 318.355637 L 19.197866 317.996279 L 19.321579 317.513208 L 19.321579 317.15385 L 19.439402 316.676669 L 19.557224 316.317311 L 19.557224 315.474882 L 19.680937 315.115524 L 19.680937 314.037451 L 19.79876 313.554379 L 19.79876 313.195021 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16.199289 306.714797 L 16.075576 307.197868 L 15.963645 307.557226 L 15.716218 308.517477 L 15.716218 308.876835 L 15.604287 309.354015 L 15.480573 309.713373 L 15.480573 310.072731 L 15.35686 310.555803 L 15.35686 311.274518 L 15.239038 311.751699 L 15.239038 314.756166 L 15.35686 315.115524 L 15.35686 315.957954 L 15.480573 316.317311 L 15.480573 316.676669 L 15.604287 317.15385 L 15.716218 317.513208 L 15.716218 317.996279 L 15.839931 318.355637 L 15.963645 318.838708 L 16.075576 319.315888 L 16.199289 319.798959 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 317.036027 L 22.196443 318.714995 L 21.118369 320.517675 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip15)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 323.274716 L 19.922473 323.274716 M 32.040493 320.75332 L 31.4396 320.75332 M 28.682559 320.75332 L 28.075774 320.75332 M 32.040493 305.636723 L 31.4396 305.636723 M 28.682559 305.636723 L 28.075774 305.636723 M 28.075774 320.75332 L 27.239236 321.713571 M 28.075774 305.636723 L 27.840129 305.395187 M 23.639765 321.955107 L 23.038872 320.877033 M 25.442446 321.955107 L 24.841553 320.877033 M 22.07862 305.518901 L 22.679514 304.440827 M 23.999123 305.518901 L 24.482195 304.440827 M 25.801804 305.518901 L 26.396807 304.440827 M 27.716416 305.518901 L 27.840129 305.395187 M 27.239236 321.713571 L 26.762056 320.877033 M 26.879878 304.440827 L 27.480771 305.518901 M 24.959375 304.440827 L 25.560268 305.518901 M 23.038872 304.440827 L 23.763479 305.518901 M 22.803227 320.877033 L 22.07862 321.955107 M 24.717839 320.877033 L 23.999123 321.955107 M 26.52052 320.877033 L 25.919626 321.955107 M 14.520322 305.518901 L 15.121216 304.440827 M 21.719263 321.955107 L 21.118369 320.994856 M 13.677893 304.440827 L 14.396609 305.518901 M 15.239038 320.994856 L 14.638144 321.955107 M 8.517277 321.955107 L 8.040097 320.877033 M 10.443672 321.955107 L 9.842778 320.877033 M 12.358283 321.955107 L 11.763281 320.877033 M 14.160964 321.955107 L 13.677893 320.877033 M 9.000349 305.518901 L 9.477529 304.440827 M 10.803029 305.518901 L 11.398032 304.440827 M 12.717641 305.518901 L 13.318535 304.440827 M 11.763281 304.440827 L 12.481997 305.518901 M 9.9606 304.440827 L 10.561494 305.518901 M 8.040097 304.440827 L 8.764704 305.518901 M 7.798562 320.877033 L 7.079846 321.955107 M 9.601242 320.877033 L 9.000349 321.955107 M 11.521745 320.877033 L 10.920852 321.955107 M 13.442248 320.877033 L 12.717641 321.955107 M 4.799985 321.955107 L 4.199091 320.877033 M 3.356662 305.518901 L 3.480376 305.277365 M 5.159343 305.518901 L 5.760236 304.440827 M 7.079846 305.518901 L 7.680739 304.440827 M 6.720488 321.955107 L 6.119594 320.877033 M 2.997304 305.636723 L 3.121018 305.518901 M 3.480376 305.153652 L 4.199091 304.440827 M 2.997304 320.75332 L 3.721911 321.477927 M 4.322805 304.440827 L 4.923698 305.518901 M 6.237417 304.440827 L 6.83831 305.518901 M 4.075378 320.877033 L 3.721911 321.477927 M 5.878059 320.877033 L 5.283056 321.955107 M 3.121018 305.518901 L 3.356662 305.518901 M 3.963447 320.877033 L 4.199091 320.877033 M 4.923698 305.518901 L 5.159343 305.518901 M 5.878059 320.877033 L 6.119594 320.877033 M 6.83831 305.518901 L 7.079846 305.518901 M 7.798562 320.877033 L 8.040097 320.877033 M 8.764704 305.518901 L 9.000349 305.518901 M 9.601242 320.877033 L 9.842778 320.877033 M 10.561494 305.518901 L 10.803029 305.518901 M 11.521745 320.877033 L 11.763281 320.877033 M 12.481997 305.518901 L 12.717641 305.518901 M 13.442248 320.877033 L 13.677893 320.877033 M 14.396609 305.518901 L 14.638144 305.518901 M 22.803227 320.877033 L 23.038872 320.877033 M 23.763479 305.518901 L 23.999123 305.518901 M 24.600017 320.877033 L 24.841553 320.877033 M 25.560268 305.518901 L 25.801804 305.518901 M 26.52052 320.877033 L 26.762056 320.877033 M 27.480771 305.518901 L 27.716416 305.518901 M 2.997304 320.75332 L 1.076801 320.75332 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip16)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.997304 305.636723 L 1.076801 305.636723 L 0.717443 305.996081 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip17)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.717443 320.517675 L 1.076801 320.75332 M 15.239038 324.594326 L 16.199289 326.279184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 324.594326 L 19.79876 324.35279 L 19.680937 324.234968 L 19.680937 323.751897 L 19.557224 323.634074 L 19.557224 323.392539 L 19.439402 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.680937 301.795717 L 18.720686 300.11675 M 19.79876 298.79714 L 21.118369 298.79714 M 19.79876 327.716616 L 21.118369 327.716616 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 302.638146 L 21.118369 302.873791 L 21.236191 303.115326 L 21.236191 303.592507 L 21.359905 303.834042 L 21.477727 304.075578 L 21.477727 304.317114 L 21.60144 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 309.595551 L 21.118369 309.713373 L 21.236191 309.837087 L 21.236191 310.196445 L 21.359905 310.314267 L 21.359905 310.43798 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 301.913539 L 16.199289 300.11675 M 21.60144 321.955107 L 21.60144 322.072929 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 318.591281 L 19.79876 318.47935 L 19.680937 318.231923 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 324.594326 L 18.720686 326.279184 M 25.919626 321.955107 L 25.442446 321.955107 M 23.999123 321.955107 L 23.639765 321.955107 M 22.07862 321.955107 L 21.719263 321.955107 M 14.638144 321.955107 L 14.278786 321.955107 M 12.717641 321.955107 L 12.358283 321.955107 M 10.920852 321.955107 L 10.443672 321.955107 M 9.000349 321.955107 L 8.640991 321.955107 M 7.079846 321.955107 L 6.720488 321.955107 M 5.283056 321.955107 L 4.799985 321.955107 M 26.762056 304.440827 L 26.396807 304.440827 M 24.959375 304.440827 L 24.600017 304.440827 M 23.038872 304.440827 L 22.679514 304.440827 M 15.239038 304.440827 L 15.121216 304.440827 M 13.677893 304.440827 L 13.318535 304.440827 M 11.763281 304.440827 L 11.398032 304.440827 M 9.9606 304.440827 L 9.477529 304.440827 M 8.040097 304.440827 L 7.680739 304.440827 M 6.119594 304.440827 L 5.760236 304.440827 M 4.322805 304.440827 L 4.199091 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.395666 173.752368 L 314.395666 170.158789 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.395666 173.752368 L 314.395666 195.478794 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.395666 170.158789 L 314.283735 170.158789 M 314.283735 195.478794 L 314.395666 195.478794 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.283735 191.75561 L 314.395666 191.75561 M 314.395666 173.752368 L 314.283735 173.752368 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip18)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.283735 347.275112 L 314.283735 1.313588 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 41.997617 L 277.558534 41.873904 L 278.159428 41.514546 L 278.642499 40.913652 L 278.878143 40.31865 L 278.878143 39.594043 L 278.642499 38.875327 L 278.159428 38.392256 L 277.558534 38.032898 L 276.839818 37.915076 L 276.121102 38.032898 L 275.520209 38.392256 L 275.037138 38.875327 L 274.801493 39.594043 L 274.801493 40.31865 L 275.037138 40.913652 L 275.520209 41.514546 L 276.121102 41.873904 Z M 276.839818 41.997617 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 110.034086 L 277.558534 109.916263 L 278.159428 109.556905 L 278.642499 108.956012 L 278.878143 108.355118 L 278.878143 107.636402 L 278.642499 106.911796 L 278.159428 106.440506 L 277.558534 106.075257 L 276.839818 105.957435 L 276.121102 106.075257 L 275.520209 106.440506 L 275.037138 106.911796 L 274.801493 107.636402 L 274.801493 108.355118 L 275.037138 108.956012 L 275.520209 109.556905 L 276.121102 109.916263 Z M 276.839818 110.034086 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 67.435445 L 277.558534 67.317623 L 278.159428 66.958265 L 278.642499 66.357371 L 278.878143 65.756478 L 278.878143 65.037762 L 278.642499 64.313155 L 278.159428 63.835975 L 277.558534 63.476617 L 276.839818 63.352903 L 276.121102 63.476617 L 275.520209 63.835975 L 275.037138 64.313155 L 274.801493 65.037762 L 274.801493 65.756478 L 275.037138 66.357371 L 275.520209 66.958265 L 276.121102 67.317623 Z M 276.839818 67.435445 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 58.916895 L 277.558534 58.799073 L 278.159428 58.439715 L 278.642499 57.838821 L 278.878143 57.232036 L 278.878143 56.513321 L 278.642499 55.794605 L 278.159428 55.317425 L 277.558534 54.958067 L 276.839818 54.834353 L 276.121102 54.958067 L 275.520209 55.317425 L 275.037138 55.794605 L 274.801493 56.513321 L 274.801493 57.232036 L 275.037138 57.838821 L 275.520209 58.439715 L 276.121102 58.799073 Z M 276.839818 58.916895 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 75.959886 L 277.558534 75.836172 L 278.159428 75.476815 L 278.642499 74.875921 L 278.878143 74.275027 L 278.878143 73.556312 L 278.642499 72.837596 L 278.159428 72.354524 L 277.558534 71.995167 L 276.839818 71.877344 L 276.121102 71.995167 L 275.520209 72.354524 L 275.037138 72.837596 L 274.801493 73.556312 L 274.801493 74.275027 L 275.037138 74.875921 L 275.520209 75.476815 L 276.121102 75.836172 Z M 276.839818 75.959886 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 92.996986 L 277.558534 92.873272 L 278.159428 92.513914 L 278.642499 91.913021 L 278.878143 91.318018 L 278.878143 90.593411 L 278.642499 89.874696 L 278.159428 89.397515 L 277.558534 89.032266 L 276.839818 88.914444 L 276.121102 89.032266 L 275.520209 89.397515 L 275.037138 89.874696 L 274.801493 90.593411 L 274.801493 91.318018 L 275.037138 91.913021 L 275.520209 92.513914 L 276.121102 92.873272 Z M 276.839818 92.996986 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 84.478436 L 277.558534 84.354722 L 278.159428 83.995365 L 278.642499 83.394471 L 278.878143 82.799468 L 278.878143 82.074862 L 278.642499 81.356146 L 278.159428 80.873074 L 277.558534 80.513717 L 276.839818 80.395894 L 276.121102 80.513717 L 275.520209 80.873074 L 275.037138 81.356146 L 274.801493 82.074862 L 274.801493 82.799468 L 275.037138 83.394471 L 275.520209 83.995365 L 276.121102 84.354722 Z M 276.839818 84.478436 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 50.392454 L 277.558534 50.274632 L 278.159428 49.915274 L 278.642499 49.31438 L 278.878143 48.713487 L 278.878143 47.994771 L 278.642499 47.276055 L 278.159428 46.798875 L 277.558534 46.439517 L 276.839818 46.315803 L 276.121102 46.439517 L 275.520209 46.798875 L 275.037138 47.276055 L 274.801493 47.994771 L 274.801493 48.713487 L 275.037138 49.31438 L 275.520209 49.915274 L 276.121102 50.274632 Z M 276.839818 50.392454 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.604174 101.515536 L 277.32289 101.397713 L 277.923783 101.032464 L 278.395072 100.437462 L 278.642499 99.836568 L 278.642499 99.117853 L 278.395072 98.393246 L 277.923783 97.916065 L 277.32289 97.556707 L 276.604174 97.438885 L 275.879567 97.556707 L 275.278673 97.916065 L 274.801493 98.393246 L 274.559957 99.117853 L 274.559957 99.836568 L 274.801493 100.437462 L 275.278673 101.032464 L 275.879567 101.397713 Z M 276.604174 101.515536 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 33.479067 L 277.558534 33.355354 L 278.159428 32.995996 L 278.642499 32.395102 L 278.878143 31.794209 L 278.878143 31.075493 L 278.642499 30.356777 L 278.159428 29.873706 L 277.558534 29.514348 L 276.839818 29.396526 L 276.121102 29.514348 L 275.520209 29.873706 L 275.037138 30.356777 L 274.801493 31.075493 L 274.801493 31.794209 L 275.037138 32.395102 L 275.520209 32.995996 L 276.121102 33.355354 Z M 276.839818 33.479067 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip19)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.482393 1.313588 L 36.482393 347.275112 L 314.283735 347.275112 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip20)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.283735 1.313588 L 36.482393 1.313588 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.600215 122.876713 L 36.240857 123.954787 L 35.999321 125.03286 L 35.881499 126.116825 L 35.999321 127.194899 L 36.240857 128.278864 L 36.600215 129.356937 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.600215 219.231763 L 36.240857 220.315728 L 35.999321 221.393802 L 35.881499 222.477767 L 35.999321 223.55584 L 36.240857 224.639805 L 36.600215 225.717879 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip21)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 40.317507 347.15729 L 41.395581 347.516648 L 42.479546 347.752292 L 43.55762 347.876006 L 44.641585 347.752292 L 45.719658 347.516648 L 46.803623 347.15729 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.600215 336.959773 L 36.240857 338.037847 L 35.999321 339.11592 L 35.881499 340.193994 L 35.999321 341.277959 L 36.240857 342.356033 L 36.600215 343.439997 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.600215 5.154594 L 36.240857 6.232668 L 35.999321 7.316633 L 35.881499 8.394707 L 35.999321 9.478671 L 36.240857 10.556745 L 36.600215 11.634819 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip22)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 46.803623 1.437302 L 45.719658 1.072053 L 44.641585 0.836408 L 43.55762 0.712695 L 42.479546 0.836408 L 41.395581 1.072053 L 40.317507 1.437302 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip23)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.239396 1.437302 L 125.161322 1.072053 L 124.077357 0.836408 L 122.999284 0.712695 L 121.92121 0.836408 L 120.837245 1.072053 L 119.759171 1.437302 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip24)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.438101 1.437302 L 207.360027 1.072053 L 206.281953 0.836408 L 205.197989 0.712695 L 204.119915 0.836408 L 203.041841 1.072053 L 201.963767 1.437302 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.160021 11.634819 L 314.519379 10.556745 L 314.760915 9.478671 L 314.878737 8.394707 L 314.760915 7.316633 L 314.519379 6.232668 L 314.160021 5.154594 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip25)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 310.442729 1.437302 L 309.358764 1.072053 L 308.28069 0.836408 L 307.196725 0.712695 L 306.118652 0.836408 L 305.040578 1.072053 L 303.962504 1.437302 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip26)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 99.841317 347.15729 L 100.919391 347.516648 L 101.997464 347.752292 L 103.075538 347.876006 L 104.159503 347.752292 L 105.237577 347.516648 L 106.321542 347.15729 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip27)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.877154 347.15729 L 219.961119 347.516648 L 221.039192 347.752292 L 222.123157 347.876006 L 223.201231 347.752292 L 224.279305 347.516648 L 225.357379 347.15729 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.160021 343.439997 L 314.519379 342.356033 L 314.760915 341.277959 L 314.878737 340.193994 L 314.760915 339.11592 L 314.519379 338.037847 L 314.160021 336.959773 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip28)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 303.962504 347.15729 L 305.040578 347.516648 L 306.118652 347.752292 L 307.196725 347.876006 L 308.28069 347.752292 L 309.358764 347.516648 L 310.442729 347.15729 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
</g>
|
||||
<clipPath id="clip29">
|
||||
<path d="M 262 50 L 340.15625 50 L 340.15625 64 L 262 64 Z M 262 50 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip30">
|
||||
<path d="M 0 33 L 340.15625 33 L 340.15625 36 L 0 36 Z M 0 33 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<use xlink:href="#surface5" transform="matrix(1,0,0,1,54,56)"/>
|
||||
<path style="fill:none;stroke-width:1.99255;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.082031 264.758563 L 170.082031 266.75075 M 170.082031 264.758563 L 170.082031 293.957781 M 170.082031 293.957781 L 170.082031 323.153094 M 170.082031 321.160906 L 170.082031 323.153094 " transform="matrix(1,0,0,-1,0,340.157)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1.99255;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.667969 323.153094 C 171.667969 324.028094 170.957031 324.739031 170.082031 324.739031 C 169.203125 324.739031 168.492188 324.028094 168.492188 323.153094 C 168.492188 322.278094 169.203125 321.567156 170.082031 321.567156 C 170.957031 321.567156 171.667969 322.278094 171.667969 323.153094 Z M 171.667969 323.153094 " transform="matrix(1,0,0,-1,0,340.157)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="160.047" y="12.691"/>
|
||||
<use xlink:href="#glyph0-2" x="167.51895" y="12.691"/>
|
||||
<use xlink:href="#glyph0-3" x="173.054171" y="12.691"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip29)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.99255;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.625 277.797625 L 263.625 289.137469 L 340.160156 289.137469 " transform="matrix(1,0,0,-1,0,340.157)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.99255;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 233.578125 277.797625 L 233.578125 289.137469 L 0 289.137469 " transform="matrix(1,0,0,-1,0,340.157)"/>
|
||||
<g clip-path="url(#clip30)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.99255;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 306.145281 L 340.160156 306.145281 " transform="matrix(1,0,0,-1,0,340.157)"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 212 KiB |
BIN
Software/PC_Application/icons/compound_V1_Ref_Right.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
653
Software/PC_Application/icons/compound_V1_Ref_Right.svg
Normal file
@ -0,0 +1,653 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="340.157pt" height="340.157pt" viewBox="0 0 340.157 340.157" version="1.1">
|
||||
<defs>
|
||||
<g>
|
||||
<symbol overflow="visible" id="glyph0-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<path style="stroke:none;" d="M 5.796875 -2.296875 C 5.796875 -0.890625 4.828125 -0.09375 3.890625 -0.09375 C 3.421875 -0.09375 2.25 -0.34375 2.25 -2.234375 L 2.25 -6.03125 C 2.25 -6.390625 2.265625 -6.5 3.03125 -6.5 L 3.265625 -6.5 L 3.265625 -6.8125 C 2.921875 -6.78125 2.1875 -6.78125 1.796875 -6.78125 C 1.421875 -6.78125 0.671875 -6.78125 0.328125 -6.8125 L 0.328125 -6.5 L 0.5625 -6.5 C 1.328125 -6.5 1.359375 -6.390625 1.359375 -6.03125 L 1.359375 -2.265625 C 1.359375 -0.875 2.515625 0.21875 3.875 0.21875 C 5.015625 0.21875 5.90625 -0.703125 6.078125 -1.84375 C 6.109375 -2.046875 6.109375 -2.140625 6.109375 -2.53125 L 6.109375 -5.71875 C 6.109375 -6.046875 6.109375 -6.5 7.140625 -6.5 L 7.140625 -6.8125 C 6.78125 -6.796875 6.296875 -6.78125 5.96875 -6.78125 C 5.609375 -6.78125 5.140625 -6.796875 4.78125 -6.8125 L 4.78125 -6.5 C 5.796875 -6.5 5.796875 -6.03125 5.796875 -5.765625 Z M 5.796875 -2.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 3.484375 -3.875 L 2.203125 -4.171875 C 1.578125 -4.328125 1.203125 -4.859375 1.203125 -5.4375 C 1.203125 -6.140625 1.734375 -6.75 2.515625 -6.75 C 4.171875 -6.75 4.390625 -5.109375 4.453125 -4.671875 C 4.46875 -4.609375 4.46875 -4.546875 4.578125 -4.546875 C 4.703125 -4.546875 4.703125 -4.59375 4.703125 -4.78125 L 4.703125 -6.78125 C 4.703125 -6.953125 4.703125 -7.03125 4.59375 -7.03125 C 4.53125 -7.03125 4.515625 -7.015625 4.453125 -6.890625 L 4.09375 -6.328125 C 3.796875 -6.625 3.390625 -7.03125 2.5 -7.03125 C 1.390625 -7.03125 0.5625 -6.15625 0.5625 -5.09375 C 0.5625 -4.265625 1.09375 -3.53125 1.859375 -3.265625 C 1.96875 -3.234375 2.484375 -3.109375 3.1875 -2.9375 C 3.453125 -2.875 3.75 -2.796875 4.03125 -2.4375 C 4.234375 -2.171875 4.34375 -1.84375 4.34375 -1.515625 C 4.34375 -0.8125 3.84375 -0.09375 3 -0.09375 C 2.71875 -0.09375 1.953125 -0.140625 1.421875 -0.625 C 0.84375 -1.171875 0.8125 -1.796875 0.8125 -2.15625 C 0.796875 -2.265625 0.71875 -2.265625 0.6875 -2.265625 C 0.5625 -2.265625 0.5625 -2.1875 0.5625 -2.015625 L 0.5625 -0.015625 C 0.5625 0.15625 0.5625 0.21875 0.671875 0.21875 C 0.734375 0.21875 0.75 0.203125 0.8125 0.09375 C 0.8125 0.078125 0.84375 0.046875 1.171875 -0.484375 C 1.484375 -0.140625 2.125 0.21875 3.015625 0.21875 C 4.171875 0.21875 4.96875 -0.75 4.96875 -1.859375 C 4.96875 -2.84375 4.3125 -3.671875 3.484375 -3.875 Z M 3.484375 -3.875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 2.21875 -3.65625 L 2.21875 -6.09375 C 2.21875 -6.4375 2.234375 -6.5 2.703125 -6.5 L 3.9375 -6.5 C 4.90625 -6.5 5.25 -5.65625 5.25 -5.125 C 5.25 -4.484375 4.765625 -3.65625 3.65625 -3.65625 Z M 4.5625 -3.5625 C 5.53125 -3.75 6.21875 -4.390625 6.21875 -5.125 C 6.21875 -5.984375 5.296875 -6.8125 4 -6.8125 L 0.359375 -6.8125 L 0.359375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.390625 -6.390625 1.390625 -6.03125 L 1.390625 -0.78125 C 1.390625 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.359375 -0.3125 L 0.359375 0 L 4.265625 0 C 5.59375 0 6.484375 -0.890625 6.484375 -1.828125 C 6.484375 -2.6875 5.671875 -3.4375 4.5625 -3.5625 Z M 3.953125 -0.3125 L 2.703125 -0.3125 C 2.234375 -0.3125 2.21875 -0.375 2.21875 -0.703125 L 2.21875 -3.421875 L 4.09375 -3.421875 C 5.078125 -3.421875 5.5 -2.5 5.5 -1.828125 C 5.5 -1.125 4.96875 -0.3125 3.953125 -0.3125 Z M 3.953125 -0.3125 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
<clipPath id="clip2">
|
||||
<path d="M 174 0.691406 L 186 0.691406 L 186 2 L 174 2 Z M 174 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip3">
|
||||
<path d="M 184 0.691406 L 186 0.691406 L 186 2 L 184 2 Z M 184 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip4">
|
||||
<path d="M 174 0.691406 L 176 0.691406 L 176 2 L 174 2 Z M 174 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip5">
|
||||
<path d="M 173 0.691406 L 187 0.691406 L 187 17 L 173 17 Z M 173 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip6">
|
||||
<path d="M 205 0.691406 L 216 0.691406 L 216 2 L 205 2 Z M 205 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip7">
|
||||
<path d="M 214 0.691406 L 216 0.691406 L 216 2 L 214 2 Z M 214 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip8">
|
||||
<path d="M 204 0.691406 L 206 0.691406 L 206 2 L 204 2 Z M 204 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip9">
|
||||
<path d="M 203 0.691406 L 217 0.691406 L 217 17 L 203 17 Z M 203 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip10">
|
||||
<path d="M 18 226 L 30 226 L 30 227.464844 L 18 227.464844 Z M 18 226 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip11">
|
||||
<path d="M 17 205 L 32 205 L 32 227.464844 L 17 227.464844 Z M 17 205 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip12">
|
||||
<path d="M 18 225 L 20 225 L 20 227.464844 L 18 227.464844 Z M 18 225 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip13">
|
||||
<path d="M 28 216 L 34 216 L 34 227.464844 L 28 227.464844 Z M 28 216 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip14">
|
||||
<path d="M 202 226 L 214 226 L 214 227.464844 L 202 227.464844 Z M 202 226 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip15">
|
||||
<path d="M 201 205 L 216 205 L 216 227.464844 L 201 227.464844 Z M 201 205 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip16">
|
||||
<path d="M 202 225 L 204 225 L 204 227.464844 L 202 227.464844 Z M 202 225 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip17">
|
||||
<path d="M 212 216 L 218 216 L 218 227.464844 L 212 227.464844 Z M 212 216 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip18">
|
||||
<path d="M 0.507812 18 L 231.648438 18 L 231.648438 20 L 0.507812 20 Z M 0.507812 18 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip19">
|
||||
<path d="M 0.507812 18 L 231.648438 18 L 231.648438 204 L 0.507812 204 Z M 0.507812 18 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip20">
|
||||
<path d="M 0.507812 18 L 2 18 L 2 204 L 0.507812 204 Z M 0.507812 18 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip21">
|
||||
<path d="M 230 195 L 231.648438 195 L 231.648438 202 L 230 202 Z M 230 195 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip22">
|
||||
<path d="M 0.507812 195 L 2 195 L 2 202 L 0.507812 202 Z M 0.507812 195 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip23">
|
||||
<path d="M 0.507812 143 L 2 143 L 2 149 L 0.507812 149 Z M 0.507812 143 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip24">
|
||||
<path d="M 0.507812 88 L 2 88 L 2 95 L 0.507812 95 Z M 0.507812 88 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip25">
|
||||
<path d="M 0.507812 21 L 2 21 L 2 27 L 0.507812 27 Z M 0.507812 21 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip26">
|
||||
<path d="M 230 156 L 231.648438 156 L 231.648438 162 L 230 162 Z M 230 156 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip27">
|
||||
<path d="M 230 77 L 231.648438 77 L 231.648438 83 L 230 83 Z M 230 77 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip28">
|
||||
<path d="M 230 21 L 231.648438 21 L 231.648438 27 L 230 27 Z M 230 21 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip1">
|
||||
<rect x="0" y="0" width="232" height="228"/>
|
||||
</clipPath>
|
||||
<g id="surface5" clip-path="url(#clip1)">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 108.478832 L 275.037138 108.231405 L 275.160851 107.99576 L 275.037138 107.754225 L 274.801493 107.51858 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 109.073834 L 275.396495 109.073834 L 275.396495 106.911796 L 275.037138 106.911796 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 91.435841 L 275.037138 91.194305 L 275.160851 90.958661 L 275.037138 90.717125 L 274.801493 90.475589 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 92.036734 L 275.396495 92.036734 L 275.396495 89.874696 L 275.037138 89.874696 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 82.9114 L 275.037138 82.675755 L 275.160851 82.440111 L 275.037138 82.192684 L 274.801493 81.957039 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 83.518184 L 275.396495 83.518184 L 275.396495 81.356146 L 275.037138 81.356146 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 74.39285 L 275.037138 74.157205 L 275.160851 73.91567 L 275.037138 73.674134 L 274.801493 73.438489 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 74.993743 L 275.396495 74.993743 L 275.396495 72.837596 L 275.037138 72.837596 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 65.8743 L 275.037138 65.638655 L 275.160851 65.39712 L 275.037138 65.155584 L 274.801493 64.914048 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 66.475193 L 275.396495 66.475193 L 275.396495 64.313155 L 275.037138 64.313155 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 57.35575 L 275.037138 57.114214 L 275.160851 56.872679 L 275.037138 56.637034 L 274.801493 56.395498 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 57.956643 L 275.396495 57.956643 L 275.396495 55.794605 L 275.037138 55.794605 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 48.8372 L 275.037138 48.595664 L 275.160851 48.354129 L 275.037138 48.118484 L 274.801493 47.876948 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 49.438093 L 275.396495 49.438093 L 275.396495 47.276055 L 275.037138 47.276055 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 40.436472 L 275.037138 40.194937 L 275.160851 39.959292 L 275.037138 39.717756 L 274.801493 39.476221 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 41.037366 L 275.396495 41.037366 L 275.396495 38.875327 L 275.037138 38.875327 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 31.912031 L 275.037138 31.676387 L 275.160851 31.440742 L 275.037138 31.193315 L 274.801493 30.957671 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 32.518816 L 275.396495 32.518816 L 275.396495 30.356777 L 275.037138 30.356777 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.442135 99.954391 L 274.67778 99.712855 L 274.801493 99.47721 L 274.67778 99.235675 L 274.442135 98.994139 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 100.555284 L 275.037138 100.555284 L 275.037138 98.393246 L 274.801493 98.393246 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 107.51858 L 278.760321 107.754225 L 278.642499 107.99576 L 278.760321 108.231405 L 279.001857 108.478832 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 106.911796 L 278.395072 106.911796 L 278.395072 109.073834 L 278.760321 109.073834 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 90.475589 L 278.760321 90.717125 L 278.642499 90.958661 L 278.760321 91.194305 L 279.001857 91.435841 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 89.874696 L 278.395072 89.874696 L 278.395072 92.036734 L 278.760321 92.036734 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 81.957039 L 278.760321 82.192684 L 278.642499 82.440111 L 278.760321 82.675755 L 279.001857 82.9114 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 81.356146 L 278.395072 81.356146 L 278.395072 83.518184 L 278.760321 83.518184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 73.438489 L 278.760321 73.674134 L 278.642499 73.91567 L 278.760321 74.157205 L 279.001857 74.39285 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 72.837596 L 278.395072 72.837596 L 278.395072 74.993743 L 278.760321 74.993743 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 64.914048 L 278.760321 65.155584 L 278.642499 65.39712 L 278.760321 65.638655 L 279.001857 65.8743 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 64.313155 L 278.395072 64.313155 L 278.395072 66.475193 L 278.760321 66.475193 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 56.395498 L 278.760321 56.637034 L 278.642499 56.872679 L 278.760321 57.114214 L 279.001857 57.35575 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 55.794605 L 278.395072 55.794605 L 278.395072 57.956643 L 278.760321 57.956643 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 47.876948 L 278.760321 48.118484 L 278.642499 48.354129 L 278.760321 48.595664 L 279.001857 48.8372 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 47.276055 L 278.395072 47.276055 L 278.395072 49.438093 L 278.760321 49.438093 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 39.476221 L 278.760321 39.717756 L 278.642499 39.959292 L 278.760321 40.194937 L 279.001857 40.436472 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 38.875327 L 278.395072 38.875327 L 278.395072 41.037366 L 278.760321 41.037366 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 30.957671 L 278.760321 31.193315 L 278.642499 31.440742 L 278.760321 31.676387 L 279.001857 31.912031 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 30.356777 L 278.395072 30.356777 L 278.395072 32.518816 L 278.760321 32.518816 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 98.994139 L 278.518786 99.235675 L 278.395072 99.47721 L 278.518786 99.712855 L 278.760321 99.954391 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 98.393246 L 278.159428 98.393246 L 278.159428 100.555284 L 278.395072 100.555284 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.642499 109.073834 L 278.395072 109.073834 M 275.396495 109.073834 L 275.037138 109.073834 M 275.037138 106.799864 L 275.396495 106.799864 M 278.395072 106.799864 L 278.642499 106.799864 M 278.642499 92.036734 L 278.395072 92.036734 M 275.396495 92.036734 L 275.037138 92.036734 M 275.037138 89.874696 L 275.396495 89.874696 M 278.395072 89.874696 L 278.642499 89.874696 M 278.642499 83.518184 L 278.395072 83.518184 M 275.396495 83.518184 L 275.037138 83.518184 M 275.037138 81.356146 L 275.396495 81.356146 M 278.395072 81.356146 L 278.642499 81.356146 M 278.642499 74.993743 L 278.395072 74.993743 M 275.396495 74.993743 L 275.037138 74.993743 M 275.037138 72.837596 L 275.396495 72.837596 M 278.395072 72.837596 L 278.642499 72.837596 M 278.642499 66.475193 L 278.395072 66.475193 M 275.396495 66.475193 L 275.037138 66.475193 M 275.037138 64.313155 L 275.396495 64.313155 M 278.395072 64.313155 L 278.642499 64.313155 M 278.642499 58.074466 L 278.395072 58.074466 M 275.396495 58.074466 L 275.037138 58.074466 M 275.037138 55.794605 L 275.396495 55.794605 M 278.395072 55.794605 L 278.642499 55.794605 M 278.642499 49.555916 L 278.395072 49.555916 M 275.396495 49.555916 L 275.037138 49.555916 M 275.037138 47.276055 L 275.396495 47.276055 M 278.395072 47.276055 L 278.642499 47.276055 M 278.642499 41.037366 L 278.395072 41.037366 M 275.396495 41.037366 L 275.037138 41.037366 M 275.037138 38.751614 L 275.396495 38.751614 M 278.395072 38.751614 L 278.642499 38.751614 M 278.642499 32.518816 L 278.395072 32.518816 M 275.396495 32.518816 L 275.037138 32.518816 M 275.037138 30.233064 L 275.396495 30.233064 M 278.395072 30.233064 L 278.642499 30.233064 M 278.395072 100.555284 L 278.159428 100.555284 M 275.037138 100.555284 L 274.801493 100.555284 M 274.801493 98.275423 L 275.037138 98.275423 M 278.159428 98.275423 L 278.395072 98.275423 M 278.395072 109.073834 L 278.395072 106.799864 M 275.396495 106.799864 L 275.396495 109.073834 M 278.395072 109.073834 L 278.518786 109.073834 M 278.395072 106.799864 L 278.518786 106.799864 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 109.073834 L 278.395072 106.799864 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 106.799864 L 275.643922 106.799864 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 106.799864 L 275.643922 109.073834 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 109.073834 L 278.159428 109.073834 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 109.073834 L 278.159428 106.799864 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 106.799864 L 275.643922 106.799864 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 106.799864 L 278.395072 106.799864 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 109.073834 L 278.159428 109.073834 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 109.073834 L 275.396495 109.073834 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 106.799864 L 275.396495 109.073834 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 92.036734 L 278.395072 89.874696 M 275.396495 89.874696 L 275.396495 92.036734 M 278.395072 92.036734 L 278.518786 92.036734 M 278.395072 89.874696 L 278.518786 89.874696 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 92.036734 L 278.395072 89.874696 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 89.874696 L 275.643922 89.874696 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 89.874696 L 275.643922 92.036734 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 92.036734 L 278.159428 92.036734 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 92.036734 L 278.159428 89.874696 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 89.874696 L 275.643922 89.874696 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 89.874696 L 278.395072 89.874696 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 92.036734 L 278.159428 92.036734 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 92.036734 L 275.396495 92.036734 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 89.874696 L 275.396495 92.036734 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 83.518184 L 278.395072 81.356146 M 275.396495 81.356146 L 275.396495 83.518184 M 278.395072 83.518184 L 278.518786 83.518184 M 278.395072 81.356146 L 278.518786 81.356146 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 83.518184 L 278.395072 81.356146 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 81.356146 L 275.643922 81.356146 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 81.356146 L 275.643922 83.518184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 83.518184 L 278.159428 83.518184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 83.518184 L 278.159428 81.356146 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 81.356146 L 275.643922 81.356146 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 81.356146 L 278.395072 81.356146 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 83.518184 L 278.159428 83.518184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 83.518184 L 275.396495 83.518184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 81.356146 L 275.396495 83.518184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 74.993743 L 278.395072 72.837596 M 275.396495 72.837596 L 275.396495 74.993743 M 278.395072 74.993743 L 278.518786 74.993743 M 278.395072 72.837596 L 278.518786 72.837596 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 74.993743 L 278.395072 72.837596 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 72.837596 L 275.643922 72.837596 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 72.837596 L 275.643922 74.993743 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 74.993743 L 278.159428 74.993743 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 74.993743 L 278.159428 72.837596 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 72.837596 L 275.643922 72.837596 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 72.837596 L 278.395072 72.837596 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 74.993743 L 278.159428 74.993743 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 74.993743 L 275.396495 74.993743 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 72.837596 L 275.396495 74.993743 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 66.475193 L 278.395072 64.313155 M 275.396495 64.313155 L 275.396495 66.475193 M 278.395072 66.475193 L 278.518786 66.475193 M 278.395072 64.313155 L 278.518786 64.313155 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 66.475193 L 278.395072 64.313155 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 64.313155 L 275.643922 64.313155 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 64.313155 L 275.643922 66.475193 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 66.475193 L 278.159428 66.475193 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 66.475193 L 278.159428 64.313155 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 64.313155 L 275.643922 64.313155 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 64.313155 L 278.395072 64.313155 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 66.475193 L 278.159428 66.475193 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 66.475193 L 275.396495 66.475193 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 64.313155 L 275.396495 66.475193 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 58.074466 L 278.395072 55.794605 M 275.396495 55.794605 L 275.396495 58.074466 M 278.395072 58.074466 L 278.518786 58.074466 M 278.395072 55.794605 L 278.518786 55.794605 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 58.074466 L 278.395072 55.794605 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 55.794605 L 275.643922 55.794605 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 55.794605 L 275.643922 58.074466 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 58.074466 L 278.159428 58.074466 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 58.074466 L 278.159428 55.794605 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 55.794605 L 275.643922 55.794605 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 55.794605 L 278.395072 55.794605 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 58.074466 L 278.159428 58.074466 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 58.074466 L 275.396495 58.074466 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 55.794605 L 275.396495 58.074466 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 49.555916 L 278.395072 47.276055 M 275.396495 47.276055 L 275.396495 49.555916 M 278.395072 49.555916 L 278.518786 49.555916 M 278.395072 47.276055 L 278.518786 47.276055 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 49.555916 L 278.395072 47.276055 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 47.276055 L 275.643922 47.276055 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 47.276055 L 275.643922 49.555916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 49.555916 L 278.159428 49.555916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 49.555916 L 278.159428 47.276055 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 47.276055 L 275.643922 47.276055 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 47.276055 L 278.395072 47.276055 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 49.555916 L 278.159428 49.555916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 49.555916 L 275.396495 49.555916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 47.276055 L 275.396495 49.555916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 41.037366 L 278.395072 38.751614 M 275.396495 38.751614 L 275.396495 41.037366 M 278.395072 41.037366 L 278.518786 41.037366 M 278.395072 38.751614 L 278.518786 38.751614 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 41.037366 L 278.395072 38.751614 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 38.751614 L 275.643922 38.751614 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 38.751614 L 275.643922 41.037366 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 41.037366 L 278.159428 41.037366 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 41.037366 L 278.159428 38.751614 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 38.751614 L 275.643922 38.751614 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 38.751614 L 278.395072 38.751614 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 41.037366 L 278.159428 41.037366 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 41.037366 L 275.396495 41.037366 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 38.751614 L 275.396495 41.037366 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 32.518816 L 278.395072 30.233064 M 275.396495 30.233064 L 275.396495 32.518816 M 278.395072 32.518816 L 278.518786 32.518816 M 278.395072 30.233064 L 278.518786 30.233064 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 32.518816 L 278.395072 30.233064 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 30.233064 L 275.643922 30.233064 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 30.233064 L 275.643922 32.518816 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 32.518816 L 278.159428 32.518816 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 32.518816 L 278.159428 30.233064 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 30.233064 L 275.643922 30.233064 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 30.233064 L 278.395072 30.233064 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 32.518816 L 278.159428 32.518816 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 32.518816 L 275.396495 32.518816 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 30.233064 L 275.396495 32.518816 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 100.555284 L 278.159428 98.275423 M 275.037138 98.275423 L 275.037138 100.555284 M 278.159428 100.555284 L 278.283141 100.555284 M 278.159428 98.275423 L 278.283141 98.275423 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 100.555284 L 278.159428 98.275423 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.923783 98.275423 L 275.278673 98.275423 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.278673 98.275423 L 275.278673 100.555284 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.278673 100.555284 L 277.923783 100.555284 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.923783 100.555284 L 277.923783 98.275423 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 98.275423 L 275.278673 98.275423 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.923783 98.275423 L 278.159428 98.275423 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 100.555284 L 277.923783 100.555284 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.278673 100.555284 L 275.037138 100.555284 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.160851 98.275423 L 275.160851 100.555284 M 318.837566 263.515262 L 318.837566 277.913143 M 340.92335 277.913143 L 340.92335 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip2)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 341.282707 263.756798 L 341.282707 277.677499 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.002847 277.913143 L 339.120669 277.913143 L 339.120669 277.795321 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 336.840808 277.913143 L 336.840808 277.677499 L 336.95863 277.553785 L 336.95863 276.593534 L 337.076453 276.357889 L 337.076453 274.914567 L 337.200166 274.555209 L 337.200166 272.634706 L 337.317988 272.39317 L 337.317988 270.231132 L 337.441702 269.995487 L 337.441702 267.957162 L 337.559524 267.591913 L 337.559524 265.912945 L 337.677346 265.677301 L 337.677346 264.357692 L 337.801059 264.233978 L 337.801059 263.638976 L 337.924773 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 334.560947 277.913143 L 334.560947 277.677499 L 334.678769 277.553785 L 334.678769 276.593534 L 334.802483 276.357889 L 334.802483 274.914567 L 334.920305 274.555209 L 334.920305 272.634706 L 335.038127 272.39317 L 335.038127 270.231132 L 335.161841 269.995487 L 335.161841 268.31652 L 335.279663 267.957162 L 335.279663 266.154481 L 335.397485 265.912945 L 335.397485 264.593336 L 335.521199 264.357692 L 335.521199 263.638976 L 335.639021 263.638976 L 335.639021 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.281086 277.913143 L 332.281086 277.677499 L 332.398908 277.677499 L 332.398908 276.717247 L 332.522622 276.593534 L 332.522622 275.156102 L 332.640444 274.914567 L 332.640444 272.994064 L 332.764158 272.634706 L 332.764158 270.596381 L 332.876089 270.354845 L 332.876089 268.31652 L 332.999802 267.957162 L 332.999802 266.154481 L 333.123515 265.912945 L 333.123515 264.593336 L 333.235447 264.357692 L 333.235447 263.638976 L 333.35916 263.638976 L 333.35916 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.001225 277.913143 L 330.001225 277.795321 L 330.119048 277.677499 L 330.119048 276.958783 L 330.23687 276.717247 L 330.23687 275.397638 L 330.360583 275.156102 L 330.360583 273.353422 L 330.478406 272.994064 L 330.478406 270.955739 L 330.602119 270.596381 L 330.602119 268.552164 L 330.719941 268.31652 L 330.719941 266.396017 L 330.837763 266.154481 L 330.837763 264.717049 L 330.961477 264.593336 L 330.961477 263.756798 L 331.079299 263.638976 L 331.079299 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 327.721364 277.913143 L 327.721364 277.795321 L 327.839187 277.677499 L 327.839187 276.958783 L 327.9629 276.717247 L 327.9629 275.397638 L 328.080722 275.156102 L 328.080722 273.71278 L 328.198545 273.353422 L 328.198545 271.315096 L 328.322258 270.955739 L 328.322258 268.911522 L 328.44008 268.552164 L 328.44008 266.755375 L 328.557903 266.396017 L 328.557903 264.958585 L 328.681616 264.717049 L 328.681616 263.87462 L 328.799438 263.756798 L 328.799438 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 276.717247 L 325.677148 275.639174 L 325.800862 275.397638 L 325.800862 273.836493 L 325.924575 273.594957 L 325.924575 271.43881 L 326.036506 271.073561 L 326.036506 268.911522 L 326.160219 268.675878 L 326.160219 266.873197 L 326.283933 266.637552 L 326.283933 264.958585 L 326.395864 264.834872 L 326.395864 263.87462 L 326.519577 263.756798 L 326.519577 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.395864 263.515262 L 326.395864 263.638976 L 326.283933 263.756798 L 326.283933 264.593336 L 326.160219 264.717049 L 326.160219 266.278195 L 326.036506 266.396017 L 326.036506 268.440233 L 325.924575 268.675878 L 325.924575 270.837916 L 325.800862 271.073561 L 325.800862 273.117777 L 325.677148 273.353422 L 325.677148 274.678922 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 328.681616 263.515262 L 328.681616 263.638976 L 328.557903 263.638976 L 328.557903 264.475514 L 328.44008 264.593336 L 328.44008 266.036659 L 328.322258 266.278195 L 328.322258 268.074984 L 328.198545 268.31652 L 328.198545 270.354845 L 328.080722 270.714203 L 328.080722 272.752528 L 327.9629 273.117777 L 327.9629 274.914567 L 327.839187 275.279816 L 327.839187 276.593534 L 327.721364 276.83507 L 327.721364 277.677499 L 327.603542 277.795321 L 327.603542 277.913143 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.961477 263.515262 L 330.961477 263.638976 L 330.837763 263.638976 L 330.837763 264.233978 L 330.719941 264.475514 L 330.719941 265.677301 L 330.602119 266.036659 L 330.602119 267.715626 L 330.478406 268.074984 L 330.478406 270.1192 L 330.360583 270.354845 L 330.360583 272.516884 L 330.23687 272.752528 L 330.23687 274.678922 L 330.119048 274.914567 L 330.119048 276.475712 L 330.001225 276.593534 L 330.001225 277.553785 L 329.877512 277.677499 L 329.877512 277.913143 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.235447 263.515262 L 333.123515 263.638976 L 333.123515 264.233978 L 332.999802 264.475514 L 332.999802 265.677301 L 332.876089 266.036659 L 332.876089 267.715626 L 332.764158 268.074984 L 332.764158 270.1192 L 332.640444 270.354845 L 332.640444 272.516884 L 332.522622 272.752528 L 332.522622 274.437387 L 332.398908 274.678922 L 332.398908 276.234176 L 332.281086 276.475712 L 332.281086 277.435963 L 332.157373 277.553785 L 332.157373 277.913143 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.521199 263.515262 L 335.397485 263.515262 L 335.397485 264.116156 L 335.279663 264.233978 L 335.279663 265.435765 L 335.161841 265.677301 L 335.161841 267.474091 L 335.038127 267.715626 L 335.038127 269.753951 L 334.920305 270.1192 L 334.920305 272.157526 L 334.802483 272.516884 L 334.802483 274.437387 L 334.678769 274.678922 L 334.678769 276.234176 L 334.560947 276.475712 L 334.560947 277.435963 L 334.443125 277.553785 L 334.443125 277.913143 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.801059 263.515262 L 337.677346 263.515262 L 337.677346 263.998334 L 337.559524 264.116156 L 337.559524 265.19423 L 337.441702 265.435765 L 337.441702 267.114733 L 337.317988 267.474091 L 337.317988 269.394593 L 337.200166 269.753951 L 337.200166 271.798168 L 337.076453 272.157526 L 337.076453 274.072137 L 336.95863 274.437387 L 336.95863 275.998532 L 336.840808 276.234176 L 336.840808 277.318141 L 336.717095 277.435963 L 336.717095 277.913143 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.120669 276.717247 L 339.120669 277.318141 L 339.002847 277.318141 L 339.002847 277.913143 L 338.879133 277.913143 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.601921 262.437189 L 318.601921 278.873395 M 318.236672 279.232753 L 314.283735 279.232753 M 314.283735 262.195653 L 318.236672 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.236672 278.873395 L 318.236672 262.437189 L 314.283735 262.437189 M 314.283735 278.873395 L 318.236672 278.873395 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 262.195653 L 325.800862 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.761113 279.232753 L 326.878935 279.114931 L 326.878935 278.514037 L 327.002649 278.396215 L 327.002649 276.958783 L 327.120471 276.717247 L 327.120471 274.678922 L 327.238293 274.555209 L 327.238293 272.033812 L 327.356115 271.91599 L 327.356115 269.153058 L 327.479829 268.911522 L 327.479829 266.755375 L 327.603542 266.513839 L 327.603542 264.357692 L 327.721364 264.233978 L 327.721364 262.914369 L 327.839187 262.796546 L 327.839187 262.195653 L 327.9629 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 329.040974 279.232753 L 329.040974 279.114931 L 329.158796 279.114931 L 329.158796 278.396215 L 329.28251 278.278392 L 329.28251 276.717247 L 329.400332 276.593534 L 329.400332 274.555209 L 329.518154 274.313673 L 329.518154 271.91599 L 329.641867 271.674454 L 329.641867 268.911522 L 329.75969 268.675878 L 329.75969 266.396017 L 329.877512 266.154481 L 329.877512 264.233978 L 330.001225 264.116156 L 330.001225 262.796546 L 330.119048 262.678724 L 330.119048 262.195653 L 330.23687 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 331.320835 279.232753 L 331.320835 279.114931 L 331.438657 279.114931 L 331.438657 278.278392 L 331.556479 278.154679 L 331.556479 276.593534 L 331.680193 276.475712 L 331.680193 274.195851 L 331.803906 273.954315 L 331.803906 271.43881 L 331.921728 271.197274 L 331.921728 268.675878 L 332.039551 268.552164 L 332.039551 266.154481 L 332.157373 266.036659 L 332.157373 263.998334 L 332.281086 263.87462 L 332.281086 262.678724 L 332.398908 262.555011 L 332.398908 262.195653 L 332.522622 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.600696 279.232753 L 333.600696 279.114931 L 333.718518 278.997108 L 333.718518 278.154679 L 333.842231 278.036857 L 333.842231 276.357889 L 333.960054 276.116354 L 333.960054 273.954315 L 334.077876 273.71278 L 334.077876 271.197274 L 334.201589 271.073561 L 334.201589 268.31652 L 334.319411 268.074984 L 334.319411 266.036659 L 334.443125 265.795123 L 334.443125 263.87462 L 334.560947 263.756798 L 334.560947 262.555011 L 334.678769 262.555011 L 334.678769 262.195653 L 334.802483 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.880556 279.232753 L 335.880556 278.997108 L 335.998379 278.997108 L 335.998379 278.036857 L 336.122092 277.913143 L 336.122092 276.116354 L 336.239914 275.998532 L 336.239914 273.71278 L 336.357737 273.594957 L 336.357737 271.073561 L 336.48145 270.837916 L 336.48145 268.074984 L 336.599272 267.957162 L 336.599272 265.677301 L 336.717095 265.435765 L 336.717095 263.756798 L 336.840808 263.638976 L 336.840808 262.555011 L 336.95863 262.437189 L 336.95863 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 338.160417 279.232753 L 338.160417 278.873395 L 338.27824 278.873395 L 338.27824 277.913143 L 338.396062 277.677499 L 338.396062 275.998532 L 338.519775 275.751105 L 338.519775 273.477135 L 338.643489 273.117777 L 338.643489 270.955739 L 338.761311 270.596381 L 338.761311 268.074984 L 338.879133 267.715626 L 338.879133 265.435765 L 339.002847 265.19423 L 339.002847 263.515262 L 339.120669 263.39744 L 339.120669 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.160219 279.232753 L 326.283933 279.232753 L 326.283933 278.755573 L 326.395864 278.63775 L 326.395864 277.435963 L 326.519577 277.318141 L 326.519577 275.397638 L 326.643291 275.279816 L 326.643291 272.876241 L 326.761113 272.634706 L 326.761113 269.995487 L 326.878935 269.753951 L 326.878935 267.232555 L 327.002649 266.99691 L 327.002649 264.958585 L 327.120471 264.834872 L 327.120471 263.279618 L 327.238293 263.155904 L 327.238293 262.313475 L 327.356115 262.313475 L 327.356115 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 328.44008 279.232753 L 328.557903 279.232753 L 328.557903 278.63775 L 328.681616 278.63775 L 328.681616 277.318141 L 328.799438 277.194428 L 328.799438 275.032389 L 328.923152 274.914567 L 328.923152 272.634706 L 329.040974 272.39317 L 329.040974 269.753951 L 329.158796 269.518307 L 329.158796 266.99691 L 329.28251 266.873197 L 329.28251 264.834872 L 329.400332 264.593336 L 329.400332 263.032191 L 329.518154 262.914369 L 329.518154 262.313475 L 329.641867 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.719941 279.232753 L 330.837763 279.232753 L 330.837763 278.63775 L 330.961477 278.514037 L 330.961477 277.194428 L 331.079299 276.958783 L 331.079299 274.914567 L 331.197121 274.678922 L 331.197121 272.275348 L 331.320835 272.033812 L 331.320835 269.518307 L 331.438657 269.276771 L 331.438657 266.873197 L 331.556479 266.637552 L 331.556479 264.475514 L 331.680193 264.357692 L 331.680193 262.914369 L 331.803906 262.914369 L 331.803906 262.195653 L 331.921728 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.999802 279.232753 L 333.123515 279.114931 L 333.123515 278.514037 L 333.235447 278.396215 L 333.235447 276.83507 L 333.35916 276.717247 L 333.35916 274.678922 L 333.482873 274.437387 L 333.482873 272.033812 L 333.600696 271.798168 L 333.600696 269.153058 L 333.718518 268.911522 L 333.718518 266.513839 L 333.842231 266.278195 L 333.842231 264.357692 L 333.960054 264.233978 L 333.960054 262.914369 L 334.077876 262.796546 L 334.077876 262.195653 L 334.201589 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.279663 279.232753 L 335.279663 279.114931 L 335.397485 279.114931 L 335.397485 278.278392 L 335.521199 278.278392 L 335.521199 276.717247 L 335.639021 276.593534 L 335.639021 274.437387 L 335.762734 274.313673 L 335.762734 271.798168 L 335.880556 271.556632 L 335.880556 268.911522 L 335.998379 268.675878 L 335.998379 266.278195 L 336.122092 266.154481 L 336.122092 264.233978 L 336.239914 264.116156 L 336.239914 262.796546 L 336.357737 262.678724 L 336.357737 262.195653 L 336.48145 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.559524 279.232753 L 337.559524 279.114931 L 337.677346 279.114931 L 337.677346 278.278392 L 337.801059 278.154679 L 337.801059 276.593534 L 337.924773 276.475712 L 337.924773 274.072137 L 338.036704 273.836493 L 338.036704 271.43881 L 338.160417 271.197274 L 338.160417 268.675878 L 338.27824 268.440233 L 338.27824 266.154481 L 338.396062 265.912945 L 338.396062 263.998334 L 338.519775 263.87462 L 338.519775 262.678724 L 338.643489 262.555011 L 338.643489 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.120669 276.717247 L 339.120669 262.796546 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 262.195653 L 325.677148 274.678922 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.120669 278.036857 L 339.120669 277.795321 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 276.717247 L 325.677148 278.278392 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.236672 262.195653 L 318.236672 262.437189 M 318.236672 278.873395 L 318.236672 279.232753 M 318.236672 262.437189 L 318.601921 262.437189 M 318.601921 278.873395 L 318.236672 278.873395 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.478208 262.437189 L 318.236672 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.236672 279.114931 L 318.478208 278.873395 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.837566 277.913143 L 318.719743 278.036857 L 318.601921 278.154679 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.601921 263.155904 L 318.719743 263.279618 L 318.837566 263.39744 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip3)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.92335 277.913143 L 341.158994 277.677499 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip4)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 341.158994 263.756798 L 341.041172 263.638976 L 340.92335 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip5)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.92335 277.913143 L 339.120669 277.913143 M 339.002847 277.913143 L 338.879133 277.913143 M 336.840808 277.913143 L 336.599272 277.913143 M 334.560947 277.913143 L 334.443125 277.913143 M 332.281086 277.913143 L 332.157373 277.913143 M 330.001225 277.913143 L 329.877512 277.913143 M 327.721364 277.913143 L 327.603542 277.913143 M 325.677148 277.913143 L 318.837566 277.913143 M 340.92335 263.515262 L 339.120669 263.515262 M 337.924773 263.515262 L 337.801059 263.515262 M 335.639021 263.515262 L 335.521199 263.515262 M 333.35916 263.515262 L 333.235447 263.515262 M 331.079299 263.515262 L 330.961477 263.515262 M 328.799438 263.515262 L 328.681616 263.515262 M 326.519577 263.515262 L 326.395864 263.515262 M 325.677148 263.515262 L 318.837566 263.515262 M 338.160417 279.232753 L 337.559524 279.232753 M 335.880556 279.232753 L 335.279663 279.232753 M 333.600696 279.232753 L 332.999802 279.232753 M 331.320835 279.232753 L 330.719941 279.232753 M 329.040974 279.232753 L 328.44008 279.232753 M 326.761113 279.232753 L 326.283933 279.232753 M 339.120669 262.195653 L 338.643489 262.195653 M 336.95863 262.195653 L 336.48145 262.195653 M 334.678769 262.195653 L 334.201589 262.195653 M 332.398908 262.195653 L 331.921728 262.195653 M 330.23687 262.195653 L 329.641867 262.195653 M 327.9629 262.195653 L 327.356115 262.195653 M 327.603542 277.913143 L 326.761113 279.232753 M 329.877512 277.913143 L 329.040974 279.232753 M 332.157373 277.913143 L 331.320835 279.232753 M 334.443125 277.913143 L 333.600696 279.232753 M 336.717095 277.913143 L 335.880556 279.232753 M 338.879133 277.913143 L 338.160417 279.232753 M 325.677148 262.195653 L 326.395864 263.515262 M 327.9629 262.195653 L 328.681616 263.515262 M 330.23687 262.195653 L 330.961477 263.515262 M 332.522622 262.195653 L 333.235447 263.515262 M 334.802483 262.195653 L 335.521199 263.515262 M 336.95863 262.195653 L 337.801059 263.515262 M 326.160219 279.232753 L 325.677148 278.278392 M 328.44008 279.232753 L 327.721364 277.913143 M 330.719941 279.232753 L 330.001225 277.913143 M 332.999802 279.232753 L 332.281086 277.913143 M 335.279663 279.232753 L 334.443125 277.913143 M 337.559524 279.232753 L 336.717095 277.913143 M 339.120669 278.036857 L 339.002847 277.913143 M 337.924773 263.515262 L 338.643489 262.195653 M 335.639021 263.515262 L 336.357737 262.195653 M 333.35916 263.515262 L 334.077876 262.195653 M 331.079299 263.515262 L 331.921728 262.195653 M 328.799438 263.515262 L 329.641867 262.195653 M 326.519577 263.515262 L 327.356115 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.837566 308.876835 L 318.837566 323.274716 M 340.92335 323.274716 L 340.92335 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip6)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 341.282707 309.118371 L 341.282707 323.033181 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.002847 323.274716 L 339.120669 323.274716 L 339.120669 323.156894 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 336.840808 323.274716 L 336.840808 323.033181 L 336.95863 322.915358 L 336.95863 321.955107 L 337.076453 321.713571 L 337.076453 320.27614 L 337.200166 319.916782 L 337.200166 318.114101 L 337.317988 317.754743 L 337.317988 315.716418 L 337.441702 315.35706 L 337.441702 313.318735 L 337.559524 312.959377 L 337.559524 311.274518 L 337.677346 311.032983 L 337.677346 309.713373 L 337.801059 309.595551 L 337.801059 308.994658 L 337.924773 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 334.560947 323.274716 L 334.560947 323.033181 L 334.678769 322.915358 L 334.678769 321.955107 L 334.802483 321.713571 L 334.802483 320.27614 L 334.920305 319.916782 L 334.920305 318.114101 L 335.038127 317.754743 L 335.038127 315.716418 L 335.161841 315.35706 L 335.161841 313.678093 L 335.279663 313.318735 L 335.279663 311.516054 L 335.397485 311.274518 L 335.397485 309.954909 L 335.521199 309.713373 L 335.521199 308.994658 L 335.639021 308.994658 L 335.639021 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.281086 323.274716 L 332.281086 323.033181 L 332.398908 323.033181 L 332.398908 322.072929 L 332.522622 321.955107 L 332.522622 320.517675 L 332.640444 320.27614 L 332.640444 318.355637 L 332.764158 318.114101 L 332.764158 315.957954 L 332.876089 315.716418 L 332.876089 313.678093 L 332.999802 313.318735 L 332.999802 311.516054 L 333.123515 311.274518 L 333.123515 309.954909 L 333.235447 309.713373 L 333.235447 308.994658 L 333.35916 308.994658 L 333.35916 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.001225 323.274716 L 330.001225 323.156894 L 330.119048 323.033181 L 330.119048 322.314465 L 330.23687 322.072929 L 330.23687 320.75332 L 330.360583 320.517675 L 330.360583 318.714995 L 330.478406 318.355637 L 330.478406 316.317311 L 330.602119 315.957954 L 330.602119 313.913737 L 330.719941 313.678093 L 330.719941 311.751699 L 330.837763 311.516054 L 330.837763 310.072731 L 330.961477 309.954909 L 330.961477 309.118371 L 331.079299 308.994658 L 331.079299 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 327.721364 323.274716 L 327.721364 323.156894 L 327.839187 323.033181 L 327.839187 322.314465 L 327.9629 322.196643 L 327.9629 320.75332 L 328.080722 320.517675 L 328.080722 319.074353 L 328.198545 318.714995 L 328.198545 316.676669 L 328.322258 316.317311 L 328.322258 314.278986 L 328.44008 313.913737 L 328.44008 312.116948 L 328.557903 311.751699 L 328.557903 310.314267 L 328.681616 310.072731 L 328.681616 309.236193 L 328.799438 309.118371 L 328.799438 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 322.072929 L 325.677148 320.994856 L 325.800862 320.75332 L 325.800862 319.192175 L 325.924575 318.95653 L 325.924575 316.794492 L 326.036506 316.435134 L 326.036506 314.278986 L 326.160219 314.037451 L 326.160219 312.23477 L 326.283933 311.993234 L 326.283933 310.314267 L 326.395864 310.196445 L 326.395864 309.236193 L 326.519577 309.236193 L 326.519577 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.395864 308.876835 L 326.395864 308.994658 L 326.283933 309.118371 L 326.283933 309.954909 L 326.160219 310.072731 L 326.160219 311.639767 L 326.036506 311.875412 L 326.036506 313.795915 L 325.924575 314.037451 L 325.924575 316.193598 L 325.800862 316.435134 L 325.800862 318.47935 L 325.677148 318.714995 L 325.677148 320.034604 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 328.681616 308.876835 L 328.681616 308.994658 L 328.557903 308.994658 L 328.557903 309.837087 L 328.44008 309.954909 L 328.44008 311.392341 L 328.322258 311.639767 L 328.322258 313.436557 L 328.198545 313.795915 L 328.198545 315.716418 L 328.080722 316.075776 L 328.080722 318.114101 L 327.9629 318.47935 L 327.9629 320.27614 L 327.839187 320.635498 L 327.839187 321.955107 L 327.721364 322.196643 L 327.721364 323.033181 L 327.603542 323.156894 L 327.603542 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.961477 308.876835 L 330.961477 308.994658 L 330.837763 308.994658 L 330.837763 309.595551 L 330.719941 309.837087 L 330.719941 311.032983 L 330.602119 311.392341 L 330.602119 313.071308 L 330.478406 313.436557 L 330.478406 315.474882 L 330.360583 315.716418 L 330.360583 317.872565 L 330.23687 318.114101 L 330.23687 320.034604 L 330.119048 320.27614 L 330.119048 321.837285 L 330.001225 321.955107 L 330.001225 322.915358 L 329.877512 323.033181 L 329.877512 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.235447 308.876835 L 333.123515 308.994658 L 333.123515 309.595551 L 332.999802 309.837087 L 332.999802 311.032983 L 332.876089 311.392341 L 332.876089 313.071308 L 332.764158 313.436557 L 332.764158 315.474882 L 332.640444 315.716418 L 332.640444 317.872565 L 332.522622 318.114101 L 332.522622 319.798959 L 332.398908 320.034604 L 332.398908 321.595749 L 332.281086 321.837285 L 332.281086 322.797536 L 332.157373 322.915358 L 332.157373 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.521199 308.876835 L 335.397485 308.876835 L 335.397485 309.477729 L 335.279663 309.595551 L 335.279663 310.797338 L 335.161841 311.032983 L 335.161841 312.835663 L 335.038127 313.071308 L 335.038127 315.115524 L 334.920305 315.474882 L 334.920305 317.513208 L 334.802483 317.872565 L 334.802483 319.798959 L 334.678769 320.034604 L 334.678769 321.595749 L 334.560947 321.837285 L 334.560947 322.797536 L 334.443125 322.915358 L 334.443125 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.801059 308.876835 L 337.677346 308.876835 L 337.677346 309.354015 L 337.559524 309.477729 L 337.559524 310.555803 L 337.441702 310.797338 L 337.441702 312.476306 L 337.317988 312.835663 L 337.317988 314.756166 L 337.200166 315.115524 L 337.200166 317.15385 L 337.076453 317.513208 L 337.076453 319.439602 L 336.95863 319.798959 L 336.95863 321.354213 L 336.840808 321.595749 L 336.840808 322.673823 L 336.717095 322.797536 L 336.717095 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.120669 322.072929 L 339.120669 322.673823 L 339.002847 322.797536 L 339.002847 323.274716 L 338.879133 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.601921 307.798762 L 318.601921 324.234968 M 318.236672 324.594326 L 314.283735 324.594326 M 314.283735 307.557226 L 318.236672 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.236672 324.234968 L 318.236672 307.798762 L 314.283735 307.798762 M 314.283735 324.234968 L 318.236672 324.234968 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 307.557226 L 325.800862 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.761113 324.594326 L 326.878935 324.476504 L 326.878935 323.87561 L 327.002649 323.751897 L 327.002649 322.314465 L 327.120471 322.072929 L 327.120471 320.034604 L 327.238293 319.916782 L 327.238293 317.395385 L 327.356115 317.277563 L 327.356115 314.514631 L 327.479829 314.278986 L 327.479829 312.116948 L 327.603542 311.875412 L 327.603542 309.713373 L 327.721364 309.595551 L 327.721364 308.275942 L 327.839187 308.158119 L 327.839187 307.557226 L 327.9629 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 329.040974 324.594326 L 329.040974 324.476504 L 329.158796 324.476504 L 329.158796 323.751897 L 329.28251 323.634074 L 329.28251 322.072929 L 329.400332 321.955107 L 329.400332 319.916782 L 329.518154 319.675246 L 329.518154 317.277563 L 329.641867 317.036027 L 329.641867 314.278986 L 329.75969 314.155273 L 329.75969 311.751699 L 329.877512 311.516054 L 329.877512 309.595551 L 330.001225 309.477729 L 330.001225 308.158119 L 330.119048 308.034406 L 330.119048 307.557226 L 330.23687 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 331.320835 324.594326 L 331.320835 324.476504 L 331.438657 324.476504 L 331.438657 323.634074 L 331.556479 323.516252 L 331.556479 321.955107 L 331.680193 321.837285 L 331.680193 319.557424 L 331.803906 319.315888 L 331.803906 316.794492 L 331.921728 316.552956 L 331.921728 314.155273 L 332.039551 313.913737 L 332.039551 311.516054 L 332.157373 311.392341 L 332.157373 309.354015 L 332.281086 309.236193 L 332.281086 308.034406 L 332.398908 307.916584 L 332.398908 307.557226 L 332.522622 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.600696 324.594326 L 333.600696 324.476504 L 333.718518 324.35279 L 333.718518 323.516252 L 333.842231 323.392539 L 333.842231 321.713571 L 333.960054 321.477927 L 333.960054 319.315888 L 334.077876 319.074353 L 334.077876 316.552956 L 334.201589 316.435134 L 334.201589 313.678093 L 334.319411 313.436557 L 334.319411 311.392341 L 334.443125 311.156696 L 334.443125 309.236193 L 334.560947 309.118371 L 334.560947 307.916584 L 334.678769 307.916584 L 334.678769 307.557226 L 334.802483 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.880556 324.594326 L 335.880556 324.35279 L 335.998379 324.35279 L 335.998379 323.392539 L 336.122092 323.274716 L 336.122092 321.477927 L 336.239914 321.354213 L 336.239914 319.074353 L 336.357737 318.95653 L 336.357737 316.435134 L 336.48145 316.193598 L 336.48145 313.436557 L 336.599272 313.318735 L 336.599272 311.032983 L 336.717095 310.797338 L 336.717095 309.118371 L 336.840808 308.994658 L 336.840808 307.916584 L 336.95863 307.798762 L 336.95863 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 338.160417 324.594326 L 338.160417 324.234968 L 338.27824 324.234968 L 338.27824 323.274716 L 338.396062 323.033181 L 338.396062 321.354213 L 338.519775 321.118569 L 338.519775 318.838708 L 338.643489 318.47935 L 338.643489 316.317311 L 338.761311 315.957954 L 338.761311 313.436557 L 338.879133 313.071308 L 338.879133 310.797338 L 339.002847 310.555803 L 339.002847 308.876835 L 339.120669 308.753122 L 339.120669 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.160219 324.594326 L 326.283933 324.594326 L 326.283933 324.117146 L 326.395864 323.993432 L 326.395864 322.797536 L 326.519577 322.673823 L 326.519577 320.75332 L 326.643291 320.635498 L 326.643291 318.231923 L 326.761113 317.996279 L 326.761113 315.35706 L 326.878935 315.115524 L 326.878935 312.594128 L 327.002649 312.476306 L 327.002649 310.314267 L 327.120471 310.196445 L 327.120471 308.6353 L 327.238293 308.517477 L 327.238293 307.675048 L 327.356115 307.675048 L 327.356115 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 328.44008 324.594326 L 328.557903 324.594326 L 328.557903 323.993432 L 328.681616 323.993432 L 328.681616 322.673823 L 328.799438 322.556001 L 328.799438 320.393962 L 328.923152 320.27614 L 328.923152 317.996279 L 329.040974 317.872565 L 329.040974 315.115524 L 329.158796 314.873989 L 329.158796 312.476306 L 329.28251 312.23477 L 329.28251 310.196445 L 329.400332 309.954909 L 329.400332 308.393764 L 329.518154 308.275942 L 329.518154 307.675048 L 329.641867 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.719941 324.594326 L 330.837763 324.594326 L 330.837763 323.993432 L 330.961477 323.87561 L 330.961477 322.556001 L 331.079299 322.314465 L 331.079299 320.27614 L 331.197121 320.034604 L 331.197121 317.636921 L 331.320835 317.395385 L 331.320835 314.873989 L 331.438657 314.638344 L 331.438657 312.23477 L 331.556479 311.993234 L 331.556479 309.837087 L 331.680193 309.713373 L 331.680193 308.275942 L 331.803906 308.275942 L 331.803906 307.557226 L 331.921728 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.999802 324.594326 L 333.123515 324.476504 L 333.123515 323.87561 L 333.235447 323.751897 L 333.235447 322.196643 L 333.35916 322.072929 L 333.35916 320.034604 L 333.482873 319.798959 L 333.482873 317.395385 L 333.600696 317.15385 L 333.600696 314.514631 L 333.718518 314.278986 L 333.718518 311.875412 L 333.842231 311.639767 L 333.842231 309.713373 L 333.960054 309.595551 L 333.960054 308.275942 L 334.077876 308.158119 L 334.077876 307.557226 L 334.201589 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.279663 324.594326 L 335.279663 324.476504 L 335.397485 324.476504 L 335.397485 323.634074 L 335.521199 323.634074 L 335.521199 322.072929 L 335.639021 321.955107 L 335.639021 319.798959 L 335.762734 319.675246 L 335.762734 317.15385 L 335.880556 317.036027 L 335.880556 314.278986 L 335.998379 314.037451 L 335.998379 311.639767 L 336.122092 311.516054 L 336.122092 309.595551 L 336.239914 309.477729 L 336.239914 308.158119 L 336.357737 308.034406 L 336.357737 307.557226 L 336.48145 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.559524 324.594326 L 337.559524 324.476504 L 337.677346 324.476504 L 337.677346 323.634074 L 337.801059 323.516252 L 337.801059 321.955107 L 337.924773 321.837285 L 337.924773 319.439602 L 338.036704 319.315888 L 338.036704 316.794492 L 338.160417 316.552956 L 338.160417 314.037451 L 338.27824 313.795915 L 338.27824 311.516054 L 338.396062 311.274518 L 338.396062 309.354015 L 338.519775 309.236193 L 338.519775 308.034406 L 338.643489 307.916584 L 338.643489 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.120669 322.072929 L 339.120669 308.158119 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 307.557226 L 325.677148 320.034604 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.120669 323.392539 L 339.120669 323.156894 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 322.072929 L 325.677148 323.634074 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.236672 307.557226 L 318.236672 307.798762 M 318.236672 324.234968 L 318.236672 324.594326 M 318.236672 307.798762 L 318.601921 307.798762 M 318.601921 324.234968 L 318.236672 324.234968 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.478208 307.798762 L 318.236672 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.236672 324.476504 L 318.478208 324.234968 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.837566 323.392539 L 318.719743 323.516252 L 318.601921 323.634074 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.601921 308.517477 L 318.837566 308.753122 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip7)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.92335 323.274716 L 341.041172 323.156894 L 341.158994 323.033181 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip8)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 341.158994 309.118371 L 341.041172 308.994658 L 340.92335 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip9)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.92335 323.274716 L 339.120669 323.274716 M 339.002847 323.274716 L 338.879133 323.274716 M 336.840808 323.274716 L 336.599272 323.274716 M 334.560947 323.274716 L 334.443125 323.274716 M 332.281086 323.274716 L 332.157373 323.274716 M 330.001225 323.274716 L 329.877512 323.274716 M 327.721364 323.274716 L 327.603542 323.274716 M 325.677148 323.274716 L 318.837566 323.274716 M 340.92335 308.876835 L 339.120669 308.876835 M 337.924773 308.876835 L 337.801059 308.876835 M 335.639021 308.876835 L 335.521199 308.876835 M 333.35916 308.876835 L 333.235447 308.876835 M 331.079299 308.876835 L 330.961477 308.876835 M 328.799438 308.876835 L 328.681616 308.876835 M 326.519577 308.876835 L 326.395864 308.876835 M 325.677148 308.876835 L 318.837566 308.876835 M 338.160417 324.594326 L 337.559524 324.594326 M 335.880556 324.594326 L 335.279663 324.594326 M 333.600696 324.594326 L 332.999802 324.594326 M 331.320835 324.594326 L 330.719941 324.594326 M 329.040974 324.594326 L 328.44008 324.594326 M 326.761113 324.594326 L 326.283933 324.594326 M 339.120669 307.557226 L 338.643489 307.557226 M 336.95863 307.557226 L 336.48145 307.557226 M 334.678769 307.557226 L 334.201589 307.557226 M 332.398908 307.557226 L 331.921728 307.557226 M 330.23687 307.557226 L 329.641867 307.557226 M 327.9629 307.557226 L 327.356115 307.557226 M 327.603542 323.274716 L 326.761113 324.594326 M 329.877512 323.274716 L 329.040974 324.594326 M 332.157373 323.274716 L 331.320835 324.594326 M 334.443125 323.274716 L 333.600696 324.594326 M 336.717095 323.274716 L 335.880556 324.594326 M 338.879133 323.274716 L 338.160417 324.594326 M 325.677148 307.557226 L 326.395864 308.876835 M 327.9629 307.557226 L 328.681616 308.876835 M 330.23687 307.557226 L 330.961477 308.876835 M 332.522622 307.557226 L 333.235447 308.876835 M 334.802483 307.557226 L 335.521199 308.876835 M 336.95863 307.557226 L 337.801059 308.876835 M 326.160219 324.594326 L 325.677148 323.634074 M 328.44008 324.594326 L 327.721364 323.274716 M 330.719941 324.594326 L 330.001225 323.274716 M 332.999802 324.594326 L 332.281086 323.274716 M 335.279663 324.594326 L 334.443125 323.274716 M 337.559524 324.594326 L 336.717095 323.274716 M 339.120669 323.392539 L 339.002847 323.274716 M 337.924773 308.876835 L 338.643489 307.557226 M 335.639021 308.876835 L 336.357737 307.557226 M 333.35916 308.876835 L 334.077876 307.557226 M 331.079299 308.876835 L 331.921728 307.557226 M 328.799438 308.876835 L 329.641867 307.557226 M 326.519577 308.876835 L 327.356115 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.482393 21.838227 L 32.040493 21.838227 L 32.040493 48.8372 L 36.482393 48.8372 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.075774 27.835381 L 28.075774 42.957869 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.682559 35.393679 L 28.800381 35.275857 L 28.800381 35.034321 L 28.924094 34.916499 L 28.924094 34.798677 L 29.041916 34.674963 L 29.041916 34.557141 L 29.159739 34.557141 L 29.283452 34.439319 L 29.395383 34.439319 L 29.519097 34.315605 L 29.760632 34.315605 L 29.878455 34.197783 L 30.361526 34.197783 L 30.479348 34.315605 L 30.720884 34.315605 L 30.838706 34.439319 L 30.962419 34.439319 L 30.962419 34.557141 L 31.080242 34.557141 L 31.321777 34.798677 L 31.321777 34.916499 L 31.4396 35.034321 L 31.4396 35.753037 L 31.321777 35.87675 L 31.321777 35.994573 L 31.198064 35.994573 L 30.838706 36.353931 L 30.720884 36.353931 L 30.603061 36.477644 L 29.64281 36.477644 L 29.519097 36.353931 L 29.395383 36.353931 L 29.283452 36.236108 L 29.159739 36.236108 L 29.041916 36.118286 L 29.041916 35.994573 L 28.924094 35.994573 L 28.924094 35.87675 L 28.800381 35.753037 L 28.800381 35.517393 Z M 28.682559 35.393679 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.4396 27.835381 L 28.682559 27.835381 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.682559 42.957869 L 28.924094 42.957869 L 29.041916 42.834155 L 31.198064 42.834155 L 31.321777 42.957869 L 31.4396 42.957869 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.840129 27.476023 L 27.840129 28.436274 L 27.963843 28.554097 L 27.963843 36.236108 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.879878 26.875129 L 26.879878 27.116665 L 26.9977 27.116665 L 26.9977 27.717558 L 27.121413 27.835381 L 27.121413 28.436274 L 27.239236 28.67781 L 27.239236 29.396526 L 27.357058 29.638061 L 27.357058 30.4746 L 27.480771 30.716135 L 27.480771 31.676387 L 27.604485 31.912031 L 27.604485 32.75446 L 27.716416 33.119709 L 27.716416 34.197783 L 27.840129 34.439319 L 27.840129 35.393679 L 27.963843 35.635215 L 27.963843 36.236108 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.879878 35.393679 L 26.879878 26.875129 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.239236 43.794407 L 27.121413 43.794407 L 27.121413 41.997617 L 26.9977 41.873904 L 26.9977 37.67354 L 26.879878 37.437896 L 26.879878 35.393679 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.639765 44.153765 L 23.521943 44.035942 L 23.521943 43.193513 L 23.39823 43.075691 L 23.39823 41.037366 L 23.280408 40.79583 L 23.280408 37.915076 L 23.162585 37.67354 L 23.162585 34.439319 L 23.038872 34.197783 L 23.038872 31.075493 L 22.92105 30.957671 L 22.92105 28.436274 L 22.803227 28.318452 L 22.803227 26.875129 L 22.679514 26.875129 L 22.679514 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.442446 44.153765 L 25.442446 43.676585 L 25.318733 43.552871 L 25.318733 41.873904 L 25.200911 41.756082 L 25.200911 39.116863 L 25.077197 38.875327 L 25.077197 35.753037 L 24.959375 35.517393 L 24.959375 32.27728 L 24.841553 32.035745 L 24.841553 29.15499 L 24.717839 29.037168 L 24.717839 27.234487 L 24.600017 27.116665 L 24.600017 26.639485 L 24.482195 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.879878 35.393679 L 26.879878 33.355354 L 26.762056 33.119709 L 26.762056 30.356777 L 26.638342 30.115242 L 26.638342 27.835381 L 26.52052 27.717558 L 26.52052 26.639485 L 26.396807 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 22.196443 27.835381 L 22.196443 28.67781 L 22.320156 28.795632 L 22.320156 30.716135 L 22.443869 30.957671 L 22.443869 33.479067 L 22.561692 33.838425 L 22.561692 36.595466 L 22.679514 36.954824 L 22.679514 39.476221 L 22.803227 39.717756 L 22.803227 41.638259 L 22.92105 41.873904 L 22.92105 42.957869 L 23.038872 42.957869 L 23.038872 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.999123 27.717558 L 23.999123 27.959094 L 24.122837 28.076916 L 24.122837 29.396526 L 24.240659 29.514348 L 24.240659 31.912031 L 24.358481 32.035745 L 24.358481 34.798677 L 24.482195 35.034321 L 24.482195 37.797253 L 24.600017 37.915076 L 24.600017 40.436472 L 24.717839 40.678008 L 24.717839 42.356975 L 24.841553 42.474797 L 24.841553 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.801804 27.717558 L 25.919626 27.717558 L 25.919626 28.318452 L 26.037449 28.554097 L 26.037449 30.115242 L 26.161162 30.356777 L 26.161162 32.872283 L 26.278984 33.231641 L 26.278984 35.753037 L 26.396807 36.118286 L 26.396807 38.993149 L 26.52052 39.234685 L 26.52052 41.278901 L 26.638342 41.514546 L 26.638342 42.716333 L 26.762056 42.834155 L 26.762056 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.716416 27.717558 L 27.716416 27.835381 L 27.840129 27.835381 L 27.840129 28.913454 L 27.963843 29.037168 L 27.963843 30.233064 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.762056 26.639485 L 26.879878 26.639485 L 26.879878 26.875129 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24.959375 26.639485 L 24.959375 26.875129 L 25.077197 26.998843 L 25.077197 28.554097 L 25.200911 28.67781 L 25.200911 31.193315 L 25.318733 31.317029 L 25.318733 34.557141 L 25.442446 34.674963 L 25.442446 38.032898 L 25.560268 38.156611 L 25.560268 41.037366 L 25.678091 41.155188 L 25.678091 43.193513 L 25.801804 43.317227 L 25.801804 44.153765 L 25.919626 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.038872 26.639485 L 23.162585 26.639485 L 23.162585 27.717558 L 23.280408 27.835381 L 23.280408 30.115242 L 23.39823 30.233064 L 23.39823 33.231641 L 23.521943 33.479067 L 23.521943 36.713289 L 23.639765 36.954824 L 23.639765 39.959292 L 23.763479 40.194937 L 23.763479 42.474797 L 23.881301 42.59262 L 23.881301 43.912229 L 23.999123 43.912229 L 23.999123 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.837085 41.396724 L 21.837085 41.756082 L 21.960798 41.873904 L 21.960798 43.552871 L 22.07862 43.676585 L 22.07862 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.60144 34.197783 L 21.60144 35.393679 L 21.719263 35.753037 L 21.719263 38.875327 L 21.837085 39.234685 L 21.837085 40.194937 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.359905 28.076916 L 21.359905 28.913454 L 21.477727 29.278703 L 21.477727 32.035745 L 21.60144 32.395102 L 21.60144 32.75446 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.960798 27.835381 L 21.960798 29.037168 L 22.07862 29.278703 L 22.07862 31.317029 L 22.196443 31.552673 L 22.196443 33.838425 L 22.320156 34.197783 L 22.320156 36.954824 L 22.443869 37.314182 L 22.443869 39.835579 L 22.561692 40.071223 L 22.561692 41.997617 L 22.679514 42.11544 L 22.679514 42.957869 L 22.803227 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.763479 27.717558 L 23.763479 28.194739 L 23.881301 28.318452 L 23.881301 29.638061 L 23.999123 29.873706 L 23.999123 32.035745 L 24.122837 32.395102 L 24.122837 35.275857 L 24.240659 35.635215 L 24.240659 38.156611 L 24.358481 38.515969 L 24.358481 40.678008 L 24.482195 40.913652 L 24.482195 42.474797 L 24.600017 42.59262 L 24.600017 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.560268 27.717558 L 25.678091 27.717558 L 25.678091 28.554097 L 25.801804 28.795632 L 25.801804 30.4746 L 25.919626 30.716135 L 25.919626 33.119709 L 26.037449 33.355354 L 26.037449 36.353931 L 26.161162 36.713289 L 26.161162 39.116863 L 26.278984 39.476221 L 26.278984 41.396724 L 26.396807 41.638259 L 26.396807 42.834155 L 26.52052 42.957869 L 26.52052 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.480771 27.717558 L 27.480771 27.835381 L 27.604485 27.959094 L 27.604485 29.278703 L 27.716416 29.396526 L 27.716416 31.440742 L 27.840129 31.552673 L 27.840129 34.315605 L 27.963843 34.557141 L 27.963843 36.236108 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 26.751416 L 15.239038 26.639485 L 15.121216 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.638144 27.717558 L 14.638144 28.194739 L 14.761858 28.194739 L 14.761858 29.755884 L 14.87968 29.873706 L 14.87968 32.395102 L 14.997502 32.636638 L 14.997502 35.393679 L 15.121216 35.635215 L 15.121216 38.274434 L 15.239038 38.515969 L 15.239038 39.234685 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.359905 39.594043 L 21.359905 36.713289 L 21.236191 36.477644 L 21.236191 34.439319 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.719263 44.153765 L 21.719263 43.912229 L 21.60144 43.794407 L 21.60144 42.474797 L 21.477727 42.233262 L 21.477727 41.997617 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 13.677893 26.639485 L 13.677893 26.751416 L 13.801606 26.751416 L 13.801606 28.076916 L 13.919428 28.194739 L 13.919428 30.592422 L 14.037251 30.833957 L 14.037251 33.838425 L 14.160964 34.07407 L 14.160964 37.314182 L 14.278786 37.555718 L 14.278786 40.554294 L 14.396609 40.678008 L 14.396609 42.834155 L 14.520322 42.957869 L 14.520322 44.035942 L 14.638144 44.035942 L 14.638144 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.396609 27.717558 L 14.396609 28.318452 L 14.520322 28.554097 L 14.520322 30.115242 L 14.638144 30.4746 L 14.638144 32.518816 L 14.761858 32.872283 L 14.761858 35.517393 L 14.87968 35.87675 L 14.87968 38.639683 L 14.997502 38.875327 L 14.997502 41.037366 L 15.121216 41.278901 L 15.121216 42.59262 L 15.239038 42.716333 L 15.239038 42.957869 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.640991 44.153765 L 8.517277 44.153765 L 8.517277 43.44094 L 8.399455 43.193513 L 8.399455 41.278901 L 8.281633 40.913652 L 8.281633 38.156611 L 8.15792 37.67354 L 8.15792 34.916499 L 8.040097 34.439319 L 8.040097 31.317029 L 7.922275 31.075493 L 7.922275 28.554097 L 7.798562 28.318452 L 7.798562 26.998843 L 7.680739 26.875129 L 7.680739 26.751416 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.443672 44.153765 L 10.443672 43.794407 L 10.319958 43.676585 L 10.319958 42.11544 L 10.196245 41.873904 L 10.196245 39.352507 L 10.078423 39.116863 L 10.078423 35.994573 L 9.9606 35.753037 L 9.9606 32.518816 L 9.842778 32.27728 L 9.842778 29.514348 L 9.719065 29.278703 L 9.719065 27.352309 L 9.601242 27.352309 L 9.601242 26.639485 L 9.477529 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.358283 44.153765 L 12.358283 44.035942 L 12.240461 44.035942 L 12.240461 42.834155 L 12.122639 42.716333 L 12.122639 40.436472 L 11.998925 40.31865 L 11.998925 37.314182 L 11.881103 37.072646 L 11.881103 33.714712 L 11.763281 33.59689 L 11.763281 30.4746 L 11.639568 30.356777 L 11.639568 28.076916 L 11.521745 27.959094 L 11.521745 26.751416 L 11.398032 26.751416 L 11.398032 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.278786 44.153765 L 14.160964 44.153765 L 14.160964 43.44094 L 14.037251 43.317227 L 14.037251 41.514546 L 13.919428 41.278901 L 13.919428 38.515969 L 13.801606 38.274434 L 13.801606 35.034321 L 13.677893 34.916499 L 13.677893 31.676387 L 13.560071 31.440742 L 13.560071 28.913454 L 13.442248 28.67781 L 13.442248 26.998843 L 13.318535 26.998843 L 13.318535 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.079846 27.835381 L 7.680739 26.751416 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.079846 27.835381 L 7.197668 27.835381 L 7.197668 28.913454 L 7.321381 29.15499 L 7.321381 31.075493 L 7.439204 31.440742 L 7.439204 33.956248 L 7.557026 34.315605 L 7.557026 37.072646 L 7.680739 37.437896 L 7.680739 39.717756 L 7.798562 39.959292 L 7.798562 41.873904 L 7.922275 41.997617 L 7.922275 42.957869 L 8.040097 42.957869 L 8.040097 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9.000349 27.717558 L 9.000349 28.076916 L 9.118171 28.194739 L 9.118171 29.514348 L 9.235993 29.873706 L 9.235993 31.912031 L 9.359707 32.27728 L 9.359707 35.034321 L 9.477529 35.393679 L 9.477529 38.032898 L 9.601242 38.274434 L 9.601242 40.79583 L 9.719065 41.037366 L 9.719065 42.474797 L 9.842778 42.59262 L 9.842778 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.803029 27.717558 L 10.920852 27.717558 L 10.920852 28.554097 L 11.038674 28.67781 L 11.038674 30.356777 L 11.162387 30.592422 L 11.162387 32.872283 L 11.28021 33.231641 L 11.28021 36.236108 L 11.398032 36.595466 L 11.398032 38.993149 L 11.521745 39.352507 L 11.521745 41.514546 L 11.639568 41.756082 L 11.639568 42.834155 L 11.763281 42.834155 L 11.763281 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.717641 27.717558 L 12.717641 27.835381 L 12.841355 27.835381 L 12.841355 29.15499 L 12.959177 29.396526 L 12.959177 31.193315 L 13.076999 31.552673 L 13.076999 33.956248 L 13.200713 34.315605 L 13.200713 37.314182 L 13.318535 37.67354 L 13.318535 39.959292 L 13.442248 40.194937 L 13.442248 42.11544 L 13.560071 42.233262 L 13.560071 42.957869 L 13.677893 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11.763281 26.639485 L 11.881103 26.639485 L 11.881103 27.476023 L 11.998925 27.593845 L 11.998925 29.514348 L 12.122639 29.755884 L 12.122639 32.636638 L 12.240461 32.75446 L 12.240461 35.994573 L 12.358283 36.236108 L 12.358283 39.352507 L 12.481997 39.594043 L 12.481997 42.11544 L 12.599819 42.233262 L 12.599819 43.794407 L 12.717641 43.794407 L 12.717641 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9.9606 26.639485 L 9.9606 26.998843 L 10.078423 26.998843 L 10.078423 28.67781 L 10.196245 28.795632 L 10.196245 31.440742 L 10.319958 31.552673 L 10.319958 34.674963 L 10.443672 34.916499 L 10.443672 38.156611 L 10.561494 38.392256 L 10.561494 41.396724 L 10.679316 41.514546 L 10.679316 43.44094 L 10.803029 43.44094 L 10.803029 44.153765 L 10.920852 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.040097 26.639485 L 8.15792 26.751416 L 8.15792 27.835381 L 8.281633 27.959094 L 8.281633 30.233064 L 8.399455 30.4746 L 8.399455 33.59689 L 8.517277 33.838425 L 8.517277 37.072646 L 8.640991 37.314182 L 8.640991 40.31865 L 8.764704 40.554294 L 8.764704 42.716333 L 8.876635 42.834155 L 8.876635 44.035942 L 9.000349 44.035942 L 9.000349 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.237417 26.751416 L 6.237417 27.352309 L 6.36113 27.352309 L 6.36113 29.278703 L 6.478952 29.514348 L 6.478952 32.27728 L 6.602666 32.518816 L 6.602666 35.753037 L 6.720488 35.994573 L 6.720488 39.116863 L 6.83831 39.352507 L 6.83831 41.873904 L 6.962024 42.11544 L 6.962024 43.676585 L 7.079846 43.794407 L 7.079846 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.83831 27.835381 L 6.962024 27.959094 L 6.962024 29.15499 L 7.079846 29.396526 L 7.079846 31.193315 L 7.197668 31.552673 L 7.197668 34.197783 L 7.321381 34.557141 L 7.321381 37.437896 L 7.439204 37.797253 L 7.439204 39.959292 L 7.557026 40.31865 L 7.557026 42.11544 L 7.680739 42.233262 L 7.680739 43.075691 L 7.798562 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.764704 27.717558 L 8.764704 28.194739 L 8.876635 28.318452 L 8.876635 29.873706 L 9.000349 30.233064 L 9.000349 32.395102 L 9.118171 32.75446 L 9.118171 35.275857 L 9.235993 35.635215 L 9.235993 38.515969 L 9.359707 38.751614 L 9.359707 40.913652 L 9.477529 41.155188 L 9.477529 42.474797 L 9.601242 42.59262 L 9.601242 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.561494 27.717558 L 10.679316 27.717558 L 10.679316 28.554097 L 10.803029 28.795632 L 10.803029 30.716135 L 10.920852 31.075493 L 10.920852 33.355354 L 11.038674 33.714712 L 11.038674 36.353931 L 11.162387 36.713289 L 11.162387 39.476221 L 11.28021 39.717756 L 11.28021 41.638259 L 11.398032 41.756082 L 11.398032 42.957869 L 11.521745 42.957869 L 11.521745 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.481997 27.717558 L 12.481997 27.959094 L 12.599819 28.076916 L 12.599819 29.15499 L 12.717641 29.396526 L 12.717641 31.676387 L 12.841355 32.035745 L 12.841355 34.557141 L 12.959177 34.916499 L 12.959177 37.437896 L 13.076999 37.797253 L 13.076999 40.31865 L 13.200713 40.678008 L 13.200713 42.233262 L 13.318535 42.356975 L 13.318535 43.075691 L 13.442248 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.237417 26.751416 L 6.83831 27.835381 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.799985 44.153765 L 4.799985 43.676585 L 4.682163 43.552871 L 4.682163 41.997617 L 4.558449 41.756082 L 4.558449 39.116863 L 4.440627 38.875327 L 4.440627 35.635215 L 4.322805 35.275857 L 4.322805 32.035745 L 4.199091 31.794209 L 4.199091 31.552673 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.480376 27.352309 L 3.480376 27.234487 L 3.604089 27.234487 L 3.604089 27.352309 L 3.721911 27.352309 L 3.721911 27.717558 L 3.839733 27.835381 L 3.839733 28.318452 L 3.963447 28.436274 L 3.963447 29.278703 L 4.075378 29.396526 L 4.075378 30.356777 L 4.199091 30.592422 L 4.199091 31.552673 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.356662 27.717558 L 3.356662 27.959094 L 3.480376 28.076916 L 3.480376 29.396526 L 3.604089 29.514348 L 3.604089 31.912031 L 3.721911 32.27728 L 3.721911 34.674963 L 3.839733 35.034321 L 3.839733 37.67354 L 3.963447 38.032898 L 3.963447 40.554294 L 4.075378 40.79583 L 4.075378 42.233262 L 4.199091 42.474797 L 4.199091 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.159343 27.717558 L 5.283056 27.717558 L 5.283056 28.318452 L 5.400878 28.554097 L 5.400878 30.115242 L 5.518701 30.356777 L 5.518701 32.872283 L 5.642414 33.231641 L 5.642414 35.87675 L 5.760236 36.236108 L 5.760236 38.639683 L 5.878059 38.993149 L 5.878059 41.278901 L 6.001772 41.514546 L 6.001772 42.716333 L 6.119594 42.834155 L 6.119594 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.079846 27.717558 L 7.079846 27.835381 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.720488 44.153765 L 6.720488 44.035942 L 6.602666 43.912229 L 6.602666 42.59262 L 6.478952 42.474797 L 6.478952 40.071223 L 6.36113 39.959292 L 6.36113 36.837002 L 6.237417 36.595466 L 6.237417 33.355354 L 6.119594 33.119709 L 6.119594 30.115242 L 6.001772 29.997419 L 6.001772 27.835381 L 5.878059 27.717558 L 5.878059 26.639485 L 5.760236 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.680739 26.751416 L 7.680739 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.199091 31.552673 L 4.199091 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.121018 27.959094 L 3.121018 28.076916 L 3.23884 28.194739 L 3.23884 31.075493 L 3.356662 31.440742 L 3.356662 36.236108 L 3.480376 36.595466 L 3.480376 40.79583 L 3.604089 41.037366 L 3.604089 43.44094 L 3.721911 43.44094 L 3.721911 43.552871 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.121018 27.959094 L 3.121018 27.717558 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.997304 42.957869 L 2.997304 27.835381 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.322805 26.639485 L 4.322805 26.875129 L 4.440627 26.998843 L 4.440627 28.554097 L 4.558449 28.67781 L 4.558449 31.193315 L 4.682163 31.440742 L 4.682163 34.557141 L 4.799985 34.798677 L 4.799985 38.032898 L 4.923698 38.156611 L 4.923698 41.037366 L 5.041521 41.155188 L 5.041521 43.193513 L 5.159343 43.317227 L 5.159343 44.153765 L 5.283056 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.119594 26.639485 L 6.237417 26.639485 L 6.237417 26.751416 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.121018 27.959094 L 3.121018 28.076916 L 3.23884 28.194739 L 3.23884 29.755884 L 3.356662 29.997419 L 3.356662 32.153567 L 3.480376 32.518816 L 3.480376 35.158035 L 3.604089 35.517393 L 3.604089 38.156611 L 3.721911 38.515969 L 3.721911 40.678008 L 3.839733 40.913652 L 3.839733 42.474797 L 3.963447 42.59262 L 3.963447 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.923698 27.717558 L 5.041521 27.717558 L 5.041521 28.436274 L 5.159343 28.67781 L 5.159343 30.592422 L 5.283056 30.833957 L 5.283056 33.231641 L 5.400878 33.59689 L 5.400878 36.236108 L 5.518701 36.595466 L 5.518701 39.234685 L 5.642414 39.476221 L 5.642414 41.514546 L 5.760236 41.638259 L 5.760236 42.834155 L 5.878059 42.834155 L 5.878059 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.83831 27.717558 L 6.83831 27.835381 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.83831 27.835381 L 7.079846 27.835381 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip10)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1.076801 42.957869 L 1.076801 27.835381 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.717443 42.59262 L 0.717443 28.076916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 46.675161 L 15.239038 45.231839 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 35.393679 L 15.239038 45.231839 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 25.55552 L 15.239038 35.393679 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 25.55552 L 15.239038 23.994375 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 45.231839 L 15.239038 45.956445 L 15.35686 46.19209 L 15.35686 46.557339 L 15.480573 46.675161 L 15.480573 46.916697 L 15.604287 47.158233 L 15.716218 47.393877 L 15.716218 47.51759 L 15.839931 47.753235 L 15.963645 47.994771 L 16.075576 48.236306 L 16.199289 48.477842 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.439402 45.355552 L 19.79876 45.355552 L 19.79876 44.996194 L 19.680937 44.754658 L 19.680937 44.277478 L 19.557224 44.035942 L 19.557224 43.676585 L 19.439402 43.44094 L 19.321579 43.193513 L 19.321579 43.075691 L 19.197866 42.834155 L 19.080044 42.59262 L 18.962221 42.356975 L 18.838508 42.11544 L 18.720686 41.873904 L 16.199289 41.873904 L 16.075576 42.11544 L 15.963645 42.356975 L 15.839931 42.59262 L 15.716218 42.834155 L 15.716218 43.075691 L 15.604287 43.193513 L 15.480573 43.44094 L 15.480573 43.676585 L 15.35686 43.794407 L 15.35686 44.277478 L 15.239038 44.3953 L 15.239038 45.231839 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16.199289 48.477842 L 18.720686 48.477842 L 18.838508 48.236306 L 18.962221 48.118484 L 18.962221 47.994771 L 19.080044 47.753235 L 19.197866 47.635413 L 19.197866 47.51759 L 19.321579 47.276055 L 19.321579 47.158233 L 19.439402 47.034519 L 19.439402 46.916697 L 19.557224 46.798875 L 19.557224 46.557339 L 19.680937 46.315803 L 19.680937 46.074268 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 46.074268 L 19.439402 45.355552 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.60144 26.515771 L 22.196443 26.156413 L 21.359905 26.0327 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.557224 24.23591 L 19.557224 23.994375 L 19.439402 23.752839 L 19.197866 23.275659 L 19.197866 23.034123 L 19.080044 22.798479 L 18.962221 22.674765 L 18.838508 22.556943 L 18.838508 22.439121 L 18.720686 22.315407 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 23.752839 L 19.557224 24.23591 M 22.196443 27.835381 L 21.118369 28.076916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.557224 24.23591 L 19.557224 24.713091 L 19.680937 25.196162 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 25.313984 L 19.680937 25.196162 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.680937 25.55552 L 19.680937 25.196162 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 18.720686 22.315407 L 16.199289 22.315407 L 16.075576 22.556943 L 15.963645 22.674765 L 15.716218 23.157837 L 15.716218 23.393481 L 15.604287 23.635017 L 15.480573 23.752839 L 15.480573 23.994375 L 15.35686 24.23591 L 15.35686 24.595268 L 15.239038 24.836804 L 15.239038 26.274236 L 15.35686 26.515771 L 15.35686 26.875129 L 15.480573 27.116665 L 15.480573 27.234487 L 15.604287 27.476023 L 15.716218 27.717558 L 15.716218 27.959094 L 15.839931 28.076916 L 15.963645 28.318452 L 16.075576 28.554097 L 16.199289 28.795632 L 18.720686 28.795632 L 18.838508 28.554097 L 18.962221 28.318452 L 19.080044 28.076916 L 19.197866 27.959094 L 19.321579 27.717558 L 19.321579 27.476023 L 19.439402 27.234487 L 19.557224 27.116665 L 19.557224 26.639485 L 19.680937 26.515771 L 19.680937 25.914878 L 19.79876 25.673342 L 19.79876 25.55552 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 31.912031 L 19.680937 31.676387 L 19.680937 30.592422 L 19.557224 30.356777 L 19.557224 29.873706 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 35.393679 L 19.79876 35.034321 L 19.680937 34.557141 L 19.680937 33.479067 L 19.557224 33.119709 L 19.557224 32.27728 L 19.439402 31.912031 L 19.321579 31.440742 L 19.321579 31.075493 L 19.197866 30.592422 L 19.080044 30.233064 L 18.962221 29.755884 L 18.838508 29.278703 L 18.720686 28.795632 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 29.638061 L 19.557224 29.873706 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.359905 32.518816 L 22.196443 33.838425 L 21.118369 34.439319 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 33.714712 L 22.196443 33.838425 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 20.872085 L 21.118369 49.797451 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 20.872085 L 19.79876 49.797451 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 25.673342 L 22.196443 27.835381 M 21.118369 23.393481 L 22.196443 26.156413 M 19.79876 46.916697 L 19.680937 46.798875 M 21.118369 43.794407 L 21.359905 43.552871 M 21.60144 44.153765 L 21.719263 44.035942 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 47.393877 L 22.196443 44.513123 L 21.118369 44.035942 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 38.875327 L 19.557224 38.751614 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.680937 40.436472 L 19.680937 39.594043 L 19.557224 39.234685 L 19.557224 38.751614 L 19.680937 38.751614 L 19.79876 38.639683 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 18.720686 41.873904 L 18.838508 41.396724 L 18.962221 41.037366 L 19.197866 40.071223 L 19.321579 39.717756 L 19.321579 39.234685 L 19.557224 38.515969 L 19.557224 37.67354 L 19.680937 37.314182 L 19.680937 36.118286 L 19.79876 35.753037 L 19.79876 35.393679 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16.199289 28.795632 L 16.075576 29.278703 L 15.963645 29.755884 L 15.839931 30.233064 L 15.716218 30.592422 L 15.716218 31.075493 L 15.604287 31.440742 L 15.480573 31.912031 L 15.480573 32.27728 L 15.35686 32.636638 L 15.35686 33.479067 L 15.239038 33.838425 L 15.239038 36.837002 L 15.35686 37.314182 L 15.35686 38.032898 L 15.480573 38.515969 L 15.480573 38.875327 L 15.604287 39.234685 L 15.716218 39.717756 L 15.716218 40.071223 L 15.963645 41.037366 L 16.075576 41.396724 L 16.199289 41.873904 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 39.234685 L 22.196443 40.79583 L 21.118369 42.716333 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip11)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 45.355552 L 19.922473 45.355552 M 32.040493 42.957869 L 31.4396 42.957869 M 28.682559 42.957869 L 28.075774 42.957869 M 32.040493 27.835381 L 31.4396 27.835381 M 28.682559 27.835381 L 28.075774 27.835381 M 28.075774 42.957869 L 27.239236 43.794407 M 28.075774 27.835381 L 27.840129 27.476023 M 23.639765 44.153765 L 23.038872 43.075691 M 25.442446 44.153765 L 24.841553 43.075691 M 22.07862 27.593845 L 22.679514 26.639485 M 23.999123 27.717558 L 24.482195 26.639485 M 25.801804 27.717558 L 26.396807 26.639485 M 27.716416 27.717558 L 27.840129 27.476023 M 27.239236 43.794407 L 26.762056 43.075691 M 26.879878 26.639485 L 27.480771 27.717558 M 24.959375 26.639485 L 25.560268 27.717558 M 23.038872 26.639485 L 23.763479 27.717558 M 22.803227 43.075691 L 22.07862 44.153765 M 24.717839 43.075691 L 23.999123 44.153765 M 26.52052 43.075691 L 25.919626 44.153765 M 14.520322 27.717558 L 15.121216 26.639485 M 21.719263 44.153765 L 21.118369 43.075691 M 13.677893 26.639485 L 14.396609 27.717558 M 15.239038 43.193513 L 14.638144 44.153765 M 8.517277 44.153765 L 8.040097 43.075691 M 10.443672 44.153765 L 9.842778 43.075691 M 12.358283 44.153765 L 11.763281 43.075691 M 14.160964 44.153765 L 13.677893 43.075691 M 9.000349 27.717558 L 9.477529 26.639485 M 10.803029 27.717558 L 11.398032 26.639485 M 12.717641 27.717558 L 13.318535 26.639485 M 11.763281 26.639485 L 12.481997 27.717558 M 9.9606 26.639485 L 10.561494 27.717558 M 8.040097 26.639485 L 8.764704 27.717558 M 7.798562 43.075691 L 7.079846 44.153765 M 9.601242 43.075691 L 9.000349 44.153765 M 11.521745 43.075691 L 10.920852 44.153765 M 13.442248 43.075691 L 12.717641 44.153765 M 4.799985 44.153765 L 4.199091 43.075691 M 3.356662 27.717558 L 3.480376 27.352309 M 5.159343 27.717558 L 5.760236 26.639485 M 7.079846 27.717558 L 7.680739 26.639485 M 6.720488 44.153765 L 6.119594 43.075691 M 2.997304 27.835381 L 3.121018 27.717558 M 3.480376 27.352309 L 4.199091 26.639485 M 2.997304 42.957869 L 3.721911 43.552871 M 4.322805 26.639485 L 4.923698 27.717558 M 6.237417 26.639485 L 6.83831 27.717558 M 4.075378 43.075691 L 3.721911 43.552871 M 5.878059 43.075691 L 5.283056 44.153765 M 3.121018 27.717558 L 3.356662 27.717558 M 3.963447 43.075691 L 4.199091 43.075691 M 4.923698 27.717558 L 5.159343 27.717558 M 5.878059 43.075691 L 6.119594 43.075691 M 6.83831 27.717558 L 7.079846 27.717558 M 7.798562 43.075691 L 8.040097 43.075691 M 8.764704 27.717558 L 9.000349 27.717558 M 9.601242 43.075691 L 9.842778 43.075691 M 10.561494 27.717558 L 10.803029 27.717558 M 11.521745 43.075691 L 11.763281 43.075691 M 12.481997 27.717558 L 12.717641 27.717558 M 13.442248 43.075691 L 13.677893 43.075691 M 14.396609 27.717558 L 14.638144 27.717558 M 22.803227 43.075691 L 23.038872 43.075691 M 23.763479 27.717558 L 23.999123 27.717558 M 24.600017 43.075691 L 24.841553 43.075691 M 25.560268 27.717558 L 25.801804 27.717558 M 26.52052 43.075691 L 26.762056 43.075691 M 27.480771 27.717558 L 27.716416 27.717558 M 2.997304 42.957869 L 1.076801 42.957869 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip12)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.997304 27.835381 L 1.076801 27.835381 L 0.717443 28.076916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip13)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.717443 42.59262 L 1.076801 42.957869 M 15.239038 46.675161 L 16.199289 48.477842 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 46.675161 L 19.79876 46.557339 L 19.680937 46.315803 L 19.680937 45.838623 L 19.557224 45.71491 L 19.557224 45.591196 L 19.439402 45.355552 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.680937 23.876553 L 18.720686 22.315407 M 19.79876 20.872085 L 21.118369 20.872085 M 19.79876 49.797451 L 21.118369 49.797451 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 24.713091 L 21.118369 24.954626 L 21.236191 25.196162 L 21.236191 25.673342 L 21.359905 25.914878 L 21.477727 26.156413 L 21.477727 26.392058 L 21.60144 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 31.676387 L 21.118369 31.794209 L 21.236191 31.912031 L 21.236191 32.27728 L 21.359905 32.395102 L 21.359905 32.518816 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 23.994375 L 16.199289 22.315407 M 21.60144 44.153765 L 21.60144 44.277478 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 40.79583 L 19.79876 40.554294 L 19.680937 40.436472 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 46.675161 L 18.720686 48.477842 M 25.919626 44.153765 L 25.442446 44.153765 M 23.999123 44.153765 L 23.639765 44.153765 M 22.07862 44.153765 L 21.719263 44.153765 M 14.638144 44.153765 L 14.278786 44.153765 M 12.717641 44.153765 L 12.358283 44.153765 M 10.920852 44.153765 L 10.443672 44.153765 M 9.000349 44.153765 L 8.640991 44.153765 M 7.079846 44.153765 L 6.720488 44.153765 M 5.283056 44.153765 L 4.799985 44.153765 M 26.762056 26.639485 L 26.396807 26.639485 M 24.959375 26.639485 L 24.600017 26.639485 M 23.038872 26.639485 L 22.679514 26.639485 M 15.239038 26.639485 L 15.121216 26.639485 M 13.677893 26.639485 L 13.318535 26.639485 M 11.763281 26.639485 L 11.398032 26.639485 M 9.9606 26.639485 L 9.477529 26.639485 M 8.040097 26.639485 L 7.680739 26.639485 M 6.119594 26.639485 L 5.760236 26.639485 M 4.322805 26.639485 L 4.199091 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.482393 299.751501 L 32.040493 299.751501 L 32.040493 326.756364 L 36.482393 326.756364 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.075774 305.636723 L 28.075774 320.75332 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.682559 313.195021 L 28.800381 313.071308 L 28.800381 312.835663 L 28.924094 312.717841 L 28.924094 312.594128 L 29.041916 312.594128 L 29.041916 312.476306 L 29.159739 312.352592 L 29.283452 312.352592 L 29.395383 312.23477 L 29.519097 312.23477 L 29.64281 312.116948 L 30.603061 312.116948 L 30.720884 312.23477 L 30.838706 312.23477 L 30.962419 312.352592 L 31.080242 312.476306 L 31.198064 312.594128 L 31.321777 312.594128 L 31.321777 312.717841 L 31.4396 312.835663 L 31.4396 313.554379 L 31.321777 313.678093 L 31.321777 313.795915 L 31.198064 313.913737 L 31.080242 314.037451 L 30.962419 314.037451 L 30.962419 314.155273 L 30.838706 314.155273 L 30.720884 314.278986 L 30.479348 314.278986 L 30.361526 314.396809 L 29.878455 314.396809 L 29.760632 314.278986 L 29.519097 314.278986 L 29.395383 314.155273 L 29.283452 314.155273 L 29.159739 314.037451 L 29.041916 314.037451 L 29.041916 313.913737 L 28.924094 313.795915 L 28.924094 313.678093 L 28.800381 313.554379 L 28.800381 313.318735 Z M 28.682559 313.195021 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.4396 305.636723 L 31.321777 305.636723 L 31.198064 305.754545 L 29.041916 305.754545 L 28.924094 305.636723 L 28.682559 305.636723 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.682559 320.75332 L 31.4396 320.75332 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.840129 305.395187 L 27.840129 306.231725 L 27.963843 306.355439 L 27.963843 314.155273 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.879878 304.794294 L 26.879878 304.912116 L 26.9977 305.035829 L 26.9977 305.518901 L 27.121413 305.636723 L 27.121413 306.355439 L 27.239236 306.479152 L 27.239236 307.31569 L 27.357058 307.557226 L 27.357058 308.393764 L 27.480771 308.517477 L 27.480771 309.595551 L 27.604485 309.837087 L 27.604485 310.673625 L 27.716416 310.915161 L 27.716416 311.993234 L 27.840129 312.23477 L 27.840129 313.318735 L 27.963843 313.554379 L 27.963843 314.155273 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.879878 313.195021 L 26.879878 304.794294 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.239236 321.713571 L 27.121413 321.713571 L 27.121413 319.798959 L 26.9977 319.675246 L 26.9977 315.474882 L 26.879878 315.35706 L 26.879878 313.195021 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.639765 321.955107 L 23.521943 321.955107 L 23.521943 320.994856 L 23.39823 320.877033 L 23.39823 318.838708 L 23.280408 318.714995 L 23.280408 315.716418 L 23.162585 315.592705 L 23.162585 312.23477 L 23.038872 312.116948 L 23.038872 308.994658 L 22.92105 308.753122 L 22.92105 306.355439 L 22.803227 306.119794 L 22.803227 304.794294 L 22.679514 304.676471 L 22.679514 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.442446 321.955107 L 25.442446 321.595749 L 25.318733 321.477927 L 25.318733 319.798959 L 25.200911 319.675246 L 25.200911 317.036027 L 25.077197 316.794492 L 25.077197 313.554379 L 24.959375 313.436557 L 24.959375 310.196445 L 24.841553 309.954909 L 24.841553 307.074155 L 24.717839 306.83851 L 24.717839 305.153652 L 24.600017 305.035829 L 24.600017 304.440827 L 24.482195 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.879878 313.195021 L 26.879878 311.274518 L 26.762056 311.032983 L 26.762056 308.158119 L 26.638342 308.034406 L 26.638342 305.754545 L 26.52052 305.636723 L 26.52052 304.552758 L 26.396807 304.552758 L 26.396807 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 22.196443 305.636723 L 22.196443 306.591083 L 22.320156 306.714797 L 22.320156 308.6353 L 22.443869 308.876835 L 22.443869 311.392341 L 22.561692 311.751699 L 22.561692 314.396809 L 22.679514 314.756166 L 22.679514 317.277563 L 22.803227 317.636921 L 22.803227 319.557424 L 22.92105 319.675246 L 22.92105 320.75332 L 23.038872 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.999123 305.518901 L 23.999123 305.872367 L 24.122837 305.872367 L 24.122837 307.197868 L 24.240659 307.439404 L 24.240659 309.713373 L 24.358481 309.954909 L 24.358481 312.717841 L 24.482195 312.959377 L 24.482195 315.592705 L 24.600017 315.83424 L 24.600017 318.355637 L 24.717839 318.47935 L 24.717839 320.27614 L 24.841553 320.27614 L 24.841553 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.801804 305.518901 L 25.919626 305.518901 L 25.919626 306.231725 L 26.037449 306.355439 L 26.037449 307.916584 L 26.161162 308.158119 L 26.161162 310.797338 L 26.278984 311.156696 L 26.278984 313.678093 L 26.396807 314.037451 L 26.396807 316.794492 L 26.52052 317.15385 L 26.52052 319.074353 L 26.638342 319.315888 L 26.638342 320.517675 L 26.762056 320.635498 L 26.762056 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.716416 305.518901 L 27.716416 305.636723 L 27.840129 305.754545 L 27.840129 306.714797 L 27.963843 306.83851 L 27.963843 308.034406 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.762056 304.440827 L 26.879878 304.440827 L 26.879878 304.794294 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24.959375 304.440827 L 24.959375 304.794294 L 25.077197 304.794294 L 25.077197 306.355439 L 25.200911 306.479152 L 25.200911 308.994658 L 25.318733 309.236193 L 25.318733 312.352592 L 25.442446 312.594128 L 25.442446 315.83424 L 25.560268 316.075776 L 25.560268 318.95653 L 25.678091 319.074353 L 25.678091 321.118569 L 25.801804 321.118569 L 25.801804 321.955107 L 25.919626 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.038872 304.440827 L 23.038872 304.552758 L 23.162585 304.552758 L 23.162585 305.636723 L 23.280408 305.754545 L 23.280408 307.916584 L 23.39823 308.158119 L 23.39823 311.032983 L 23.521943 311.274518 L 23.521943 314.514631 L 23.639765 314.756166 L 23.639765 317.872565 L 23.763479 317.996279 L 23.763479 320.393962 L 23.881301 320.517675 L 23.881301 321.837285 L 23.999123 321.837285 L 23.999123 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.837085 319.315888 L 21.837085 319.675246 L 21.960798 319.798959 L 21.960798 321.477927 L 22.07862 321.595749 L 22.07862 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.60144 312.116948 L 21.60144 313.318735 L 21.719263 313.678093 L 21.719263 316.676669 L 21.837085 317.036027 L 21.837085 318.114101 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.359905 305.872367 L 21.359905 306.83851 L 21.477727 307.074155 L 21.477727 309.954909 L 21.60144 310.314267 L 21.60144 310.673625 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.960798 305.754545 L 21.960798 306.83851 L 22.07862 307.074155 L 22.07862 309.118371 L 22.196443 309.477729 L 22.196443 311.751699 L 22.320156 312.116948 L 22.320156 314.873989 L 22.443869 315.233347 L 22.443869 317.636921 L 22.561692 317.996279 L 22.561692 319.798959 L 22.679514 320.034604 L 22.679514 320.877033 L 22.803227 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.763479 305.518901 L 23.763479 305.996081 L 23.881301 306.119794 L 23.881301 307.557226 L 23.999123 307.798762 L 23.999123 309.837087 L 24.122837 310.196445 L 24.122837 313.071308 L 24.240659 313.436557 L 24.240659 315.957954 L 24.358481 316.317311 L 24.358481 318.47935 L 24.482195 318.714995 L 24.482195 320.393962 L 24.600017 320.517675 L 24.600017 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.560268 305.518901 L 25.678091 305.636723 L 25.678091 306.479152 L 25.801804 306.591083 L 25.801804 308.275942 L 25.919626 308.6353 L 25.919626 310.915161 L 26.037449 311.274518 L 26.037449 314.155273 L 26.161162 314.638344 L 26.161162 317.036027 L 26.278984 317.277563 L 26.278984 319.192175 L 26.396807 319.439602 L 26.396807 320.75332 L 26.52052 320.75332 L 26.52052 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.480771 305.518901 L 27.480771 305.754545 L 27.604485 305.754545 L 27.604485 307.074155 L 27.716416 307.197868 L 27.716416 309.236193 L 27.840129 309.477729 L 27.840129 312.23477 L 27.963843 312.352592 L 27.963843 314.155273 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 304.552758 L 15.239038 304.440827 L 15.121216 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.638144 305.518901 L 14.638144 305.996081 L 14.761858 306.119794 L 14.761858 307.557226 L 14.87968 307.798762 L 14.87968 310.314267 L 14.997502 310.555803 L 14.997502 313.195021 L 15.121216 313.436557 L 15.121216 316.193598 L 15.239038 316.435134 L 15.239038 317.036027 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.359905 317.395385 L 21.359905 314.638344 L 21.236191 314.278986 L 21.236191 312.23477 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.719263 321.955107 L 21.719263 321.837285 L 21.60144 321.713571 L 21.60144 320.393962 L 21.477727 320.158317 L 21.477727 319.916782 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 13.677893 304.440827 L 13.677893 304.676471 L 13.801606 304.676471 L 13.801606 305.996081 L 13.919428 306.119794 L 13.919428 308.517477 L 14.037251 308.6353 L 14.037251 311.751699 L 14.160964 311.993234 L 14.160964 315.233347 L 14.278786 315.474882 L 14.278786 318.355637 L 14.396609 318.591281 L 14.396609 320.75332 L 14.520322 320.877033 L 14.520322 321.955107 L 14.638144 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.396609 305.518901 L 14.396609 306.231725 L 14.520322 306.355439 L 14.520322 308.034406 L 14.638144 308.275942 L 14.638144 310.43798 L 14.761858 310.673625 L 14.761858 313.436557 L 14.87968 313.795915 L 14.87968 316.435134 L 14.997502 316.794492 L 14.997502 318.95653 L 15.121216 319.192175 L 15.121216 320.517675 L 15.239038 320.635498 L 15.239038 320.75332 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.640991 321.955107 L 8.517277 321.955107 L 8.517277 321.236391 L 8.399455 321.118569 L 8.399455 319.074353 L 8.281633 318.838708 L 8.281633 315.957954 L 8.15792 315.592705 L 8.15792 312.717841 L 8.040097 312.352592 L 8.040097 309.236193 L 7.922275 308.876835 L 7.922275 306.355439 L 7.798562 306.119794 L 7.798562 304.912116 L 7.680739 304.794294 L 7.680739 304.552758 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.443672 321.955107 L 10.443672 321.595749 L 10.319958 321.595749 L 10.319958 319.916782 L 10.196245 319.798959 L 10.196245 317.15385 L 10.078423 317.036027 L 10.078423 313.795915 L 9.9606 313.554379 L 9.9606 310.314267 L 9.842778 310.196445 L 9.842778 307.31569 L 9.719065 307.197868 L 9.719065 305.277365 L 9.601242 305.153652 L 9.601242 304.440827 L 9.477529 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.358283 321.955107 L 12.240461 321.837285 L 12.240461 320.75332 L 12.122639 320.635498 L 12.122639 318.355637 L 11.998925 318.114101 L 11.998925 315.115524 L 11.881103 314.873989 L 11.881103 311.639767 L 11.763281 311.392341 L 11.763281 308.393764 L 11.639568 308.158119 L 11.639568 305.872367 L 11.521745 305.754545 L 11.521745 304.552758 L 11.398032 304.552758 L 11.398032 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.278786 321.955107 L 14.160964 321.955107 L 14.160964 321.354213 L 14.037251 321.236391 L 14.037251 319.315888 L 13.919428 319.192175 L 13.919428 316.435134 L 13.801606 316.193598 L 13.801606 312.959377 L 13.677893 312.717841 L 13.677893 309.595551 L 13.560071 309.354015 L 13.560071 306.714797 L 13.442248 306.591083 L 13.442248 304.912116 L 13.318535 304.794294 L 13.318535 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.079846 305.636723 L 7.680739 304.552758 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.079846 305.636723 L 7.197668 305.754545 L 7.197668 306.83851 L 7.321381 306.956332 L 7.321381 308.994658 L 7.439204 309.236193 L 7.439204 311.875412 L 7.557026 312.23477 L 7.557026 314.997702 L 7.680739 315.35706 L 7.680739 317.513208 L 7.798562 317.872565 L 7.798562 319.675246 L 7.922275 319.916782 L 7.922275 320.877033 L 8.040097 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9.000349 305.518901 L 9.000349 305.996081 L 9.118171 306.119794 L 9.118171 307.439404 L 9.235993 307.675048 L 9.235993 309.713373 L 9.359707 310.072731 L 9.359707 312.959377 L 9.477529 313.318735 L 9.477529 315.83424 L 9.601242 316.193598 L 9.601242 318.591281 L 9.719065 318.838708 L 9.719065 320.27614 L 9.842778 320.393962 L 9.842778 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.803029 305.518901 L 10.920852 305.518901 L 10.920852 306.355439 L 11.038674 306.591083 L 11.038674 308.275942 L 11.162387 308.517477 L 11.162387 310.797338 L 11.28021 311.156696 L 11.28021 314.037451 L 11.398032 314.396809 L 11.398032 316.912314 L 11.521745 317.15385 L 11.521745 319.315888 L 11.639568 319.557424 L 11.639568 320.635498 L 11.763281 320.75332 L 11.763281 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.717641 305.518901 L 12.717641 305.636723 L 12.841355 305.754545 L 12.841355 306.956332 L 12.959177 307.197868 L 12.959177 309.118371 L 13.076999 309.477729 L 13.076999 311.875412 L 13.200713 312.23477 L 13.200713 315.115524 L 13.318535 315.474882 L 13.318535 317.754743 L 13.442248 318.114101 L 13.442248 319.916782 L 13.560071 320.158317 L 13.560071 320.877033 L 13.677893 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11.763281 304.440827 L 11.881103 304.440827 L 11.881103 305.277365 L 11.998925 305.395187 L 11.998925 307.439404 L 12.122639 307.557226 L 12.122639 310.43798 L 12.240461 310.673625 L 12.240461 313.913737 L 12.358283 314.155273 L 12.358283 317.277563 L 12.481997 317.513208 L 12.481997 320.034604 L 12.599819 320.158317 L 12.599819 321.595749 L 12.717641 321.713571 L 12.717641 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9.9606 304.440827 L 9.9606 304.794294 L 10.078423 304.912116 L 10.078423 306.479152 L 10.196245 306.714797 L 10.196245 309.236193 L 10.319958 309.477729 L 10.319958 312.594128 L 10.443672 312.835663 L 10.443672 316.075776 L 10.561494 316.317311 L 10.561494 319.192175 L 10.679316 319.439602 L 10.679316 321.236391 L 10.803029 321.354213 L 10.803029 321.955107 L 10.920852 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.040097 304.440827 L 8.040097 304.552758 L 8.15792 304.552758 L 8.15792 305.754545 L 8.281633 305.872367 L 8.281633 308.158119 L 8.399455 308.275942 L 8.399455 311.516054 L 8.517277 311.751699 L 8.517277 314.997702 L 8.640991 315.233347 L 8.640991 318.231923 L 8.764704 318.355637 L 8.764704 320.635498 L 8.876635 320.75332 L 8.876635 321.837285 L 9.000349 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.237417 304.552758 L 6.237417 305.153652 L 6.36113 305.277365 L 6.36113 307.197868 L 6.478952 307.31569 L 6.478952 310.196445 L 6.602666 310.314267 L 6.602666 313.554379 L 6.720488 313.795915 L 6.720488 317.036027 L 6.83831 317.15385 L 6.83831 319.798959 L 6.962024 319.916782 L 6.962024 321.595749 L 7.079846 321.595749 L 7.079846 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.83831 305.636723 L 6.83831 305.754545 L 6.962024 305.754545 L 6.962024 307.074155 L 7.079846 307.197868 L 7.079846 309.118371 L 7.197668 309.477729 L 7.197668 312.116948 L 7.321381 312.476306 L 7.321381 315.233347 L 7.439204 315.592705 L 7.439204 317.872565 L 7.557026 318.114101 L 7.557026 319.916782 L 7.680739 320.158317 L 7.680739 320.877033 L 7.798562 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.764704 305.518901 L 8.764704 305.996081 L 8.876635 306.119794 L 8.876635 307.798762 L 9.000349 308.034406 L 9.000349 310.196445 L 9.118171 310.555803 L 9.118171 313.071308 L 9.235993 313.436557 L 9.235993 316.317311 L 9.359707 316.676669 L 9.359707 318.714995 L 9.477529 318.95653 L 9.477529 320.393962 L 9.601242 320.517675 L 9.601242 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.561494 305.518901 L 10.561494 305.636723 L 10.679316 305.636723 L 10.679316 306.479152 L 10.803029 306.591083 L 10.803029 308.6353 L 10.920852 308.876835 L 10.920852 311.274518 L 11.038674 311.639767 L 11.038674 314.155273 L 11.162387 314.638344 L 11.162387 317.277563 L 11.28021 317.636921 L 11.28021 319.439602 L 11.398032 319.675246 L 11.398032 320.75332 L 11.521745 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.481997 305.518901 L 12.481997 305.754545 L 12.599819 305.872367 L 12.599819 307.074155 L 12.717641 307.31569 L 12.717641 309.595551 L 12.841355 309.837087 L 12.841355 312.352592 L 12.959177 312.717841 L 12.959177 315.35706 L 13.076999 315.716418 L 13.076999 318.231923 L 13.200713 318.47935 L 13.200713 320.034604 L 13.318535 320.27614 L 13.318535 320.877033 L 13.442248 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.237417 304.552758 L 6.83831 305.636723 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.799985 321.955107 L 4.799985 321.477927 L 4.682163 321.354213 L 4.682163 319.798959 L 4.558449 319.557424 L 4.558449 316.912314 L 4.440627 316.676669 L 4.440627 313.436557 L 4.322805 313.195021 L 4.322805 309.954909 L 4.199091 309.713373 L 4.199091 309.477729 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.480376 305.277365 L 3.480376 305.153652 L 3.604089 305.153652 L 3.721911 305.277365 L 3.721911 305.518901 L 3.839733 305.636723 L 3.839733 306.119794 L 3.963447 306.231725 L 3.963447 307.074155 L 4.075378 307.31569 L 4.075378 308.275942 L 4.199091 308.517477 L 4.199091 309.477729 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.356662 305.518901 L 3.356662 305.872367 L 3.480376 305.996081 L 3.480376 307.197868 L 3.604089 307.439404 L 3.604089 309.713373 L 3.721911 310.072731 L 3.721911 312.594128 L 3.839733 312.959377 L 3.839733 315.474882 L 3.963447 315.83424 L 3.963447 318.355637 L 4.075378 318.591281 L 4.075378 320.158317 L 4.199091 320.27614 L 4.199091 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.159343 305.518901 L 5.283056 305.518901 L 5.283056 306.231725 L 5.400878 306.355439 L 5.400878 307.916584 L 5.518701 308.275942 L 5.518701 310.797338 L 5.642414 311.156696 L 5.642414 313.678093 L 5.760236 314.037451 L 5.760236 316.552956 L 5.878059 316.912314 L 5.878059 319.192175 L 6.001772 319.315888 L 6.001772 320.517675 L 6.119594 320.635498 L 6.119594 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.079846 305.518901 L 7.079846 305.636723 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.720488 321.955107 L 6.720488 321.837285 L 6.602666 321.837285 L 6.602666 320.517675 L 6.478952 320.393962 L 6.478952 317.996279 L 6.36113 317.754743 L 6.36113 314.756166 L 6.237417 314.514631 L 6.237417 311.156696 L 6.119594 311.032983 L 6.119594 308.034406 L 6.001772 307.916584 L 6.001772 305.636723 L 5.878059 305.636723 L 5.878059 304.552758 L 5.760236 304.552758 L 5.760236 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.680739 304.552758 L 7.680739 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.199091 309.477729 L 4.199091 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.121018 305.872367 L 3.121018 305.996081 L 3.23884 306.119794 L 3.23884 308.994658 L 3.356662 309.236193 L 3.356662 314.037451 L 3.480376 314.396809 L 3.480376 318.714995 L 3.604089 318.95653 L 3.604089 321.236391 L 3.721911 321.354213 L 3.721911 321.477927 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.121018 305.872367 L 3.121018 305.518901 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.997304 320.75332 L 2.997304 305.636723 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.322805 304.440827 L 4.322805 304.794294 L 4.440627 304.794294 L 4.440627 306.355439 L 4.558449 306.479152 L 4.558449 308.994658 L 4.682163 309.236193 L 4.682163 312.352592 L 4.799985 312.594128 L 4.799985 315.83424 L 4.923698 316.075776 L 4.923698 318.95653 L 5.041521 319.074353 L 5.041521 321.118569 L 5.159343 321.118569 L 5.159343 321.955107 L 5.283056 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.119594 304.440827 L 6.237417 304.440827 L 6.237417 304.552758 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.121018 305.872367 L 3.121018 305.996081 L 3.23884 306.119794 L 3.23884 307.557226 L 3.356662 307.798762 L 3.356662 310.072731 L 3.480376 310.314267 L 3.480376 312.959377 L 3.604089 313.318735 L 3.604089 316.075776 L 3.721911 316.317311 L 3.721911 318.591281 L 3.839733 318.838708 L 3.839733 320.27614 L 3.963447 320.393962 L 3.963447 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.923698 305.518901 L 5.041521 305.518901 L 5.041521 306.355439 L 5.159343 306.479152 L 5.159343 308.393764 L 5.283056 308.6353 L 5.283056 311.156696 L 5.400878 311.392341 L 5.400878 314.155273 L 5.518701 314.396809 L 5.518701 317.15385 L 5.642414 317.395385 L 5.642414 319.439602 L 5.760236 319.557424 L 5.760236 320.635498 L 5.878059 320.75332 L 5.878059 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.83831 305.518901 L 6.83831 305.636723 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.83831 305.636723 L 7.079846 305.636723 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip14)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1.076801 320.75332 L 1.076801 305.636723 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.717443 320.517675 L 0.717443 305.996081 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 324.594326 L 15.239038 323.033181 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 313.195021 L 15.239038 323.033181 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 303.356862 L 15.239038 313.195021 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 303.356862 L 15.239038 301.913539 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 323.033181 L 15.239038 323.751897 L 15.35686 323.993432 L 15.35686 324.35279 L 15.480573 324.594326 L 15.480573 324.835861 L 15.604287 324.959575 L 15.716218 325.195219 L 15.716218 325.436755 L 15.963645 325.913935 L 16.075576 326.037649 L 16.199289 326.279184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.439402 323.274716 L 19.79876 323.274716 L 19.79876 322.915358 L 19.680937 322.673823 L 19.680937 322.072929 L 19.557224 321.955107 L 19.557224 321.477927 L 19.439402 321.354213 L 19.321579 321.118569 L 19.321579 320.877033 L 19.197866 320.635498 L 19.080044 320.517675 L 18.962221 320.27614 L 18.838508 320.034604 L 18.720686 319.798959 L 16.199289 319.798959 L 16.075576 320.034604 L 15.963645 320.27614 L 15.839931 320.517675 L 15.716218 320.635498 L 15.716218 320.877033 L 15.604287 321.118569 L 15.480573 321.354213 L 15.480573 321.477927 L 15.35686 321.713571 L 15.35686 322.072929 L 15.239038 322.314465 L 15.239038 323.033181 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16.199289 326.279184 L 18.720686 326.279184 L 18.962221 326.037649 L 18.962221 325.796113 L 19.080044 325.678291 L 19.197866 325.554577 L 19.197866 325.318933 L 19.321579 325.195219 L 19.321579 325.071506 L 19.439402 324.959575 L 19.439402 324.712148 L 19.557224 324.594326 L 19.557224 324.476504 L 19.680937 324.234968 L 19.680937 323.87561 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 323.87561 L 19.439402 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.60144 304.317114 L 22.196443 304.075578 L 21.359905 303.834042 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.557224 302.037253 L 19.557224 301.913539 L 19.439402 301.677895 L 19.321579 301.436359 L 19.197866 301.194823 L 19.197866 300.959179 L 18.962221 300.476108 L 18.838508 300.352394 L 18.838508 300.234572 L 18.720686 300.11675 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 301.677895 L 19.557224 302.155075 M 22.196443 305.636723 L 21.118369 305.996081 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.557224 302.037253 L 19.557224 302.514433 L 19.680937 302.997504 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 303.115326 L 19.680937 303.115326 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.680937 303.356862 L 19.680937 302.997504 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 18.720686 300.11675 L 16.199289 300.11675 L 16.075576 300.352394 L 15.963645 300.59393 L 15.839931 300.835466 L 15.716218 301.07111 L 15.716218 301.194823 L 15.604287 301.436359 L 15.480573 301.677895 L 15.480573 301.913539 L 15.35686 302.037253 L 15.35686 302.396611 L 15.239038 302.638146 L 15.239038 304.1934 L 15.35686 304.317114 L 15.35686 304.794294 L 15.480573 304.912116 L 15.480573 305.153652 L 15.604287 305.395187 L 15.716218 305.518901 L 15.716218 305.754545 L 15.839931 305.996081 L 15.963645 306.231725 L 16.075576 306.479152 L 16.199289 306.714797 L 18.720686 306.714797 L 19.080044 305.996081 L 19.197866 305.754545 L 19.321579 305.518901 L 19.321579 305.395187 L 19.557224 304.912116 L 19.557224 304.552758 L 19.680937 304.317114 L 19.680937 303.834042 L 19.79876 303.592507 L 19.79876 303.356862 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 309.837087 L 19.680937 309.595551 L 19.680937 308.517477 L 19.557224 308.275942 L 19.557224 307.798762 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 313.195021 L 19.79876 312.835663 L 19.680937 312.476306 L 19.680937 311.274518 L 19.557224 310.915161 L 19.557224 310.072731 L 19.321579 309.354015 L 19.321579 308.876835 L 19.197866 308.517477 L 19.080044 308.034406 L 18.962221 307.557226 L 18.838508 307.197868 L 18.720686 306.714797 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 307.557226 L 19.557224 307.798762 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.359905 310.43798 L 22.196443 311.751699 L 21.118369 312.352592 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 311.516054 L 22.196443 311.751699 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 298.79714 L 21.118369 327.716616 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 298.79714 L 19.79876 327.716616 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 303.592507 L 22.196443 305.636723 M 21.118369 301.194823 L 22.196443 304.075578 M 19.79876 324.835861 L 19.680937 324.712148 M 21.118369 321.595749 L 21.359905 321.477927 M 21.60144 321.955107 L 21.719263 321.837285 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 325.195219 L 22.196443 322.438178 L 21.118369 321.837285 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 316.794492 L 19.557224 316.676669 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.680937 318.231923 L 19.680937 317.513208 L 19.557224 317.036027 L 19.557224 316.676669 L 19.680937 316.552956 L 19.79876 316.552956 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 18.720686 319.798959 L 18.962221 318.838708 L 19.080044 318.355637 L 19.197866 317.996279 L 19.321579 317.513208 L 19.321579 317.15385 L 19.439402 316.676669 L 19.557224 316.317311 L 19.557224 315.474882 L 19.680937 315.115524 L 19.680937 314.037451 L 19.79876 313.554379 L 19.79876 313.195021 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16.199289 306.714797 L 16.075576 307.197868 L 15.963645 307.557226 L 15.716218 308.517477 L 15.716218 308.876835 L 15.604287 309.354015 L 15.480573 309.713373 L 15.480573 310.072731 L 15.35686 310.555803 L 15.35686 311.274518 L 15.239038 311.751699 L 15.239038 314.756166 L 15.35686 315.115524 L 15.35686 315.957954 L 15.480573 316.317311 L 15.480573 316.676669 L 15.604287 317.15385 L 15.716218 317.513208 L 15.716218 317.996279 L 15.839931 318.355637 L 15.963645 318.838708 L 16.075576 319.315888 L 16.199289 319.798959 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 317.036027 L 22.196443 318.714995 L 21.118369 320.517675 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip15)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 323.274716 L 19.922473 323.274716 M 32.040493 320.75332 L 31.4396 320.75332 M 28.682559 320.75332 L 28.075774 320.75332 M 32.040493 305.636723 L 31.4396 305.636723 M 28.682559 305.636723 L 28.075774 305.636723 M 28.075774 320.75332 L 27.239236 321.713571 M 28.075774 305.636723 L 27.840129 305.395187 M 23.639765 321.955107 L 23.038872 320.877033 M 25.442446 321.955107 L 24.841553 320.877033 M 22.07862 305.518901 L 22.679514 304.440827 M 23.999123 305.518901 L 24.482195 304.440827 M 25.801804 305.518901 L 26.396807 304.440827 M 27.716416 305.518901 L 27.840129 305.395187 M 27.239236 321.713571 L 26.762056 320.877033 M 26.879878 304.440827 L 27.480771 305.518901 M 24.959375 304.440827 L 25.560268 305.518901 M 23.038872 304.440827 L 23.763479 305.518901 M 22.803227 320.877033 L 22.07862 321.955107 M 24.717839 320.877033 L 23.999123 321.955107 M 26.52052 320.877033 L 25.919626 321.955107 M 14.520322 305.518901 L 15.121216 304.440827 M 21.719263 321.955107 L 21.118369 320.994856 M 13.677893 304.440827 L 14.396609 305.518901 M 15.239038 320.994856 L 14.638144 321.955107 M 8.517277 321.955107 L 8.040097 320.877033 M 10.443672 321.955107 L 9.842778 320.877033 M 12.358283 321.955107 L 11.763281 320.877033 M 14.160964 321.955107 L 13.677893 320.877033 M 9.000349 305.518901 L 9.477529 304.440827 M 10.803029 305.518901 L 11.398032 304.440827 M 12.717641 305.518901 L 13.318535 304.440827 M 11.763281 304.440827 L 12.481997 305.518901 M 9.9606 304.440827 L 10.561494 305.518901 M 8.040097 304.440827 L 8.764704 305.518901 M 7.798562 320.877033 L 7.079846 321.955107 M 9.601242 320.877033 L 9.000349 321.955107 M 11.521745 320.877033 L 10.920852 321.955107 M 13.442248 320.877033 L 12.717641 321.955107 M 4.799985 321.955107 L 4.199091 320.877033 M 3.356662 305.518901 L 3.480376 305.277365 M 5.159343 305.518901 L 5.760236 304.440827 M 7.079846 305.518901 L 7.680739 304.440827 M 6.720488 321.955107 L 6.119594 320.877033 M 2.997304 305.636723 L 3.121018 305.518901 M 3.480376 305.153652 L 4.199091 304.440827 M 2.997304 320.75332 L 3.721911 321.477927 M 4.322805 304.440827 L 4.923698 305.518901 M 6.237417 304.440827 L 6.83831 305.518901 M 4.075378 320.877033 L 3.721911 321.477927 M 5.878059 320.877033 L 5.283056 321.955107 M 3.121018 305.518901 L 3.356662 305.518901 M 3.963447 320.877033 L 4.199091 320.877033 M 4.923698 305.518901 L 5.159343 305.518901 M 5.878059 320.877033 L 6.119594 320.877033 M 6.83831 305.518901 L 7.079846 305.518901 M 7.798562 320.877033 L 8.040097 320.877033 M 8.764704 305.518901 L 9.000349 305.518901 M 9.601242 320.877033 L 9.842778 320.877033 M 10.561494 305.518901 L 10.803029 305.518901 M 11.521745 320.877033 L 11.763281 320.877033 M 12.481997 305.518901 L 12.717641 305.518901 M 13.442248 320.877033 L 13.677893 320.877033 M 14.396609 305.518901 L 14.638144 305.518901 M 22.803227 320.877033 L 23.038872 320.877033 M 23.763479 305.518901 L 23.999123 305.518901 M 24.600017 320.877033 L 24.841553 320.877033 M 25.560268 305.518901 L 25.801804 305.518901 M 26.52052 320.877033 L 26.762056 320.877033 M 27.480771 305.518901 L 27.716416 305.518901 M 2.997304 320.75332 L 1.076801 320.75332 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip16)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.997304 305.636723 L 1.076801 305.636723 L 0.717443 305.996081 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip17)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.717443 320.517675 L 1.076801 320.75332 M 15.239038 324.594326 L 16.199289 326.279184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 324.594326 L 19.79876 324.35279 L 19.680937 324.234968 L 19.680937 323.751897 L 19.557224 323.634074 L 19.557224 323.392539 L 19.439402 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.680937 301.795717 L 18.720686 300.11675 M 19.79876 298.79714 L 21.118369 298.79714 M 19.79876 327.716616 L 21.118369 327.716616 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 302.638146 L 21.118369 302.873791 L 21.236191 303.115326 L 21.236191 303.592507 L 21.359905 303.834042 L 21.477727 304.075578 L 21.477727 304.317114 L 21.60144 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 309.595551 L 21.118369 309.713373 L 21.236191 309.837087 L 21.236191 310.196445 L 21.359905 310.314267 L 21.359905 310.43798 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 301.913539 L 16.199289 300.11675 M 21.60144 321.955107 L 21.60144 322.072929 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 318.591281 L 19.79876 318.47935 L 19.680937 318.231923 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 324.594326 L 18.720686 326.279184 M 25.919626 321.955107 L 25.442446 321.955107 M 23.999123 321.955107 L 23.639765 321.955107 M 22.07862 321.955107 L 21.719263 321.955107 M 14.638144 321.955107 L 14.278786 321.955107 M 12.717641 321.955107 L 12.358283 321.955107 M 10.920852 321.955107 L 10.443672 321.955107 M 9.000349 321.955107 L 8.640991 321.955107 M 7.079846 321.955107 L 6.720488 321.955107 M 5.283056 321.955107 L 4.799985 321.955107 M 26.762056 304.440827 L 26.396807 304.440827 M 24.959375 304.440827 L 24.600017 304.440827 M 23.038872 304.440827 L 22.679514 304.440827 M 15.239038 304.440827 L 15.121216 304.440827 M 13.677893 304.440827 L 13.318535 304.440827 M 11.763281 304.440827 L 11.398032 304.440827 M 9.9606 304.440827 L 9.477529 304.440827 M 8.040097 304.440827 L 7.680739 304.440827 M 6.119594 304.440827 L 5.760236 304.440827 M 4.322805 304.440827 L 4.199091 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.395666 173.752368 L 314.395666 170.158789 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.395666 173.752368 L 314.395666 195.478794 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.395666 170.158789 L 314.283735 170.158789 M 314.283735 195.478794 L 314.395666 195.478794 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.283735 191.75561 L 314.395666 191.75561 M 314.395666 173.752368 L 314.283735 173.752368 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip18)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.283735 347.275112 L 314.283735 1.313588 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 41.997617 L 277.558534 41.873904 L 278.159428 41.514546 L 278.642499 40.913652 L 278.878143 40.31865 L 278.878143 39.594043 L 278.642499 38.875327 L 278.159428 38.392256 L 277.558534 38.032898 L 276.839818 37.915076 L 276.121102 38.032898 L 275.520209 38.392256 L 275.037138 38.875327 L 274.801493 39.594043 L 274.801493 40.31865 L 275.037138 40.913652 L 275.520209 41.514546 L 276.121102 41.873904 Z M 276.839818 41.997617 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 110.034086 L 277.558534 109.916263 L 278.159428 109.556905 L 278.642499 108.956012 L 278.878143 108.355118 L 278.878143 107.636402 L 278.642499 106.911796 L 278.159428 106.440506 L 277.558534 106.075257 L 276.839818 105.957435 L 276.121102 106.075257 L 275.520209 106.440506 L 275.037138 106.911796 L 274.801493 107.636402 L 274.801493 108.355118 L 275.037138 108.956012 L 275.520209 109.556905 L 276.121102 109.916263 Z M 276.839818 110.034086 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 67.435445 L 277.558534 67.317623 L 278.159428 66.958265 L 278.642499 66.357371 L 278.878143 65.756478 L 278.878143 65.037762 L 278.642499 64.313155 L 278.159428 63.835975 L 277.558534 63.476617 L 276.839818 63.352903 L 276.121102 63.476617 L 275.520209 63.835975 L 275.037138 64.313155 L 274.801493 65.037762 L 274.801493 65.756478 L 275.037138 66.357371 L 275.520209 66.958265 L 276.121102 67.317623 Z M 276.839818 67.435445 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 58.916895 L 277.558534 58.799073 L 278.159428 58.439715 L 278.642499 57.838821 L 278.878143 57.232036 L 278.878143 56.513321 L 278.642499 55.794605 L 278.159428 55.317425 L 277.558534 54.958067 L 276.839818 54.834353 L 276.121102 54.958067 L 275.520209 55.317425 L 275.037138 55.794605 L 274.801493 56.513321 L 274.801493 57.232036 L 275.037138 57.838821 L 275.520209 58.439715 L 276.121102 58.799073 Z M 276.839818 58.916895 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 75.959886 L 277.558534 75.836172 L 278.159428 75.476815 L 278.642499 74.875921 L 278.878143 74.275027 L 278.878143 73.556312 L 278.642499 72.837596 L 278.159428 72.354524 L 277.558534 71.995167 L 276.839818 71.877344 L 276.121102 71.995167 L 275.520209 72.354524 L 275.037138 72.837596 L 274.801493 73.556312 L 274.801493 74.275027 L 275.037138 74.875921 L 275.520209 75.476815 L 276.121102 75.836172 Z M 276.839818 75.959886 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 92.996986 L 277.558534 92.873272 L 278.159428 92.513914 L 278.642499 91.913021 L 278.878143 91.318018 L 278.878143 90.593411 L 278.642499 89.874696 L 278.159428 89.397515 L 277.558534 89.032266 L 276.839818 88.914444 L 276.121102 89.032266 L 275.520209 89.397515 L 275.037138 89.874696 L 274.801493 90.593411 L 274.801493 91.318018 L 275.037138 91.913021 L 275.520209 92.513914 L 276.121102 92.873272 Z M 276.839818 92.996986 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 84.478436 L 277.558534 84.354722 L 278.159428 83.995365 L 278.642499 83.394471 L 278.878143 82.799468 L 278.878143 82.074862 L 278.642499 81.356146 L 278.159428 80.873074 L 277.558534 80.513717 L 276.839818 80.395894 L 276.121102 80.513717 L 275.520209 80.873074 L 275.037138 81.356146 L 274.801493 82.074862 L 274.801493 82.799468 L 275.037138 83.394471 L 275.520209 83.995365 L 276.121102 84.354722 Z M 276.839818 84.478436 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 50.392454 L 277.558534 50.274632 L 278.159428 49.915274 L 278.642499 49.31438 L 278.878143 48.713487 L 278.878143 47.994771 L 278.642499 47.276055 L 278.159428 46.798875 L 277.558534 46.439517 L 276.839818 46.315803 L 276.121102 46.439517 L 275.520209 46.798875 L 275.037138 47.276055 L 274.801493 47.994771 L 274.801493 48.713487 L 275.037138 49.31438 L 275.520209 49.915274 L 276.121102 50.274632 Z M 276.839818 50.392454 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.604174 101.515536 L 277.32289 101.397713 L 277.923783 101.032464 L 278.395072 100.437462 L 278.642499 99.836568 L 278.642499 99.117853 L 278.395072 98.393246 L 277.923783 97.916065 L 277.32289 97.556707 L 276.604174 97.438885 L 275.879567 97.556707 L 275.278673 97.916065 L 274.801493 98.393246 L 274.559957 99.117853 L 274.559957 99.836568 L 274.801493 100.437462 L 275.278673 101.032464 L 275.879567 101.397713 Z M 276.604174 101.515536 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 33.479067 L 277.558534 33.355354 L 278.159428 32.995996 L 278.642499 32.395102 L 278.878143 31.794209 L 278.878143 31.075493 L 278.642499 30.356777 L 278.159428 29.873706 L 277.558534 29.514348 L 276.839818 29.396526 L 276.121102 29.514348 L 275.520209 29.873706 L 275.037138 30.356777 L 274.801493 31.075493 L 274.801493 31.794209 L 275.037138 32.395102 L 275.520209 32.995996 L 276.121102 33.355354 Z M 276.839818 33.479067 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip19)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.482393 1.313588 L 36.482393 347.275112 L 314.283735 347.275112 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip20)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.283735 1.313588 L 36.482393 1.313588 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.600215 122.876713 L 36.240857 123.954787 L 35.999321 125.03286 L 35.881499 126.116825 L 35.999321 127.194899 L 36.240857 128.278864 L 36.600215 129.356937 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.600215 219.231763 L 36.240857 220.315728 L 35.999321 221.393802 L 35.881499 222.477767 L 35.999321 223.55584 L 36.240857 224.639805 L 36.600215 225.717879 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip21)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 40.317507 347.15729 L 41.395581 347.516648 L 42.479546 347.752292 L 43.55762 347.876006 L 44.641585 347.752292 L 45.719658 347.516648 L 46.803623 347.15729 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.600215 336.959773 L 36.240857 338.037847 L 35.999321 339.11592 L 35.881499 340.193994 L 35.999321 341.277959 L 36.240857 342.356033 L 36.600215 343.439997 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.600215 5.154594 L 36.240857 6.232668 L 35.999321 7.316633 L 35.881499 8.394707 L 35.999321 9.478671 L 36.240857 10.556745 L 36.600215 11.634819 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip22)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 46.803623 1.437302 L 45.719658 1.072053 L 44.641585 0.836408 L 43.55762 0.712695 L 42.479546 0.836408 L 41.395581 1.072053 L 40.317507 1.437302 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip23)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.239396 1.437302 L 125.161322 1.072053 L 124.077357 0.836408 L 122.999284 0.712695 L 121.92121 0.836408 L 120.837245 1.072053 L 119.759171 1.437302 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip24)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.438101 1.437302 L 207.360027 1.072053 L 206.281953 0.836408 L 205.197989 0.712695 L 204.119915 0.836408 L 203.041841 1.072053 L 201.963767 1.437302 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.160021 11.634819 L 314.519379 10.556745 L 314.760915 9.478671 L 314.878737 8.394707 L 314.760915 7.316633 L 314.519379 6.232668 L 314.160021 5.154594 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip25)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 310.442729 1.437302 L 309.358764 1.072053 L 308.28069 0.836408 L 307.196725 0.712695 L 306.118652 0.836408 L 305.040578 1.072053 L 303.962504 1.437302 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip26)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 99.841317 347.15729 L 100.919391 347.516648 L 101.997464 347.752292 L 103.075538 347.876006 L 104.159503 347.752292 L 105.237577 347.516648 L 106.321542 347.15729 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip27)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.877154 347.15729 L 219.961119 347.516648 L 221.039192 347.752292 L 222.123157 347.876006 L 223.201231 347.752292 L 224.279305 347.516648 L 225.357379 347.15729 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.160021 343.439997 L 314.519379 342.356033 L 314.760915 341.277959 L 314.878737 340.193994 L 314.760915 339.11592 L 314.519379 338.037847 L 314.160021 336.959773 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip28)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 303.962504 347.15729 L 305.040578 347.516648 L 306.118652 347.752292 L 307.196725 347.876006 L 308.28069 347.752292 L 309.358764 347.516648 L 310.442729 347.15729 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<use xlink:href="#surface5" transform="matrix(1,0,0,1,54,56)"/>
|
||||
<path style="fill:none;stroke-width:1.99255;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.082031 264.758563 L 170.082031 266.75075 M 170.082031 264.758563 L 170.082031 293.957781 M 170.082031 293.957781 L 170.082031 323.153094 M 170.082031 321.160906 L 170.082031 323.153094 " transform="matrix(1,0,0,-1,0,340.157)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1.99255;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.667969 323.153094 C 171.667969 324.028094 170.957031 324.739031 170.082031 324.739031 C 169.203125 324.739031 168.492188 324.028094 168.492188 323.153094 C 168.492188 322.278094 169.203125 321.567156 170.082031 321.567156 C 170.957031 321.567156 171.667969 322.278094 171.667969 323.153094 Z M 171.667969 323.153094 " transform="matrix(1,0,0,-1,0,340.157)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="160.047" y="12.691"/>
|
||||
<use xlink:href="#glyph0-2" x="167.51895" y="12.691"/>
|
||||
<use xlink:href="#glyph0-3" x="173.054171" y="12.691"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.99255;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.625 277.797625 L 263.625 306.145281 L 0 306.145281 " transform="matrix(1,0,0,-1,0,340.157)"/>
|
||||
<path style="fill:none;stroke-width:1.99255;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 233.578125 277.797625 L 233.578125 289.137469 L 0 289.137469 " transform="matrix(1,0,0,-1,0,340.157)"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 211 KiB |
BIN
Software/PC_Application/icons/compound_V1_USB.png
Normal file
After Width: | Height: | Size: 6.0 KiB |
651
Software/PC_Application/icons/compound_V1_USB.svg
Normal file
@ -0,0 +1,651 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="340.157pt" height="340.157pt" viewBox="0 0 340.157 340.157" version="1.1">
|
||||
<defs>
|
||||
<g>
|
||||
<symbol overflow="visible" id="glyph0-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<path style="stroke:none;" d="M 5.796875 -2.296875 C 5.796875 -0.890625 4.828125 -0.09375 3.890625 -0.09375 C 3.421875 -0.09375 2.25 -0.34375 2.25 -2.234375 L 2.25 -6.03125 C 2.25 -6.390625 2.265625 -6.5 3.03125 -6.5 L 3.265625 -6.5 L 3.265625 -6.8125 C 2.921875 -6.78125 2.1875 -6.78125 1.796875 -6.78125 C 1.421875 -6.78125 0.671875 -6.78125 0.328125 -6.8125 L 0.328125 -6.5 L 0.5625 -6.5 C 1.328125 -6.5 1.359375 -6.390625 1.359375 -6.03125 L 1.359375 -2.265625 C 1.359375 -0.875 2.515625 0.21875 3.875 0.21875 C 5.015625 0.21875 5.90625 -0.703125 6.078125 -1.84375 C 6.109375 -2.046875 6.109375 -2.140625 6.109375 -2.53125 L 6.109375 -5.71875 C 6.109375 -6.046875 6.109375 -6.5 7.140625 -6.5 L 7.140625 -6.8125 C 6.78125 -6.796875 6.296875 -6.78125 5.96875 -6.78125 C 5.609375 -6.78125 5.140625 -6.796875 4.78125 -6.8125 L 4.78125 -6.5 C 5.796875 -6.5 5.796875 -6.03125 5.796875 -5.765625 Z M 5.796875 -2.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 3.484375 -3.875 L 2.203125 -4.171875 C 1.578125 -4.328125 1.203125 -4.859375 1.203125 -5.4375 C 1.203125 -6.140625 1.734375 -6.75 2.515625 -6.75 C 4.171875 -6.75 4.390625 -5.109375 4.453125 -4.671875 C 4.46875 -4.609375 4.46875 -4.546875 4.578125 -4.546875 C 4.703125 -4.546875 4.703125 -4.59375 4.703125 -4.78125 L 4.703125 -6.78125 C 4.703125 -6.953125 4.703125 -7.03125 4.59375 -7.03125 C 4.53125 -7.03125 4.515625 -7.015625 4.453125 -6.890625 L 4.09375 -6.328125 C 3.796875 -6.625 3.390625 -7.03125 2.5 -7.03125 C 1.390625 -7.03125 0.5625 -6.15625 0.5625 -5.09375 C 0.5625 -4.265625 1.09375 -3.53125 1.859375 -3.265625 C 1.96875 -3.234375 2.484375 -3.109375 3.1875 -2.9375 C 3.453125 -2.875 3.75 -2.796875 4.03125 -2.4375 C 4.234375 -2.171875 4.34375 -1.84375 4.34375 -1.515625 C 4.34375 -0.8125 3.84375 -0.09375 3 -0.09375 C 2.71875 -0.09375 1.953125 -0.140625 1.421875 -0.625 C 0.84375 -1.171875 0.8125 -1.796875 0.8125 -2.15625 C 0.796875 -2.265625 0.71875 -2.265625 0.6875 -2.265625 C 0.5625 -2.265625 0.5625 -2.1875 0.5625 -2.015625 L 0.5625 -0.015625 C 0.5625 0.15625 0.5625 0.21875 0.671875 0.21875 C 0.734375 0.21875 0.75 0.203125 0.8125 0.09375 C 0.8125 0.078125 0.84375 0.046875 1.171875 -0.484375 C 1.484375 -0.140625 2.125 0.21875 3.015625 0.21875 C 4.171875 0.21875 4.96875 -0.75 4.96875 -1.859375 C 4.96875 -2.84375 4.3125 -3.671875 3.484375 -3.875 Z M 3.484375 -3.875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 2.21875 -3.65625 L 2.21875 -6.09375 C 2.21875 -6.4375 2.234375 -6.5 2.703125 -6.5 L 3.9375 -6.5 C 4.90625 -6.5 5.25 -5.65625 5.25 -5.125 C 5.25 -4.484375 4.765625 -3.65625 3.65625 -3.65625 Z M 4.5625 -3.5625 C 5.53125 -3.75 6.21875 -4.390625 6.21875 -5.125 C 6.21875 -5.984375 5.296875 -6.8125 4 -6.8125 L 0.359375 -6.8125 L 0.359375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.390625 -6.390625 1.390625 -6.03125 L 1.390625 -0.78125 C 1.390625 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.359375 -0.3125 L 0.359375 0 L 4.265625 0 C 5.59375 0 6.484375 -0.890625 6.484375 -1.828125 C 6.484375 -2.6875 5.671875 -3.4375 4.5625 -3.5625 Z M 3.953125 -0.3125 L 2.703125 -0.3125 C 2.234375 -0.3125 2.21875 -0.375 2.21875 -0.703125 L 2.21875 -3.421875 L 4.09375 -3.421875 C 5.078125 -3.421875 5.5 -2.5 5.5 -1.828125 C 5.5 -1.125 4.96875 -0.3125 3.953125 -0.3125 Z M 3.953125 -0.3125 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
<clipPath id="clip2">
|
||||
<path d="M 174 0.691406 L 186 0.691406 L 186 2 L 174 2 Z M 174 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip3">
|
||||
<path d="M 184 0.691406 L 186 0.691406 L 186 2 L 184 2 Z M 184 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip4">
|
||||
<path d="M 174 0.691406 L 176 0.691406 L 176 2 L 174 2 Z M 174 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip5">
|
||||
<path d="M 173 0.691406 L 187 0.691406 L 187 17 L 173 17 Z M 173 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip6">
|
||||
<path d="M 205 0.691406 L 216 0.691406 L 216 2 L 205 2 Z M 205 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip7">
|
||||
<path d="M 214 0.691406 L 216 0.691406 L 216 2 L 214 2 Z M 214 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip8">
|
||||
<path d="M 204 0.691406 L 206 0.691406 L 206 2 L 204 2 Z M 204 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip9">
|
||||
<path d="M 203 0.691406 L 217 0.691406 L 217 17 L 203 17 Z M 203 0.691406 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip10">
|
||||
<path d="M 18 226 L 30 226 L 30 227.464844 L 18 227.464844 Z M 18 226 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip11">
|
||||
<path d="M 17 205 L 32 205 L 32 227.464844 L 17 227.464844 Z M 17 205 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip12">
|
||||
<path d="M 18 225 L 20 225 L 20 227.464844 L 18 227.464844 Z M 18 225 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip13">
|
||||
<path d="M 28 216 L 34 216 L 34 227.464844 L 28 227.464844 Z M 28 216 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip14">
|
||||
<path d="M 202 226 L 214 226 L 214 227.464844 L 202 227.464844 Z M 202 226 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip15">
|
||||
<path d="M 201 205 L 216 205 L 216 227.464844 L 201 227.464844 Z M 201 205 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip16">
|
||||
<path d="M 202 225 L 204 225 L 204 227.464844 L 202 227.464844 Z M 202 225 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip17">
|
||||
<path d="M 212 216 L 218 216 L 218 227.464844 L 212 227.464844 Z M 212 216 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip18">
|
||||
<path d="M 0.507812 18 L 231.648438 18 L 231.648438 20 L 0.507812 20 Z M 0.507812 18 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip19">
|
||||
<path d="M 0.507812 18 L 231.648438 18 L 231.648438 204 L 0.507812 204 Z M 0.507812 18 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip20">
|
||||
<path d="M 0.507812 18 L 2 18 L 2 204 L 0.507812 204 Z M 0.507812 18 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip21">
|
||||
<path d="M 230 195 L 231.648438 195 L 231.648438 202 L 230 202 Z M 230 195 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip22">
|
||||
<path d="M 0.507812 195 L 2 195 L 2 202 L 0.507812 202 Z M 0.507812 195 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip23">
|
||||
<path d="M 0.507812 143 L 2 143 L 2 149 L 0.507812 149 Z M 0.507812 143 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip24">
|
||||
<path d="M 0.507812 88 L 2 88 L 2 95 L 0.507812 95 Z M 0.507812 88 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip25">
|
||||
<path d="M 0.507812 21 L 2 21 L 2 27 L 0.507812 27 Z M 0.507812 21 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip26">
|
||||
<path d="M 230 156 L 231.648438 156 L 231.648438 162 L 230 162 Z M 230 156 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip27">
|
||||
<path d="M 230 77 L 231.648438 77 L 231.648438 83 L 230 83 Z M 230 77 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip28">
|
||||
<path d="M 230 21 L 231.648438 21 L 231.648438 27 L 230 27 Z M 230 21 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip1">
|
||||
<rect x="0" y="0" width="232" height="228"/>
|
||||
</clipPath>
|
||||
<g id="surface5" clip-path="url(#clip1)">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 108.478832 L 275.037138 108.231405 L 275.160851 107.99576 L 275.037138 107.754225 L 274.801493 107.51858 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 109.073834 L 275.396495 109.073834 L 275.396495 106.911796 L 275.037138 106.911796 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 91.435841 L 275.037138 91.194305 L 275.160851 90.958661 L 275.037138 90.717125 L 274.801493 90.475589 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 92.036734 L 275.396495 92.036734 L 275.396495 89.874696 L 275.037138 89.874696 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 82.9114 L 275.037138 82.675755 L 275.160851 82.440111 L 275.037138 82.192684 L 274.801493 81.957039 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 83.518184 L 275.396495 83.518184 L 275.396495 81.356146 L 275.037138 81.356146 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 74.39285 L 275.037138 74.157205 L 275.160851 73.91567 L 275.037138 73.674134 L 274.801493 73.438489 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 74.993743 L 275.396495 74.993743 L 275.396495 72.837596 L 275.037138 72.837596 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 65.8743 L 275.037138 65.638655 L 275.160851 65.39712 L 275.037138 65.155584 L 274.801493 64.914048 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 66.475193 L 275.396495 66.475193 L 275.396495 64.313155 L 275.037138 64.313155 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 57.35575 L 275.037138 57.114214 L 275.160851 56.872679 L 275.037138 56.637034 L 274.801493 56.395498 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 57.956643 L 275.396495 57.956643 L 275.396495 55.794605 L 275.037138 55.794605 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 48.8372 L 275.037138 48.595664 L 275.160851 48.354129 L 275.037138 48.118484 L 274.801493 47.876948 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 49.438093 L 275.396495 49.438093 L 275.396495 47.276055 L 275.037138 47.276055 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 40.436472 L 275.037138 40.194937 L 275.160851 39.959292 L 275.037138 39.717756 L 274.801493 39.476221 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 41.037366 L 275.396495 41.037366 L 275.396495 38.875327 L 275.037138 38.875327 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 31.912031 L 275.037138 31.676387 L 275.160851 31.440742 L 275.037138 31.193315 L 274.801493 30.957671 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 32.518816 L 275.396495 32.518816 L 275.396495 30.356777 L 275.037138 30.356777 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.442135 99.954391 L 274.67778 99.712855 L 274.801493 99.47721 L 274.67778 99.235675 L 274.442135 98.994139 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.801493 100.555284 L 275.037138 100.555284 L 275.037138 98.393246 L 274.801493 98.393246 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 107.51858 L 278.760321 107.754225 L 278.642499 107.99576 L 278.760321 108.231405 L 279.001857 108.478832 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 106.911796 L 278.395072 106.911796 L 278.395072 109.073834 L 278.760321 109.073834 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 90.475589 L 278.760321 90.717125 L 278.642499 90.958661 L 278.760321 91.194305 L 279.001857 91.435841 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 89.874696 L 278.395072 89.874696 L 278.395072 92.036734 L 278.760321 92.036734 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 81.957039 L 278.760321 82.192684 L 278.642499 82.440111 L 278.760321 82.675755 L 279.001857 82.9114 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 81.356146 L 278.395072 81.356146 L 278.395072 83.518184 L 278.760321 83.518184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 73.438489 L 278.760321 73.674134 L 278.642499 73.91567 L 278.760321 74.157205 L 279.001857 74.39285 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 72.837596 L 278.395072 72.837596 L 278.395072 74.993743 L 278.760321 74.993743 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 64.914048 L 278.760321 65.155584 L 278.642499 65.39712 L 278.760321 65.638655 L 279.001857 65.8743 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 64.313155 L 278.395072 64.313155 L 278.395072 66.475193 L 278.760321 66.475193 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 56.395498 L 278.760321 56.637034 L 278.642499 56.872679 L 278.760321 57.114214 L 279.001857 57.35575 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 55.794605 L 278.395072 55.794605 L 278.395072 57.956643 L 278.760321 57.956643 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 47.876948 L 278.760321 48.118484 L 278.642499 48.354129 L 278.760321 48.595664 L 279.001857 48.8372 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 47.276055 L 278.395072 47.276055 L 278.395072 49.438093 L 278.760321 49.438093 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 39.476221 L 278.760321 39.717756 L 278.642499 39.959292 L 278.760321 40.194937 L 279.001857 40.436472 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 38.875327 L 278.395072 38.875327 L 278.395072 41.037366 L 278.760321 41.037366 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.001857 30.957671 L 278.760321 31.193315 L 278.642499 31.440742 L 278.760321 31.676387 L 279.001857 31.912031 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 30.356777 L 278.395072 30.356777 L 278.395072 32.518816 L 278.760321 32.518816 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.760321 98.994139 L 278.518786 99.235675 L 278.395072 99.47721 L 278.518786 99.712855 L 278.760321 99.954391 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 98.393246 L 278.159428 98.393246 L 278.159428 100.555284 L 278.395072 100.555284 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.642499 109.073834 L 278.395072 109.073834 M 275.396495 109.073834 L 275.037138 109.073834 M 275.037138 106.799864 L 275.396495 106.799864 M 278.395072 106.799864 L 278.642499 106.799864 M 278.642499 92.036734 L 278.395072 92.036734 M 275.396495 92.036734 L 275.037138 92.036734 M 275.037138 89.874696 L 275.396495 89.874696 M 278.395072 89.874696 L 278.642499 89.874696 M 278.642499 83.518184 L 278.395072 83.518184 M 275.396495 83.518184 L 275.037138 83.518184 M 275.037138 81.356146 L 275.396495 81.356146 M 278.395072 81.356146 L 278.642499 81.356146 M 278.642499 74.993743 L 278.395072 74.993743 M 275.396495 74.993743 L 275.037138 74.993743 M 275.037138 72.837596 L 275.396495 72.837596 M 278.395072 72.837596 L 278.642499 72.837596 M 278.642499 66.475193 L 278.395072 66.475193 M 275.396495 66.475193 L 275.037138 66.475193 M 275.037138 64.313155 L 275.396495 64.313155 M 278.395072 64.313155 L 278.642499 64.313155 M 278.642499 58.074466 L 278.395072 58.074466 M 275.396495 58.074466 L 275.037138 58.074466 M 275.037138 55.794605 L 275.396495 55.794605 M 278.395072 55.794605 L 278.642499 55.794605 M 278.642499 49.555916 L 278.395072 49.555916 M 275.396495 49.555916 L 275.037138 49.555916 M 275.037138 47.276055 L 275.396495 47.276055 M 278.395072 47.276055 L 278.642499 47.276055 M 278.642499 41.037366 L 278.395072 41.037366 M 275.396495 41.037366 L 275.037138 41.037366 M 275.037138 38.751614 L 275.396495 38.751614 M 278.395072 38.751614 L 278.642499 38.751614 M 278.642499 32.518816 L 278.395072 32.518816 M 275.396495 32.518816 L 275.037138 32.518816 M 275.037138 30.233064 L 275.396495 30.233064 M 278.395072 30.233064 L 278.642499 30.233064 M 278.395072 100.555284 L 278.159428 100.555284 M 275.037138 100.555284 L 274.801493 100.555284 M 274.801493 98.275423 L 275.037138 98.275423 M 278.159428 98.275423 L 278.395072 98.275423 M 278.395072 109.073834 L 278.395072 106.799864 M 275.396495 106.799864 L 275.396495 109.073834 M 278.395072 109.073834 L 278.518786 109.073834 M 278.395072 106.799864 L 278.518786 106.799864 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 109.073834 L 278.395072 106.799864 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 106.799864 L 275.643922 106.799864 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 106.799864 L 275.643922 109.073834 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 109.073834 L 278.159428 109.073834 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 109.073834 L 278.159428 106.799864 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 106.799864 L 275.643922 106.799864 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 106.799864 L 278.395072 106.799864 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 109.073834 L 278.159428 109.073834 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 109.073834 L 275.396495 109.073834 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 106.799864 L 275.396495 109.073834 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 92.036734 L 278.395072 89.874696 M 275.396495 89.874696 L 275.396495 92.036734 M 278.395072 92.036734 L 278.518786 92.036734 M 278.395072 89.874696 L 278.518786 89.874696 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 92.036734 L 278.395072 89.874696 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 89.874696 L 275.643922 89.874696 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 89.874696 L 275.643922 92.036734 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 92.036734 L 278.159428 92.036734 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 92.036734 L 278.159428 89.874696 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 89.874696 L 275.643922 89.874696 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 89.874696 L 278.395072 89.874696 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 92.036734 L 278.159428 92.036734 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 92.036734 L 275.396495 92.036734 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 89.874696 L 275.396495 92.036734 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 83.518184 L 278.395072 81.356146 M 275.396495 81.356146 L 275.396495 83.518184 M 278.395072 83.518184 L 278.518786 83.518184 M 278.395072 81.356146 L 278.518786 81.356146 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 83.518184 L 278.395072 81.356146 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 81.356146 L 275.643922 81.356146 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 81.356146 L 275.643922 83.518184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 83.518184 L 278.159428 83.518184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 83.518184 L 278.159428 81.356146 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 81.356146 L 275.643922 81.356146 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 81.356146 L 278.395072 81.356146 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 83.518184 L 278.159428 83.518184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 83.518184 L 275.396495 83.518184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 81.356146 L 275.396495 83.518184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 74.993743 L 278.395072 72.837596 M 275.396495 72.837596 L 275.396495 74.993743 M 278.395072 74.993743 L 278.518786 74.993743 M 278.395072 72.837596 L 278.518786 72.837596 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 74.993743 L 278.395072 72.837596 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 72.837596 L 275.643922 72.837596 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 72.837596 L 275.643922 74.993743 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 74.993743 L 278.159428 74.993743 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 74.993743 L 278.159428 72.837596 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 72.837596 L 275.643922 72.837596 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 72.837596 L 278.395072 72.837596 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 74.993743 L 278.159428 74.993743 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 74.993743 L 275.396495 74.993743 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 72.837596 L 275.396495 74.993743 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 66.475193 L 278.395072 64.313155 M 275.396495 64.313155 L 275.396495 66.475193 M 278.395072 66.475193 L 278.518786 66.475193 M 278.395072 64.313155 L 278.518786 64.313155 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 66.475193 L 278.395072 64.313155 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 64.313155 L 275.643922 64.313155 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 64.313155 L 275.643922 66.475193 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 66.475193 L 278.159428 66.475193 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 66.475193 L 278.159428 64.313155 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 64.313155 L 275.643922 64.313155 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 64.313155 L 278.395072 64.313155 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 66.475193 L 278.159428 66.475193 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 66.475193 L 275.396495 66.475193 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 64.313155 L 275.396495 66.475193 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 58.074466 L 278.395072 55.794605 M 275.396495 55.794605 L 275.396495 58.074466 M 278.395072 58.074466 L 278.518786 58.074466 M 278.395072 55.794605 L 278.518786 55.794605 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 58.074466 L 278.395072 55.794605 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 55.794605 L 275.643922 55.794605 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 55.794605 L 275.643922 58.074466 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 58.074466 L 278.159428 58.074466 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 58.074466 L 278.159428 55.794605 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 55.794605 L 275.643922 55.794605 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 55.794605 L 278.395072 55.794605 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 58.074466 L 278.159428 58.074466 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 58.074466 L 275.396495 58.074466 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 55.794605 L 275.396495 58.074466 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 49.555916 L 278.395072 47.276055 M 275.396495 47.276055 L 275.396495 49.555916 M 278.395072 49.555916 L 278.518786 49.555916 M 278.395072 47.276055 L 278.518786 47.276055 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 49.555916 L 278.395072 47.276055 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 47.276055 L 275.643922 47.276055 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 47.276055 L 275.643922 49.555916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 49.555916 L 278.159428 49.555916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 49.555916 L 278.159428 47.276055 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 47.276055 L 275.643922 47.276055 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 47.276055 L 278.395072 47.276055 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 49.555916 L 278.159428 49.555916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 49.555916 L 275.396495 49.555916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 47.276055 L 275.396495 49.555916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 41.037366 L 278.395072 38.751614 M 275.396495 38.751614 L 275.396495 41.037366 M 278.395072 41.037366 L 278.518786 41.037366 M 278.395072 38.751614 L 278.518786 38.751614 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 41.037366 L 278.395072 38.751614 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 38.751614 L 275.643922 38.751614 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 38.751614 L 275.643922 41.037366 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 41.037366 L 278.159428 41.037366 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 41.037366 L 278.159428 38.751614 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 38.751614 L 275.643922 38.751614 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 38.751614 L 278.395072 38.751614 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 41.037366 L 278.159428 41.037366 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 41.037366 L 275.396495 41.037366 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 38.751614 L 275.396495 41.037366 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 32.518816 L 278.395072 30.233064 M 275.396495 30.233064 L 275.396495 32.518816 M 278.395072 32.518816 L 278.518786 32.518816 M 278.395072 30.233064 L 278.518786 30.233064 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 32.518816 L 278.395072 30.233064 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 30.233064 L 275.643922 30.233064 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 30.233064 L 275.643922 32.518816 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 32.518816 L 278.159428 32.518816 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 32.518816 L 278.159428 30.233064 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 30.233064 L 275.643922 30.233064 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 30.233064 L 278.395072 30.233064 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.395072 32.518816 L 278.159428 32.518816 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.643922 32.518816 L 275.396495 32.518816 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.396495 30.233064 L 275.396495 32.518816 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 100.555284 L 278.159428 98.275423 M 275.037138 98.275423 L 275.037138 100.555284 M 278.159428 100.555284 L 278.283141 100.555284 M 278.159428 98.275423 L 278.283141 98.275423 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 100.555284 L 278.159428 98.275423 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.923783 98.275423 L 275.278673 98.275423 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.278673 98.275423 L 275.278673 100.555284 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.278673 100.555284 L 277.923783 100.555284 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.923783 100.555284 L 277.923783 98.275423 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.037138 98.275423 L 275.278673 98.275423 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.923783 98.275423 L 278.159428 98.275423 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.159428 100.555284 L 277.923783 100.555284 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.278673 100.555284 L 275.037138 100.555284 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.160851 98.275423 L 275.160851 100.555284 M 318.837566 263.515262 L 318.837566 277.913143 M 340.92335 277.913143 L 340.92335 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip2)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 341.282707 263.756798 L 341.282707 277.677499 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.002847 277.913143 L 339.120669 277.913143 L 339.120669 277.795321 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 336.840808 277.913143 L 336.840808 277.677499 L 336.95863 277.553785 L 336.95863 276.593534 L 337.076453 276.357889 L 337.076453 274.914567 L 337.200166 274.555209 L 337.200166 272.634706 L 337.317988 272.39317 L 337.317988 270.231132 L 337.441702 269.995487 L 337.441702 267.957162 L 337.559524 267.591913 L 337.559524 265.912945 L 337.677346 265.677301 L 337.677346 264.357692 L 337.801059 264.233978 L 337.801059 263.638976 L 337.924773 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 334.560947 277.913143 L 334.560947 277.677499 L 334.678769 277.553785 L 334.678769 276.593534 L 334.802483 276.357889 L 334.802483 274.914567 L 334.920305 274.555209 L 334.920305 272.634706 L 335.038127 272.39317 L 335.038127 270.231132 L 335.161841 269.995487 L 335.161841 268.31652 L 335.279663 267.957162 L 335.279663 266.154481 L 335.397485 265.912945 L 335.397485 264.593336 L 335.521199 264.357692 L 335.521199 263.638976 L 335.639021 263.638976 L 335.639021 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.281086 277.913143 L 332.281086 277.677499 L 332.398908 277.677499 L 332.398908 276.717247 L 332.522622 276.593534 L 332.522622 275.156102 L 332.640444 274.914567 L 332.640444 272.994064 L 332.764158 272.634706 L 332.764158 270.596381 L 332.876089 270.354845 L 332.876089 268.31652 L 332.999802 267.957162 L 332.999802 266.154481 L 333.123515 265.912945 L 333.123515 264.593336 L 333.235447 264.357692 L 333.235447 263.638976 L 333.35916 263.638976 L 333.35916 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.001225 277.913143 L 330.001225 277.795321 L 330.119048 277.677499 L 330.119048 276.958783 L 330.23687 276.717247 L 330.23687 275.397638 L 330.360583 275.156102 L 330.360583 273.353422 L 330.478406 272.994064 L 330.478406 270.955739 L 330.602119 270.596381 L 330.602119 268.552164 L 330.719941 268.31652 L 330.719941 266.396017 L 330.837763 266.154481 L 330.837763 264.717049 L 330.961477 264.593336 L 330.961477 263.756798 L 331.079299 263.638976 L 331.079299 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 327.721364 277.913143 L 327.721364 277.795321 L 327.839187 277.677499 L 327.839187 276.958783 L 327.9629 276.717247 L 327.9629 275.397638 L 328.080722 275.156102 L 328.080722 273.71278 L 328.198545 273.353422 L 328.198545 271.315096 L 328.322258 270.955739 L 328.322258 268.911522 L 328.44008 268.552164 L 328.44008 266.755375 L 328.557903 266.396017 L 328.557903 264.958585 L 328.681616 264.717049 L 328.681616 263.87462 L 328.799438 263.756798 L 328.799438 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 276.717247 L 325.677148 275.639174 L 325.800862 275.397638 L 325.800862 273.836493 L 325.924575 273.594957 L 325.924575 271.43881 L 326.036506 271.073561 L 326.036506 268.911522 L 326.160219 268.675878 L 326.160219 266.873197 L 326.283933 266.637552 L 326.283933 264.958585 L 326.395864 264.834872 L 326.395864 263.87462 L 326.519577 263.756798 L 326.519577 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.395864 263.515262 L 326.395864 263.638976 L 326.283933 263.756798 L 326.283933 264.593336 L 326.160219 264.717049 L 326.160219 266.278195 L 326.036506 266.396017 L 326.036506 268.440233 L 325.924575 268.675878 L 325.924575 270.837916 L 325.800862 271.073561 L 325.800862 273.117777 L 325.677148 273.353422 L 325.677148 274.678922 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 328.681616 263.515262 L 328.681616 263.638976 L 328.557903 263.638976 L 328.557903 264.475514 L 328.44008 264.593336 L 328.44008 266.036659 L 328.322258 266.278195 L 328.322258 268.074984 L 328.198545 268.31652 L 328.198545 270.354845 L 328.080722 270.714203 L 328.080722 272.752528 L 327.9629 273.117777 L 327.9629 274.914567 L 327.839187 275.279816 L 327.839187 276.593534 L 327.721364 276.83507 L 327.721364 277.677499 L 327.603542 277.795321 L 327.603542 277.913143 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.961477 263.515262 L 330.961477 263.638976 L 330.837763 263.638976 L 330.837763 264.233978 L 330.719941 264.475514 L 330.719941 265.677301 L 330.602119 266.036659 L 330.602119 267.715626 L 330.478406 268.074984 L 330.478406 270.1192 L 330.360583 270.354845 L 330.360583 272.516884 L 330.23687 272.752528 L 330.23687 274.678922 L 330.119048 274.914567 L 330.119048 276.475712 L 330.001225 276.593534 L 330.001225 277.553785 L 329.877512 277.677499 L 329.877512 277.913143 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.235447 263.515262 L 333.123515 263.638976 L 333.123515 264.233978 L 332.999802 264.475514 L 332.999802 265.677301 L 332.876089 266.036659 L 332.876089 267.715626 L 332.764158 268.074984 L 332.764158 270.1192 L 332.640444 270.354845 L 332.640444 272.516884 L 332.522622 272.752528 L 332.522622 274.437387 L 332.398908 274.678922 L 332.398908 276.234176 L 332.281086 276.475712 L 332.281086 277.435963 L 332.157373 277.553785 L 332.157373 277.913143 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.521199 263.515262 L 335.397485 263.515262 L 335.397485 264.116156 L 335.279663 264.233978 L 335.279663 265.435765 L 335.161841 265.677301 L 335.161841 267.474091 L 335.038127 267.715626 L 335.038127 269.753951 L 334.920305 270.1192 L 334.920305 272.157526 L 334.802483 272.516884 L 334.802483 274.437387 L 334.678769 274.678922 L 334.678769 276.234176 L 334.560947 276.475712 L 334.560947 277.435963 L 334.443125 277.553785 L 334.443125 277.913143 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.801059 263.515262 L 337.677346 263.515262 L 337.677346 263.998334 L 337.559524 264.116156 L 337.559524 265.19423 L 337.441702 265.435765 L 337.441702 267.114733 L 337.317988 267.474091 L 337.317988 269.394593 L 337.200166 269.753951 L 337.200166 271.798168 L 337.076453 272.157526 L 337.076453 274.072137 L 336.95863 274.437387 L 336.95863 275.998532 L 336.840808 276.234176 L 336.840808 277.318141 L 336.717095 277.435963 L 336.717095 277.913143 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.120669 276.717247 L 339.120669 277.318141 L 339.002847 277.318141 L 339.002847 277.913143 L 338.879133 277.913143 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.601921 262.437189 L 318.601921 278.873395 M 318.236672 279.232753 L 314.283735 279.232753 M 314.283735 262.195653 L 318.236672 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.236672 278.873395 L 318.236672 262.437189 L 314.283735 262.437189 M 314.283735 278.873395 L 318.236672 278.873395 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 262.195653 L 325.800862 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.761113 279.232753 L 326.878935 279.114931 L 326.878935 278.514037 L 327.002649 278.396215 L 327.002649 276.958783 L 327.120471 276.717247 L 327.120471 274.678922 L 327.238293 274.555209 L 327.238293 272.033812 L 327.356115 271.91599 L 327.356115 269.153058 L 327.479829 268.911522 L 327.479829 266.755375 L 327.603542 266.513839 L 327.603542 264.357692 L 327.721364 264.233978 L 327.721364 262.914369 L 327.839187 262.796546 L 327.839187 262.195653 L 327.9629 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 329.040974 279.232753 L 329.040974 279.114931 L 329.158796 279.114931 L 329.158796 278.396215 L 329.28251 278.278392 L 329.28251 276.717247 L 329.400332 276.593534 L 329.400332 274.555209 L 329.518154 274.313673 L 329.518154 271.91599 L 329.641867 271.674454 L 329.641867 268.911522 L 329.75969 268.675878 L 329.75969 266.396017 L 329.877512 266.154481 L 329.877512 264.233978 L 330.001225 264.116156 L 330.001225 262.796546 L 330.119048 262.678724 L 330.119048 262.195653 L 330.23687 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 331.320835 279.232753 L 331.320835 279.114931 L 331.438657 279.114931 L 331.438657 278.278392 L 331.556479 278.154679 L 331.556479 276.593534 L 331.680193 276.475712 L 331.680193 274.195851 L 331.803906 273.954315 L 331.803906 271.43881 L 331.921728 271.197274 L 331.921728 268.675878 L 332.039551 268.552164 L 332.039551 266.154481 L 332.157373 266.036659 L 332.157373 263.998334 L 332.281086 263.87462 L 332.281086 262.678724 L 332.398908 262.555011 L 332.398908 262.195653 L 332.522622 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.600696 279.232753 L 333.600696 279.114931 L 333.718518 278.997108 L 333.718518 278.154679 L 333.842231 278.036857 L 333.842231 276.357889 L 333.960054 276.116354 L 333.960054 273.954315 L 334.077876 273.71278 L 334.077876 271.197274 L 334.201589 271.073561 L 334.201589 268.31652 L 334.319411 268.074984 L 334.319411 266.036659 L 334.443125 265.795123 L 334.443125 263.87462 L 334.560947 263.756798 L 334.560947 262.555011 L 334.678769 262.555011 L 334.678769 262.195653 L 334.802483 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.880556 279.232753 L 335.880556 278.997108 L 335.998379 278.997108 L 335.998379 278.036857 L 336.122092 277.913143 L 336.122092 276.116354 L 336.239914 275.998532 L 336.239914 273.71278 L 336.357737 273.594957 L 336.357737 271.073561 L 336.48145 270.837916 L 336.48145 268.074984 L 336.599272 267.957162 L 336.599272 265.677301 L 336.717095 265.435765 L 336.717095 263.756798 L 336.840808 263.638976 L 336.840808 262.555011 L 336.95863 262.437189 L 336.95863 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 338.160417 279.232753 L 338.160417 278.873395 L 338.27824 278.873395 L 338.27824 277.913143 L 338.396062 277.677499 L 338.396062 275.998532 L 338.519775 275.751105 L 338.519775 273.477135 L 338.643489 273.117777 L 338.643489 270.955739 L 338.761311 270.596381 L 338.761311 268.074984 L 338.879133 267.715626 L 338.879133 265.435765 L 339.002847 265.19423 L 339.002847 263.515262 L 339.120669 263.39744 L 339.120669 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.160219 279.232753 L 326.283933 279.232753 L 326.283933 278.755573 L 326.395864 278.63775 L 326.395864 277.435963 L 326.519577 277.318141 L 326.519577 275.397638 L 326.643291 275.279816 L 326.643291 272.876241 L 326.761113 272.634706 L 326.761113 269.995487 L 326.878935 269.753951 L 326.878935 267.232555 L 327.002649 266.99691 L 327.002649 264.958585 L 327.120471 264.834872 L 327.120471 263.279618 L 327.238293 263.155904 L 327.238293 262.313475 L 327.356115 262.313475 L 327.356115 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 328.44008 279.232753 L 328.557903 279.232753 L 328.557903 278.63775 L 328.681616 278.63775 L 328.681616 277.318141 L 328.799438 277.194428 L 328.799438 275.032389 L 328.923152 274.914567 L 328.923152 272.634706 L 329.040974 272.39317 L 329.040974 269.753951 L 329.158796 269.518307 L 329.158796 266.99691 L 329.28251 266.873197 L 329.28251 264.834872 L 329.400332 264.593336 L 329.400332 263.032191 L 329.518154 262.914369 L 329.518154 262.313475 L 329.641867 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.719941 279.232753 L 330.837763 279.232753 L 330.837763 278.63775 L 330.961477 278.514037 L 330.961477 277.194428 L 331.079299 276.958783 L 331.079299 274.914567 L 331.197121 274.678922 L 331.197121 272.275348 L 331.320835 272.033812 L 331.320835 269.518307 L 331.438657 269.276771 L 331.438657 266.873197 L 331.556479 266.637552 L 331.556479 264.475514 L 331.680193 264.357692 L 331.680193 262.914369 L 331.803906 262.914369 L 331.803906 262.195653 L 331.921728 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.999802 279.232753 L 333.123515 279.114931 L 333.123515 278.514037 L 333.235447 278.396215 L 333.235447 276.83507 L 333.35916 276.717247 L 333.35916 274.678922 L 333.482873 274.437387 L 333.482873 272.033812 L 333.600696 271.798168 L 333.600696 269.153058 L 333.718518 268.911522 L 333.718518 266.513839 L 333.842231 266.278195 L 333.842231 264.357692 L 333.960054 264.233978 L 333.960054 262.914369 L 334.077876 262.796546 L 334.077876 262.195653 L 334.201589 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.279663 279.232753 L 335.279663 279.114931 L 335.397485 279.114931 L 335.397485 278.278392 L 335.521199 278.278392 L 335.521199 276.717247 L 335.639021 276.593534 L 335.639021 274.437387 L 335.762734 274.313673 L 335.762734 271.798168 L 335.880556 271.556632 L 335.880556 268.911522 L 335.998379 268.675878 L 335.998379 266.278195 L 336.122092 266.154481 L 336.122092 264.233978 L 336.239914 264.116156 L 336.239914 262.796546 L 336.357737 262.678724 L 336.357737 262.195653 L 336.48145 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.559524 279.232753 L 337.559524 279.114931 L 337.677346 279.114931 L 337.677346 278.278392 L 337.801059 278.154679 L 337.801059 276.593534 L 337.924773 276.475712 L 337.924773 274.072137 L 338.036704 273.836493 L 338.036704 271.43881 L 338.160417 271.197274 L 338.160417 268.675878 L 338.27824 268.440233 L 338.27824 266.154481 L 338.396062 265.912945 L 338.396062 263.998334 L 338.519775 263.87462 L 338.519775 262.678724 L 338.643489 262.555011 L 338.643489 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.120669 276.717247 L 339.120669 262.796546 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 262.195653 L 325.677148 274.678922 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.120669 278.036857 L 339.120669 277.795321 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 276.717247 L 325.677148 278.278392 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.236672 262.195653 L 318.236672 262.437189 M 318.236672 278.873395 L 318.236672 279.232753 M 318.236672 262.437189 L 318.601921 262.437189 M 318.601921 278.873395 L 318.236672 278.873395 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.478208 262.437189 L 318.236672 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.236672 279.114931 L 318.478208 278.873395 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.837566 277.913143 L 318.719743 278.036857 L 318.601921 278.154679 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.601921 263.155904 L 318.719743 263.279618 L 318.837566 263.39744 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip3)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.92335 277.913143 L 341.158994 277.677499 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip4)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 341.158994 263.756798 L 341.041172 263.638976 L 340.92335 263.515262 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip5)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.92335 277.913143 L 339.120669 277.913143 M 339.002847 277.913143 L 338.879133 277.913143 M 336.840808 277.913143 L 336.599272 277.913143 M 334.560947 277.913143 L 334.443125 277.913143 M 332.281086 277.913143 L 332.157373 277.913143 M 330.001225 277.913143 L 329.877512 277.913143 M 327.721364 277.913143 L 327.603542 277.913143 M 325.677148 277.913143 L 318.837566 277.913143 M 340.92335 263.515262 L 339.120669 263.515262 M 337.924773 263.515262 L 337.801059 263.515262 M 335.639021 263.515262 L 335.521199 263.515262 M 333.35916 263.515262 L 333.235447 263.515262 M 331.079299 263.515262 L 330.961477 263.515262 M 328.799438 263.515262 L 328.681616 263.515262 M 326.519577 263.515262 L 326.395864 263.515262 M 325.677148 263.515262 L 318.837566 263.515262 M 338.160417 279.232753 L 337.559524 279.232753 M 335.880556 279.232753 L 335.279663 279.232753 M 333.600696 279.232753 L 332.999802 279.232753 M 331.320835 279.232753 L 330.719941 279.232753 M 329.040974 279.232753 L 328.44008 279.232753 M 326.761113 279.232753 L 326.283933 279.232753 M 339.120669 262.195653 L 338.643489 262.195653 M 336.95863 262.195653 L 336.48145 262.195653 M 334.678769 262.195653 L 334.201589 262.195653 M 332.398908 262.195653 L 331.921728 262.195653 M 330.23687 262.195653 L 329.641867 262.195653 M 327.9629 262.195653 L 327.356115 262.195653 M 327.603542 277.913143 L 326.761113 279.232753 M 329.877512 277.913143 L 329.040974 279.232753 M 332.157373 277.913143 L 331.320835 279.232753 M 334.443125 277.913143 L 333.600696 279.232753 M 336.717095 277.913143 L 335.880556 279.232753 M 338.879133 277.913143 L 338.160417 279.232753 M 325.677148 262.195653 L 326.395864 263.515262 M 327.9629 262.195653 L 328.681616 263.515262 M 330.23687 262.195653 L 330.961477 263.515262 M 332.522622 262.195653 L 333.235447 263.515262 M 334.802483 262.195653 L 335.521199 263.515262 M 336.95863 262.195653 L 337.801059 263.515262 M 326.160219 279.232753 L 325.677148 278.278392 M 328.44008 279.232753 L 327.721364 277.913143 M 330.719941 279.232753 L 330.001225 277.913143 M 332.999802 279.232753 L 332.281086 277.913143 M 335.279663 279.232753 L 334.443125 277.913143 M 337.559524 279.232753 L 336.717095 277.913143 M 339.120669 278.036857 L 339.002847 277.913143 M 337.924773 263.515262 L 338.643489 262.195653 M 335.639021 263.515262 L 336.357737 262.195653 M 333.35916 263.515262 L 334.077876 262.195653 M 331.079299 263.515262 L 331.921728 262.195653 M 328.799438 263.515262 L 329.641867 262.195653 M 326.519577 263.515262 L 327.356115 262.195653 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.837566 308.876835 L 318.837566 323.274716 M 340.92335 323.274716 L 340.92335 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip6)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 341.282707 309.118371 L 341.282707 323.033181 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.002847 323.274716 L 339.120669 323.274716 L 339.120669 323.156894 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 336.840808 323.274716 L 336.840808 323.033181 L 336.95863 322.915358 L 336.95863 321.955107 L 337.076453 321.713571 L 337.076453 320.27614 L 337.200166 319.916782 L 337.200166 318.114101 L 337.317988 317.754743 L 337.317988 315.716418 L 337.441702 315.35706 L 337.441702 313.318735 L 337.559524 312.959377 L 337.559524 311.274518 L 337.677346 311.032983 L 337.677346 309.713373 L 337.801059 309.595551 L 337.801059 308.994658 L 337.924773 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 334.560947 323.274716 L 334.560947 323.033181 L 334.678769 322.915358 L 334.678769 321.955107 L 334.802483 321.713571 L 334.802483 320.27614 L 334.920305 319.916782 L 334.920305 318.114101 L 335.038127 317.754743 L 335.038127 315.716418 L 335.161841 315.35706 L 335.161841 313.678093 L 335.279663 313.318735 L 335.279663 311.516054 L 335.397485 311.274518 L 335.397485 309.954909 L 335.521199 309.713373 L 335.521199 308.994658 L 335.639021 308.994658 L 335.639021 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.281086 323.274716 L 332.281086 323.033181 L 332.398908 323.033181 L 332.398908 322.072929 L 332.522622 321.955107 L 332.522622 320.517675 L 332.640444 320.27614 L 332.640444 318.355637 L 332.764158 318.114101 L 332.764158 315.957954 L 332.876089 315.716418 L 332.876089 313.678093 L 332.999802 313.318735 L 332.999802 311.516054 L 333.123515 311.274518 L 333.123515 309.954909 L 333.235447 309.713373 L 333.235447 308.994658 L 333.35916 308.994658 L 333.35916 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.001225 323.274716 L 330.001225 323.156894 L 330.119048 323.033181 L 330.119048 322.314465 L 330.23687 322.072929 L 330.23687 320.75332 L 330.360583 320.517675 L 330.360583 318.714995 L 330.478406 318.355637 L 330.478406 316.317311 L 330.602119 315.957954 L 330.602119 313.913737 L 330.719941 313.678093 L 330.719941 311.751699 L 330.837763 311.516054 L 330.837763 310.072731 L 330.961477 309.954909 L 330.961477 309.118371 L 331.079299 308.994658 L 331.079299 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 327.721364 323.274716 L 327.721364 323.156894 L 327.839187 323.033181 L 327.839187 322.314465 L 327.9629 322.196643 L 327.9629 320.75332 L 328.080722 320.517675 L 328.080722 319.074353 L 328.198545 318.714995 L 328.198545 316.676669 L 328.322258 316.317311 L 328.322258 314.278986 L 328.44008 313.913737 L 328.44008 312.116948 L 328.557903 311.751699 L 328.557903 310.314267 L 328.681616 310.072731 L 328.681616 309.236193 L 328.799438 309.118371 L 328.799438 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 322.072929 L 325.677148 320.994856 L 325.800862 320.75332 L 325.800862 319.192175 L 325.924575 318.95653 L 325.924575 316.794492 L 326.036506 316.435134 L 326.036506 314.278986 L 326.160219 314.037451 L 326.160219 312.23477 L 326.283933 311.993234 L 326.283933 310.314267 L 326.395864 310.196445 L 326.395864 309.236193 L 326.519577 309.236193 L 326.519577 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.395864 308.876835 L 326.395864 308.994658 L 326.283933 309.118371 L 326.283933 309.954909 L 326.160219 310.072731 L 326.160219 311.639767 L 326.036506 311.875412 L 326.036506 313.795915 L 325.924575 314.037451 L 325.924575 316.193598 L 325.800862 316.435134 L 325.800862 318.47935 L 325.677148 318.714995 L 325.677148 320.034604 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 328.681616 308.876835 L 328.681616 308.994658 L 328.557903 308.994658 L 328.557903 309.837087 L 328.44008 309.954909 L 328.44008 311.392341 L 328.322258 311.639767 L 328.322258 313.436557 L 328.198545 313.795915 L 328.198545 315.716418 L 328.080722 316.075776 L 328.080722 318.114101 L 327.9629 318.47935 L 327.9629 320.27614 L 327.839187 320.635498 L 327.839187 321.955107 L 327.721364 322.196643 L 327.721364 323.033181 L 327.603542 323.156894 L 327.603542 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.961477 308.876835 L 330.961477 308.994658 L 330.837763 308.994658 L 330.837763 309.595551 L 330.719941 309.837087 L 330.719941 311.032983 L 330.602119 311.392341 L 330.602119 313.071308 L 330.478406 313.436557 L 330.478406 315.474882 L 330.360583 315.716418 L 330.360583 317.872565 L 330.23687 318.114101 L 330.23687 320.034604 L 330.119048 320.27614 L 330.119048 321.837285 L 330.001225 321.955107 L 330.001225 322.915358 L 329.877512 323.033181 L 329.877512 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.235447 308.876835 L 333.123515 308.994658 L 333.123515 309.595551 L 332.999802 309.837087 L 332.999802 311.032983 L 332.876089 311.392341 L 332.876089 313.071308 L 332.764158 313.436557 L 332.764158 315.474882 L 332.640444 315.716418 L 332.640444 317.872565 L 332.522622 318.114101 L 332.522622 319.798959 L 332.398908 320.034604 L 332.398908 321.595749 L 332.281086 321.837285 L 332.281086 322.797536 L 332.157373 322.915358 L 332.157373 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.521199 308.876835 L 335.397485 308.876835 L 335.397485 309.477729 L 335.279663 309.595551 L 335.279663 310.797338 L 335.161841 311.032983 L 335.161841 312.835663 L 335.038127 313.071308 L 335.038127 315.115524 L 334.920305 315.474882 L 334.920305 317.513208 L 334.802483 317.872565 L 334.802483 319.798959 L 334.678769 320.034604 L 334.678769 321.595749 L 334.560947 321.837285 L 334.560947 322.797536 L 334.443125 322.915358 L 334.443125 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.801059 308.876835 L 337.677346 308.876835 L 337.677346 309.354015 L 337.559524 309.477729 L 337.559524 310.555803 L 337.441702 310.797338 L 337.441702 312.476306 L 337.317988 312.835663 L 337.317988 314.756166 L 337.200166 315.115524 L 337.200166 317.15385 L 337.076453 317.513208 L 337.076453 319.439602 L 336.95863 319.798959 L 336.95863 321.354213 L 336.840808 321.595749 L 336.840808 322.673823 L 336.717095 322.797536 L 336.717095 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.120669 322.072929 L 339.120669 322.673823 L 339.002847 322.797536 L 339.002847 323.274716 L 338.879133 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.601921 307.798762 L 318.601921 324.234968 M 318.236672 324.594326 L 314.283735 324.594326 M 314.283735 307.557226 L 318.236672 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.236672 324.234968 L 318.236672 307.798762 L 314.283735 307.798762 M 314.283735 324.234968 L 318.236672 324.234968 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 307.557226 L 325.800862 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.761113 324.594326 L 326.878935 324.476504 L 326.878935 323.87561 L 327.002649 323.751897 L 327.002649 322.314465 L 327.120471 322.072929 L 327.120471 320.034604 L 327.238293 319.916782 L 327.238293 317.395385 L 327.356115 317.277563 L 327.356115 314.514631 L 327.479829 314.278986 L 327.479829 312.116948 L 327.603542 311.875412 L 327.603542 309.713373 L 327.721364 309.595551 L 327.721364 308.275942 L 327.839187 308.158119 L 327.839187 307.557226 L 327.9629 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 329.040974 324.594326 L 329.040974 324.476504 L 329.158796 324.476504 L 329.158796 323.751897 L 329.28251 323.634074 L 329.28251 322.072929 L 329.400332 321.955107 L 329.400332 319.916782 L 329.518154 319.675246 L 329.518154 317.277563 L 329.641867 317.036027 L 329.641867 314.278986 L 329.75969 314.155273 L 329.75969 311.751699 L 329.877512 311.516054 L 329.877512 309.595551 L 330.001225 309.477729 L 330.001225 308.158119 L 330.119048 308.034406 L 330.119048 307.557226 L 330.23687 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 331.320835 324.594326 L 331.320835 324.476504 L 331.438657 324.476504 L 331.438657 323.634074 L 331.556479 323.516252 L 331.556479 321.955107 L 331.680193 321.837285 L 331.680193 319.557424 L 331.803906 319.315888 L 331.803906 316.794492 L 331.921728 316.552956 L 331.921728 314.155273 L 332.039551 313.913737 L 332.039551 311.516054 L 332.157373 311.392341 L 332.157373 309.354015 L 332.281086 309.236193 L 332.281086 308.034406 L 332.398908 307.916584 L 332.398908 307.557226 L 332.522622 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.600696 324.594326 L 333.600696 324.476504 L 333.718518 324.35279 L 333.718518 323.516252 L 333.842231 323.392539 L 333.842231 321.713571 L 333.960054 321.477927 L 333.960054 319.315888 L 334.077876 319.074353 L 334.077876 316.552956 L 334.201589 316.435134 L 334.201589 313.678093 L 334.319411 313.436557 L 334.319411 311.392341 L 334.443125 311.156696 L 334.443125 309.236193 L 334.560947 309.118371 L 334.560947 307.916584 L 334.678769 307.916584 L 334.678769 307.557226 L 334.802483 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.880556 324.594326 L 335.880556 324.35279 L 335.998379 324.35279 L 335.998379 323.392539 L 336.122092 323.274716 L 336.122092 321.477927 L 336.239914 321.354213 L 336.239914 319.074353 L 336.357737 318.95653 L 336.357737 316.435134 L 336.48145 316.193598 L 336.48145 313.436557 L 336.599272 313.318735 L 336.599272 311.032983 L 336.717095 310.797338 L 336.717095 309.118371 L 336.840808 308.994658 L 336.840808 307.916584 L 336.95863 307.798762 L 336.95863 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 338.160417 324.594326 L 338.160417 324.234968 L 338.27824 324.234968 L 338.27824 323.274716 L 338.396062 323.033181 L 338.396062 321.354213 L 338.519775 321.118569 L 338.519775 318.838708 L 338.643489 318.47935 L 338.643489 316.317311 L 338.761311 315.957954 L 338.761311 313.436557 L 338.879133 313.071308 L 338.879133 310.797338 L 339.002847 310.555803 L 339.002847 308.876835 L 339.120669 308.753122 L 339.120669 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.160219 324.594326 L 326.283933 324.594326 L 326.283933 324.117146 L 326.395864 323.993432 L 326.395864 322.797536 L 326.519577 322.673823 L 326.519577 320.75332 L 326.643291 320.635498 L 326.643291 318.231923 L 326.761113 317.996279 L 326.761113 315.35706 L 326.878935 315.115524 L 326.878935 312.594128 L 327.002649 312.476306 L 327.002649 310.314267 L 327.120471 310.196445 L 327.120471 308.6353 L 327.238293 308.517477 L 327.238293 307.675048 L 327.356115 307.675048 L 327.356115 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 328.44008 324.594326 L 328.557903 324.594326 L 328.557903 323.993432 L 328.681616 323.993432 L 328.681616 322.673823 L 328.799438 322.556001 L 328.799438 320.393962 L 328.923152 320.27614 L 328.923152 317.996279 L 329.040974 317.872565 L 329.040974 315.115524 L 329.158796 314.873989 L 329.158796 312.476306 L 329.28251 312.23477 L 329.28251 310.196445 L 329.400332 309.954909 L 329.400332 308.393764 L 329.518154 308.275942 L 329.518154 307.675048 L 329.641867 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.719941 324.594326 L 330.837763 324.594326 L 330.837763 323.993432 L 330.961477 323.87561 L 330.961477 322.556001 L 331.079299 322.314465 L 331.079299 320.27614 L 331.197121 320.034604 L 331.197121 317.636921 L 331.320835 317.395385 L 331.320835 314.873989 L 331.438657 314.638344 L 331.438657 312.23477 L 331.556479 311.993234 L 331.556479 309.837087 L 331.680193 309.713373 L 331.680193 308.275942 L 331.803906 308.275942 L 331.803906 307.557226 L 331.921728 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.999802 324.594326 L 333.123515 324.476504 L 333.123515 323.87561 L 333.235447 323.751897 L 333.235447 322.196643 L 333.35916 322.072929 L 333.35916 320.034604 L 333.482873 319.798959 L 333.482873 317.395385 L 333.600696 317.15385 L 333.600696 314.514631 L 333.718518 314.278986 L 333.718518 311.875412 L 333.842231 311.639767 L 333.842231 309.713373 L 333.960054 309.595551 L 333.960054 308.275942 L 334.077876 308.158119 L 334.077876 307.557226 L 334.201589 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.279663 324.594326 L 335.279663 324.476504 L 335.397485 324.476504 L 335.397485 323.634074 L 335.521199 323.634074 L 335.521199 322.072929 L 335.639021 321.955107 L 335.639021 319.798959 L 335.762734 319.675246 L 335.762734 317.15385 L 335.880556 317.036027 L 335.880556 314.278986 L 335.998379 314.037451 L 335.998379 311.639767 L 336.122092 311.516054 L 336.122092 309.595551 L 336.239914 309.477729 L 336.239914 308.158119 L 336.357737 308.034406 L 336.357737 307.557226 L 336.48145 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.559524 324.594326 L 337.559524 324.476504 L 337.677346 324.476504 L 337.677346 323.634074 L 337.801059 323.516252 L 337.801059 321.955107 L 337.924773 321.837285 L 337.924773 319.439602 L 338.036704 319.315888 L 338.036704 316.794492 L 338.160417 316.552956 L 338.160417 314.037451 L 338.27824 313.795915 L 338.27824 311.516054 L 338.396062 311.274518 L 338.396062 309.354015 L 338.519775 309.236193 L 338.519775 308.034406 L 338.643489 307.916584 L 338.643489 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.120669 322.072929 L 339.120669 308.158119 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 307.557226 L 325.677148 320.034604 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.120669 323.392539 L 339.120669 323.156894 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.677148 322.072929 L 325.677148 323.634074 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.236672 307.557226 L 318.236672 307.798762 M 318.236672 324.234968 L 318.236672 324.594326 M 318.236672 307.798762 L 318.601921 307.798762 M 318.601921 324.234968 L 318.236672 324.234968 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.478208 307.798762 L 318.236672 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.236672 324.476504 L 318.478208 324.234968 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.837566 323.392539 L 318.719743 323.516252 L 318.601921 323.634074 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.601921 308.517477 L 318.837566 308.753122 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip7)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.92335 323.274716 L 341.041172 323.156894 L 341.158994 323.033181 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip8)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 341.158994 309.118371 L 341.041172 308.994658 L 340.92335 308.876835 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip9)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.92335 323.274716 L 339.120669 323.274716 M 339.002847 323.274716 L 338.879133 323.274716 M 336.840808 323.274716 L 336.599272 323.274716 M 334.560947 323.274716 L 334.443125 323.274716 M 332.281086 323.274716 L 332.157373 323.274716 M 330.001225 323.274716 L 329.877512 323.274716 M 327.721364 323.274716 L 327.603542 323.274716 M 325.677148 323.274716 L 318.837566 323.274716 M 340.92335 308.876835 L 339.120669 308.876835 M 337.924773 308.876835 L 337.801059 308.876835 M 335.639021 308.876835 L 335.521199 308.876835 M 333.35916 308.876835 L 333.235447 308.876835 M 331.079299 308.876835 L 330.961477 308.876835 M 328.799438 308.876835 L 328.681616 308.876835 M 326.519577 308.876835 L 326.395864 308.876835 M 325.677148 308.876835 L 318.837566 308.876835 M 338.160417 324.594326 L 337.559524 324.594326 M 335.880556 324.594326 L 335.279663 324.594326 M 333.600696 324.594326 L 332.999802 324.594326 M 331.320835 324.594326 L 330.719941 324.594326 M 329.040974 324.594326 L 328.44008 324.594326 M 326.761113 324.594326 L 326.283933 324.594326 M 339.120669 307.557226 L 338.643489 307.557226 M 336.95863 307.557226 L 336.48145 307.557226 M 334.678769 307.557226 L 334.201589 307.557226 M 332.398908 307.557226 L 331.921728 307.557226 M 330.23687 307.557226 L 329.641867 307.557226 M 327.9629 307.557226 L 327.356115 307.557226 M 327.603542 323.274716 L 326.761113 324.594326 M 329.877512 323.274716 L 329.040974 324.594326 M 332.157373 323.274716 L 331.320835 324.594326 M 334.443125 323.274716 L 333.600696 324.594326 M 336.717095 323.274716 L 335.880556 324.594326 M 338.879133 323.274716 L 338.160417 324.594326 M 325.677148 307.557226 L 326.395864 308.876835 M 327.9629 307.557226 L 328.681616 308.876835 M 330.23687 307.557226 L 330.961477 308.876835 M 332.522622 307.557226 L 333.235447 308.876835 M 334.802483 307.557226 L 335.521199 308.876835 M 336.95863 307.557226 L 337.801059 308.876835 M 326.160219 324.594326 L 325.677148 323.634074 M 328.44008 324.594326 L 327.721364 323.274716 M 330.719941 324.594326 L 330.001225 323.274716 M 332.999802 324.594326 L 332.281086 323.274716 M 335.279663 324.594326 L 334.443125 323.274716 M 337.559524 324.594326 L 336.717095 323.274716 M 339.120669 323.392539 L 339.002847 323.274716 M 337.924773 308.876835 L 338.643489 307.557226 M 335.639021 308.876835 L 336.357737 307.557226 M 333.35916 308.876835 L 334.077876 307.557226 M 331.079299 308.876835 L 331.921728 307.557226 M 328.799438 308.876835 L 329.641867 307.557226 M 326.519577 308.876835 L 327.356115 307.557226 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.482393 21.838227 L 32.040493 21.838227 L 32.040493 48.8372 L 36.482393 48.8372 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.075774 27.835381 L 28.075774 42.957869 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.682559 35.393679 L 28.800381 35.275857 L 28.800381 35.034321 L 28.924094 34.916499 L 28.924094 34.798677 L 29.041916 34.674963 L 29.041916 34.557141 L 29.159739 34.557141 L 29.283452 34.439319 L 29.395383 34.439319 L 29.519097 34.315605 L 29.760632 34.315605 L 29.878455 34.197783 L 30.361526 34.197783 L 30.479348 34.315605 L 30.720884 34.315605 L 30.838706 34.439319 L 30.962419 34.439319 L 30.962419 34.557141 L 31.080242 34.557141 L 31.321777 34.798677 L 31.321777 34.916499 L 31.4396 35.034321 L 31.4396 35.753037 L 31.321777 35.87675 L 31.321777 35.994573 L 31.198064 35.994573 L 30.838706 36.353931 L 30.720884 36.353931 L 30.603061 36.477644 L 29.64281 36.477644 L 29.519097 36.353931 L 29.395383 36.353931 L 29.283452 36.236108 L 29.159739 36.236108 L 29.041916 36.118286 L 29.041916 35.994573 L 28.924094 35.994573 L 28.924094 35.87675 L 28.800381 35.753037 L 28.800381 35.517393 Z M 28.682559 35.393679 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.4396 27.835381 L 28.682559 27.835381 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.682559 42.957869 L 28.924094 42.957869 L 29.041916 42.834155 L 31.198064 42.834155 L 31.321777 42.957869 L 31.4396 42.957869 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.840129 27.476023 L 27.840129 28.436274 L 27.963843 28.554097 L 27.963843 36.236108 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.879878 26.875129 L 26.879878 27.116665 L 26.9977 27.116665 L 26.9977 27.717558 L 27.121413 27.835381 L 27.121413 28.436274 L 27.239236 28.67781 L 27.239236 29.396526 L 27.357058 29.638061 L 27.357058 30.4746 L 27.480771 30.716135 L 27.480771 31.676387 L 27.604485 31.912031 L 27.604485 32.75446 L 27.716416 33.119709 L 27.716416 34.197783 L 27.840129 34.439319 L 27.840129 35.393679 L 27.963843 35.635215 L 27.963843 36.236108 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.879878 35.393679 L 26.879878 26.875129 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.239236 43.794407 L 27.121413 43.794407 L 27.121413 41.997617 L 26.9977 41.873904 L 26.9977 37.67354 L 26.879878 37.437896 L 26.879878 35.393679 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.639765 44.153765 L 23.521943 44.035942 L 23.521943 43.193513 L 23.39823 43.075691 L 23.39823 41.037366 L 23.280408 40.79583 L 23.280408 37.915076 L 23.162585 37.67354 L 23.162585 34.439319 L 23.038872 34.197783 L 23.038872 31.075493 L 22.92105 30.957671 L 22.92105 28.436274 L 22.803227 28.318452 L 22.803227 26.875129 L 22.679514 26.875129 L 22.679514 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.442446 44.153765 L 25.442446 43.676585 L 25.318733 43.552871 L 25.318733 41.873904 L 25.200911 41.756082 L 25.200911 39.116863 L 25.077197 38.875327 L 25.077197 35.753037 L 24.959375 35.517393 L 24.959375 32.27728 L 24.841553 32.035745 L 24.841553 29.15499 L 24.717839 29.037168 L 24.717839 27.234487 L 24.600017 27.116665 L 24.600017 26.639485 L 24.482195 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.879878 35.393679 L 26.879878 33.355354 L 26.762056 33.119709 L 26.762056 30.356777 L 26.638342 30.115242 L 26.638342 27.835381 L 26.52052 27.717558 L 26.52052 26.639485 L 26.396807 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 22.196443 27.835381 L 22.196443 28.67781 L 22.320156 28.795632 L 22.320156 30.716135 L 22.443869 30.957671 L 22.443869 33.479067 L 22.561692 33.838425 L 22.561692 36.595466 L 22.679514 36.954824 L 22.679514 39.476221 L 22.803227 39.717756 L 22.803227 41.638259 L 22.92105 41.873904 L 22.92105 42.957869 L 23.038872 42.957869 L 23.038872 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.999123 27.717558 L 23.999123 27.959094 L 24.122837 28.076916 L 24.122837 29.396526 L 24.240659 29.514348 L 24.240659 31.912031 L 24.358481 32.035745 L 24.358481 34.798677 L 24.482195 35.034321 L 24.482195 37.797253 L 24.600017 37.915076 L 24.600017 40.436472 L 24.717839 40.678008 L 24.717839 42.356975 L 24.841553 42.474797 L 24.841553 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.801804 27.717558 L 25.919626 27.717558 L 25.919626 28.318452 L 26.037449 28.554097 L 26.037449 30.115242 L 26.161162 30.356777 L 26.161162 32.872283 L 26.278984 33.231641 L 26.278984 35.753037 L 26.396807 36.118286 L 26.396807 38.993149 L 26.52052 39.234685 L 26.52052 41.278901 L 26.638342 41.514546 L 26.638342 42.716333 L 26.762056 42.834155 L 26.762056 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.716416 27.717558 L 27.716416 27.835381 L 27.840129 27.835381 L 27.840129 28.913454 L 27.963843 29.037168 L 27.963843 30.233064 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.762056 26.639485 L 26.879878 26.639485 L 26.879878 26.875129 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24.959375 26.639485 L 24.959375 26.875129 L 25.077197 26.998843 L 25.077197 28.554097 L 25.200911 28.67781 L 25.200911 31.193315 L 25.318733 31.317029 L 25.318733 34.557141 L 25.442446 34.674963 L 25.442446 38.032898 L 25.560268 38.156611 L 25.560268 41.037366 L 25.678091 41.155188 L 25.678091 43.193513 L 25.801804 43.317227 L 25.801804 44.153765 L 25.919626 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.038872 26.639485 L 23.162585 26.639485 L 23.162585 27.717558 L 23.280408 27.835381 L 23.280408 30.115242 L 23.39823 30.233064 L 23.39823 33.231641 L 23.521943 33.479067 L 23.521943 36.713289 L 23.639765 36.954824 L 23.639765 39.959292 L 23.763479 40.194937 L 23.763479 42.474797 L 23.881301 42.59262 L 23.881301 43.912229 L 23.999123 43.912229 L 23.999123 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.837085 41.396724 L 21.837085 41.756082 L 21.960798 41.873904 L 21.960798 43.552871 L 22.07862 43.676585 L 22.07862 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.60144 34.197783 L 21.60144 35.393679 L 21.719263 35.753037 L 21.719263 38.875327 L 21.837085 39.234685 L 21.837085 40.194937 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.359905 28.076916 L 21.359905 28.913454 L 21.477727 29.278703 L 21.477727 32.035745 L 21.60144 32.395102 L 21.60144 32.75446 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.960798 27.835381 L 21.960798 29.037168 L 22.07862 29.278703 L 22.07862 31.317029 L 22.196443 31.552673 L 22.196443 33.838425 L 22.320156 34.197783 L 22.320156 36.954824 L 22.443869 37.314182 L 22.443869 39.835579 L 22.561692 40.071223 L 22.561692 41.997617 L 22.679514 42.11544 L 22.679514 42.957869 L 22.803227 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.763479 27.717558 L 23.763479 28.194739 L 23.881301 28.318452 L 23.881301 29.638061 L 23.999123 29.873706 L 23.999123 32.035745 L 24.122837 32.395102 L 24.122837 35.275857 L 24.240659 35.635215 L 24.240659 38.156611 L 24.358481 38.515969 L 24.358481 40.678008 L 24.482195 40.913652 L 24.482195 42.474797 L 24.600017 42.59262 L 24.600017 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.560268 27.717558 L 25.678091 27.717558 L 25.678091 28.554097 L 25.801804 28.795632 L 25.801804 30.4746 L 25.919626 30.716135 L 25.919626 33.119709 L 26.037449 33.355354 L 26.037449 36.353931 L 26.161162 36.713289 L 26.161162 39.116863 L 26.278984 39.476221 L 26.278984 41.396724 L 26.396807 41.638259 L 26.396807 42.834155 L 26.52052 42.957869 L 26.52052 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.480771 27.717558 L 27.480771 27.835381 L 27.604485 27.959094 L 27.604485 29.278703 L 27.716416 29.396526 L 27.716416 31.440742 L 27.840129 31.552673 L 27.840129 34.315605 L 27.963843 34.557141 L 27.963843 36.236108 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 26.751416 L 15.239038 26.639485 L 15.121216 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.638144 27.717558 L 14.638144 28.194739 L 14.761858 28.194739 L 14.761858 29.755884 L 14.87968 29.873706 L 14.87968 32.395102 L 14.997502 32.636638 L 14.997502 35.393679 L 15.121216 35.635215 L 15.121216 38.274434 L 15.239038 38.515969 L 15.239038 39.234685 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.359905 39.594043 L 21.359905 36.713289 L 21.236191 36.477644 L 21.236191 34.439319 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.719263 44.153765 L 21.719263 43.912229 L 21.60144 43.794407 L 21.60144 42.474797 L 21.477727 42.233262 L 21.477727 41.997617 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 13.677893 26.639485 L 13.677893 26.751416 L 13.801606 26.751416 L 13.801606 28.076916 L 13.919428 28.194739 L 13.919428 30.592422 L 14.037251 30.833957 L 14.037251 33.838425 L 14.160964 34.07407 L 14.160964 37.314182 L 14.278786 37.555718 L 14.278786 40.554294 L 14.396609 40.678008 L 14.396609 42.834155 L 14.520322 42.957869 L 14.520322 44.035942 L 14.638144 44.035942 L 14.638144 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.396609 27.717558 L 14.396609 28.318452 L 14.520322 28.554097 L 14.520322 30.115242 L 14.638144 30.4746 L 14.638144 32.518816 L 14.761858 32.872283 L 14.761858 35.517393 L 14.87968 35.87675 L 14.87968 38.639683 L 14.997502 38.875327 L 14.997502 41.037366 L 15.121216 41.278901 L 15.121216 42.59262 L 15.239038 42.716333 L 15.239038 42.957869 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.640991 44.153765 L 8.517277 44.153765 L 8.517277 43.44094 L 8.399455 43.193513 L 8.399455 41.278901 L 8.281633 40.913652 L 8.281633 38.156611 L 8.15792 37.67354 L 8.15792 34.916499 L 8.040097 34.439319 L 8.040097 31.317029 L 7.922275 31.075493 L 7.922275 28.554097 L 7.798562 28.318452 L 7.798562 26.998843 L 7.680739 26.875129 L 7.680739 26.751416 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.443672 44.153765 L 10.443672 43.794407 L 10.319958 43.676585 L 10.319958 42.11544 L 10.196245 41.873904 L 10.196245 39.352507 L 10.078423 39.116863 L 10.078423 35.994573 L 9.9606 35.753037 L 9.9606 32.518816 L 9.842778 32.27728 L 9.842778 29.514348 L 9.719065 29.278703 L 9.719065 27.352309 L 9.601242 27.352309 L 9.601242 26.639485 L 9.477529 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.358283 44.153765 L 12.358283 44.035942 L 12.240461 44.035942 L 12.240461 42.834155 L 12.122639 42.716333 L 12.122639 40.436472 L 11.998925 40.31865 L 11.998925 37.314182 L 11.881103 37.072646 L 11.881103 33.714712 L 11.763281 33.59689 L 11.763281 30.4746 L 11.639568 30.356777 L 11.639568 28.076916 L 11.521745 27.959094 L 11.521745 26.751416 L 11.398032 26.751416 L 11.398032 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.278786 44.153765 L 14.160964 44.153765 L 14.160964 43.44094 L 14.037251 43.317227 L 14.037251 41.514546 L 13.919428 41.278901 L 13.919428 38.515969 L 13.801606 38.274434 L 13.801606 35.034321 L 13.677893 34.916499 L 13.677893 31.676387 L 13.560071 31.440742 L 13.560071 28.913454 L 13.442248 28.67781 L 13.442248 26.998843 L 13.318535 26.998843 L 13.318535 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.079846 27.835381 L 7.680739 26.751416 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.079846 27.835381 L 7.197668 27.835381 L 7.197668 28.913454 L 7.321381 29.15499 L 7.321381 31.075493 L 7.439204 31.440742 L 7.439204 33.956248 L 7.557026 34.315605 L 7.557026 37.072646 L 7.680739 37.437896 L 7.680739 39.717756 L 7.798562 39.959292 L 7.798562 41.873904 L 7.922275 41.997617 L 7.922275 42.957869 L 8.040097 42.957869 L 8.040097 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9.000349 27.717558 L 9.000349 28.076916 L 9.118171 28.194739 L 9.118171 29.514348 L 9.235993 29.873706 L 9.235993 31.912031 L 9.359707 32.27728 L 9.359707 35.034321 L 9.477529 35.393679 L 9.477529 38.032898 L 9.601242 38.274434 L 9.601242 40.79583 L 9.719065 41.037366 L 9.719065 42.474797 L 9.842778 42.59262 L 9.842778 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.803029 27.717558 L 10.920852 27.717558 L 10.920852 28.554097 L 11.038674 28.67781 L 11.038674 30.356777 L 11.162387 30.592422 L 11.162387 32.872283 L 11.28021 33.231641 L 11.28021 36.236108 L 11.398032 36.595466 L 11.398032 38.993149 L 11.521745 39.352507 L 11.521745 41.514546 L 11.639568 41.756082 L 11.639568 42.834155 L 11.763281 42.834155 L 11.763281 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.717641 27.717558 L 12.717641 27.835381 L 12.841355 27.835381 L 12.841355 29.15499 L 12.959177 29.396526 L 12.959177 31.193315 L 13.076999 31.552673 L 13.076999 33.956248 L 13.200713 34.315605 L 13.200713 37.314182 L 13.318535 37.67354 L 13.318535 39.959292 L 13.442248 40.194937 L 13.442248 42.11544 L 13.560071 42.233262 L 13.560071 42.957869 L 13.677893 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11.763281 26.639485 L 11.881103 26.639485 L 11.881103 27.476023 L 11.998925 27.593845 L 11.998925 29.514348 L 12.122639 29.755884 L 12.122639 32.636638 L 12.240461 32.75446 L 12.240461 35.994573 L 12.358283 36.236108 L 12.358283 39.352507 L 12.481997 39.594043 L 12.481997 42.11544 L 12.599819 42.233262 L 12.599819 43.794407 L 12.717641 43.794407 L 12.717641 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9.9606 26.639485 L 9.9606 26.998843 L 10.078423 26.998843 L 10.078423 28.67781 L 10.196245 28.795632 L 10.196245 31.440742 L 10.319958 31.552673 L 10.319958 34.674963 L 10.443672 34.916499 L 10.443672 38.156611 L 10.561494 38.392256 L 10.561494 41.396724 L 10.679316 41.514546 L 10.679316 43.44094 L 10.803029 43.44094 L 10.803029 44.153765 L 10.920852 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.040097 26.639485 L 8.15792 26.751416 L 8.15792 27.835381 L 8.281633 27.959094 L 8.281633 30.233064 L 8.399455 30.4746 L 8.399455 33.59689 L 8.517277 33.838425 L 8.517277 37.072646 L 8.640991 37.314182 L 8.640991 40.31865 L 8.764704 40.554294 L 8.764704 42.716333 L 8.876635 42.834155 L 8.876635 44.035942 L 9.000349 44.035942 L 9.000349 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.237417 26.751416 L 6.237417 27.352309 L 6.36113 27.352309 L 6.36113 29.278703 L 6.478952 29.514348 L 6.478952 32.27728 L 6.602666 32.518816 L 6.602666 35.753037 L 6.720488 35.994573 L 6.720488 39.116863 L 6.83831 39.352507 L 6.83831 41.873904 L 6.962024 42.11544 L 6.962024 43.676585 L 7.079846 43.794407 L 7.079846 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.83831 27.835381 L 6.962024 27.959094 L 6.962024 29.15499 L 7.079846 29.396526 L 7.079846 31.193315 L 7.197668 31.552673 L 7.197668 34.197783 L 7.321381 34.557141 L 7.321381 37.437896 L 7.439204 37.797253 L 7.439204 39.959292 L 7.557026 40.31865 L 7.557026 42.11544 L 7.680739 42.233262 L 7.680739 43.075691 L 7.798562 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.764704 27.717558 L 8.764704 28.194739 L 8.876635 28.318452 L 8.876635 29.873706 L 9.000349 30.233064 L 9.000349 32.395102 L 9.118171 32.75446 L 9.118171 35.275857 L 9.235993 35.635215 L 9.235993 38.515969 L 9.359707 38.751614 L 9.359707 40.913652 L 9.477529 41.155188 L 9.477529 42.474797 L 9.601242 42.59262 L 9.601242 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.561494 27.717558 L 10.679316 27.717558 L 10.679316 28.554097 L 10.803029 28.795632 L 10.803029 30.716135 L 10.920852 31.075493 L 10.920852 33.355354 L 11.038674 33.714712 L 11.038674 36.353931 L 11.162387 36.713289 L 11.162387 39.476221 L 11.28021 39.717756 L 11.28021 41.638259 L 11.398032 41.756082 L 11.398032 42.957869 L 11.521745 42.957869 L 11.521745 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.481997 27.717558 L 12.481997 27.959094 L 12.599819 28.076916 L 12.599819 29.15499 L 12.717641 29.396526 L 12.717641 31.676387 L 12.841355 32.035745 L 12.841355 34.557141 L 12.959177 34.916499 L 12.959177 37.437896 L 13.076999 37.797253 L 13.076999 40.31865 L 13.200713 40.678008 L 13.200713 42.233262 L 13.318535 42.356975 L 13.318535 43.075691 L 13.442248 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.237417 26.751416 L 6.83831 27.835381 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.799985 44.153765 L 4.799985 43.676585 L 4.682163 43.552871 L 4.682163 41.997617 L 4.558449 41.756082 L 4.558449 39.116863 L 4.440627 38.875327 L 4.440627 35.635215 L 4.322805 35.275857 L 4.322805 32.035745 L 4.199091 31.794209 L 4.199091 31.552673 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.480376 27.352309 L 3.480376 27.234487 L 3.604089 27.234487 L 3.604089 27.352309 L 3.721911 27.352309 L 3.721911 27.717558 L 3.839733 27.835381 L 3.839733 28.318452 L 3.963447 28.436274 L 3.963447 29.278703 L 4.075378 29.396526 L 4.075378 30.356777 L 4.199091 30.592422 L 4.199091 31.552673 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.356662 27.717558 L 3.356662 27.959094 L 3.480376 28.076916 L 3.480376 29.396526 L 3.604089 29.514348 L 3.604089 31.912031 L 3.721911 32.27728 L 3.721911 34.674963 L 3.839733 35.034321 L 3.839733 37.67354 L 3.963447 38.032898 L 3.963447 40.554294 L 4.075378 40.79583 L 4.075378 42.233262 L 4.199091 42.474797 L 4.199091 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.159343 27.717558 L 5.283056 27.717558 L 5.283056 28.318452 L 5.400878 28.554097 L 5.400878 30.115242 L 5.518701 30.356777 L 5.518701 32.872283 L 5.642414 33.231641 L 5.642414 35.87675 L 5.760236 36.236108 L 5.760236 38.639683 L 5.878059 38.993149 L 5.878059 41.278901 L 6.001772 41.514546 L 6.001772 42.716333 L 6.119594 42.834155 L 6.119594 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.079846 27.717558 L 7.079846 27.835381 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.720488 44.153765 L 6.720488 44.035942 L 6.602666 43.912229 L 6.602666 42.59262 L 6.478952 42.474797 L 6.478952 40.071223 L 6.36113 39.959292 L 6.36113 36.837002 L 6.237417 36.595466 L 6.237417 33.355354 L 6.119594 33.119709 L 6.119594 30.115242 L 6.001772 29.997419 L 6.001772 27.835381 L 5.878059 27.717558 L 5.878059 26.639485 L 5.760236 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.680739 26.751416 L 7.680739 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.199091 31.552673 L 4.199091 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.121018 27.959094 L 3.121018 28.076916 L 3.23884 28.194739 L 3.23884 31.075493 L 3.356662 31.440742 L 3.356662 36.236108 L 3.480376 36.595466 L 3.480376 40.79583 L 3.604089 41.037366 L 3.604089 43.44094 L 3.721911 43.44094 L 3.721911 43.552871 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.121018 27.959094 L 3.121018 27.717558 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.997304 42.957869 L 2.997304 27.835381 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.322805 26.639485 L 4.322805 26.875129 L 4.440627 26.998843 L 4.440627 28.554097 L 4.558449 28.67781 L 4.558449 31.193315 L 4.682163 31.440742 L 4.682163 34.557141 L 4.799985 34.798677 L 4.799985 38.032898 L 4.923698 38.156611 L 4.923698 41.037366 L 5.041521 41.155188 L 5.041521 43.193513 L 5.159343 43.317227 L 5.159343 44.153765 L 5.283056 44.153765 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.119594 26.639485 L 6.237417 26.639485 L 6.237417 26.751416 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.121018 27.959094 L 3.121018 28.076916 L 3.23884 28.194739 L 3.23884 29.755884 L 3.356662 29.997419 L 3.356662 32.153567 L 3.480376 32.518816 L 3.480376 35.158035 L 3.604089 35.517393 L 3.604089 38.156611 L 3.721911 38.515969 L 3.721911 40.678008 L 3.839733 40.913652 L 3.839733 42.474797 L 3.963447 42.59262 L 3.963447 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.923698 27.717558 L 5.041521 27.717558 L 5.041521 28.436274 L 5.159343 28.67781 L 5.159343 30.592422 L 5.283056 30.833957 L 5.283056 33.231641 L 5.400878 33.59689 L 5.400878 36.236108 L 5.518701 36.595466 L 5.518701 39.234685 L 5.642414 39.476221 L 5.642414 41.514546 L 5.760236 41.638259 L 5.760236 42.834155 L 5.878059 42.834155 L 5.878059 43.075691 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.83831 27.717558 L 6.83831 27.835381 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.83831 27.835381 L 7.079846 27.835381 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip10)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1.076801 42.957869 L 1.076801 27.835381 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.717443 42.59262 L 0.717443 28.076916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 46.675161 L 15.239038 45.231839 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 35.393679 L 15.239038 45.231839 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 25.55552 L 15.239038 35.393679 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 25.55552 L 15.239038 23.994375 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 45.231839 L 15.239038 45.956445 L 15.35686 46.19209 L 15.35686 46.557339 L 15.480573 46.675161 L 15.480573 46.916697 L 15.604287 47.158233 L 15.716218 47.393877 L 15.716218 47.51759 L 15.839931 47.753235 L 15.963645 47.994771 L 16.075576 48.236306 L 16.199289 48.477842 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.439402 45.355552 L 19.79876 45.355552 L 19.79876 44.996194 L 19.680937 44.754658 L 19.680937 44.277478 L 19.557224 44.035942 L 19.557224 43.676585 L 19.439402 43.44094 L 19.321579 43.193513 L 19.321579 43.075691 L 19.197866 42.834155 L 19.080044 42.59262 L 18.962221 42.356975 L 18.838508 42.11544 L 18.720686 41.873904 L 16.199289 41.873904 L 16.075576 42.11544 L 15.963645 42.356975 L 15.839931 42.59262 L 15.716218 42.834155 L 15.716218 43.075691 L 15.604287 43.193513 L 15.480573 43.44094 L 15.480573 43.676585 L 15.35686 43.794407 L 15.35686 44.277478 L 15.239038 44.3953 L 15.239038 45.231839 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16.199289 48.477842 L 18.720686 48.477842 L 18.838508 48.236306 L 18.962221 48.118484 L 18.962221 47.994771 L 19.080044 47.753235 L 19.197866 47.635413 L 19.197866 47.51759 L 19.321579 47.276055 L 19.321579 47.158233 L 19.439402 47.034519 L 19.439402 46.916697 L 19.557224 46.798875 L 19.557224 46.557339 L 19.680937 46.315803 L 19.680937 46.074268 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 46.074268 L 19.439402 45.355552 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.60144 26.515771 L 22.196443 26.156413 L 21.359905 26.0327 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.557224 24.23591 L 19.557224 23.994375 L 19.439402 23.752839 L 19.197866 23.275659 L 19.197866 23.034123 L 19.080044 22.798479 L 18.962221 22.674765 L 18.838508 22.556943 L 18.838508 22.439121 L 18.720686 22.315407 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 23.752839 L 19.557224 24.23591 M 22.196443 27.835381 L 21.118369 28.076916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.557224 24.23591 L 19.557224 24.713091 L 19.680937 25.196162 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 25.313984 L 19.680937 25.196162 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.680937 25.55552 L 19.680937 25.196162 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 18.720686 22.315407 L 16.199289 22.315407 L 16.075576 22.556943 L 15.963645 22.674765 L 15.716218 23.157837 L 15.716218 23.393481 L 15.604287 23.635017 L 15.480573 23.752839 L 15.480573 23.994375 L 15.35686 24.23591 L 15.35686 24.595268 L 15.239038 24.836804 L 15.239038 26.274236 L 15.35686 26.515771 L 15.35686 26.875129 L 15.480573 27.116665 L 15.480573 27.234487 L 15.604287 27.476023 L 15.716218 27.717558 L 15.716218 27.959094 L 15.839931 28.076916 L 15.963645 28.318452 L 16.075576 28.554097 L 16.199289 28.795632 L 18.720686 28.795632 L 18.838508 28.554097 L 18.962221 28.318452 L 19.080044 28.076916 L 19.197866 27.959094 L 19.321579 27.717558 L 19.321579 27.476023 L 19.439402 27.234487 L 19.557224 27.116665 L 19.557224 26.639485 L 19.680937 26.515771 L 19.680937 25.914878 L 19.79876 25.673342 L 19.79876 25.55552 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 31.912031 L 19.680937 31.676387 L 19.680937 30.592422 L 19.557224 30.356777 L 19.557224 29.873706 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 35.393679 L 19.79876 35.034321 L 19.680937 34.557141 L 19.680937 33.479067 L 19.557224 33.119709 L 19.557224 32.27728 L 19.439402 31.912031 L 19.321579 31.440742 L 19.321579 31.075493 L 19.197866 30.592422 L 19.080044 30.233064 L 18.962221 29.755884 L 18.838508 29.278703 L 18.720686 28.795632 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 29.638061 L 19.557224 29.873706 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.359905 32.518816 L 22.196443 33.838425 L 21.118369 34.439319 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 33.714712 L 22.196443 33.838425 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 20.872085 L 21.118369 49.797451 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 20.872085 L 19.79876 49.797451 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 25.673342 L 22.196443 27.835381 M 21.118369 23.393481 L 22.196443 26.156413 M 19.79876 46.916697 L 19.680937 46.798875 M 21.118369 43.794407 L 21.359905 43.552871 M 21.60144 44.153765 L 21.719263 44.035942 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 47.393877 L 22.196443 44.513123 L 21.118369 44.035942 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 38.875327 L 19.557224 38.751614 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.680937 40.436472 L 19.680937 39.594043 L 19.557224 39.234685 L 19.557224 38.751614 L 19.680937 38.751614 L 19.79876 38.639683 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 18.720686 41.873904 L 18.838508 41.396724 L 18.962221 41.037366 L 19.197866 40.071223 L 19.321579 39.717756 L 19.321579 39.234685 L 19.557224 38.515969 L 19.557224 37.67354 L 19.680937 37.314182 L 19.680937 36.118286 L 19.79876 35.753037 L 19.79876 35.393679 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16.199289 28.795632 L 16.075576 29.278703 L 15.963645 29.755884 L 15.839931 30.233064 L 15.716218 30.592422 L 15.716218 31.075493 L 15.604287 31.440742 L 15.480573 31.912031 L 15.480573 32.27728 L 15.35686 32.636638 L 15.35686 33.479067 L 15.239038 33.838425 L 15.239038 36.837002 L 15.35686 37.314182 L 15.35686 38.032898 L 15.480573 38.515969 L 15.480573 38.875327 L 15.604287 39.234685 L 15.716218 39.717756 L 15.716218 40.071223 L 15.963645 41.037366 L 16.075576 41.396724 L 16.199289 41.873904 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 39.234685 L 22.196443 40.79583 L 21.118369 42.716333 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip11)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 45.355552 L 19.922473 45.355552 M 32.040493 42.957869 L 31.4396 42.957869 M 28.682559 42.957869 L 28.075774 42.957869 M 32.040493 27.835381 L 31.4396 27.835381 M 28.682559 27.835381 L 28.075774 27.835381 M 28.075774 42.957869 L 27.239236 43.794407 M 28.075774 27.835381 L 27.840129 27.476023 M 23.639765 44.153765 L 23.038872 43.075691 M 25.442446 44.153765 L 24.841553 43.075691 M 22.07862 27.593845 L 22.679514 26.639485 M 23.999123 27.717558 L 24.482195 26.639485 M 25.801804 27.717558 L 26.396807 26.639485 M 27.716416 27.717558 L 27.840129 27.476023 M 27.239236 43.794407 L 26.762056 43.075691 M 26.879878 26.639485 L 27.480771 27.717558 M 24.959375 26.639485 L 25.560268 27.717558 M 23.038872 26.639485 L 23.763479 27.717558 M 22.803227 43.075691 L 22.07862 44.153765 M 24.717839 43.075691 L 23.999123 44.153765 M 26.52052 43.075691 L 25.919626 44.153765 M 14.520322 27.717558 L 15.121216 26.639485 M 21.719263 44.153765 L 21.118369 43.075691 M 13.677893 26.639485 L 14.396609 27.717558 M 15.239038 43.193513 L 14.638144 44.153765 M 8.517277 44.153765 L 8.040097 43.075691 M 10.443672 44.153765 L 9.842778 43.075691 M 12.358283 44.153765 L 11.763281 43.075691 M 14.160964 44.153765 L 13.677893 43.075691 M 9.000349 27.717558 L 9.477529 26.639485 M 10.803029 27.717558 L 11.398032 26.639485 M 12.717641 27.717558 L 13.318535 26.639485 M 11.763281 26.639485 L 12.481997 27.717558 M 9.9606 26.639485 L 10.561494 27.717558 M 8.040097 26.639485 L 8.764704 27.717558 M 7.798562 43.075691 L 7.079846 44.153765 M 9.601242 43.075691 L 9.000349 44.153765 M 11.521745 43.075691 L 10.920852 44.153765 M 13.442248 43.075691 L 12.717641 44.153765 M 4.799985 44.153765 L 4.199091 43.075691 M 3.356662 27.717558 L 3.480376 27.352309 M 5.159343 27.717558 L 5.760236 26.639485 M 7.079846 27.717558 L 7.680739 26.639485 M 6.720488 44.153765 L 6.119594 43.075691 M 2.997304 27.835381 L 3.121018 27.717558 M 3.480376 27.352309 L 4.199091 26.639485 M 2.997304 42.957869 L 3.721911 43.552871 M 4.322805 26.639485 L 4.923698 27.717558 M 6.237417 26.639485 L 6.83831 27.717558 M 4.075378 43.075691 L 3.721911 43.552871 M 5.878059 43.075691 L 5.283056 44.153765 M 3.121018 27.717558 L 3.356662 27.717558 M 3.963447 43.075691 L 4.199091 43.075691 M 4.923698 27.717558 L 5.159343 27.717558 M 5.878059 43.075691 L 6.119594 43.075691 M 6.83831 27.717558 L 7.079846 27.717558 M 7.798562 43.075691 L 8.040097 43.075691 M 8.764704 27.717558 L 9.000349 27.717558 M 9.601242 43.075691 L 9.842778 43.075691 M 10.561494 27.717558 L 10.803029 27.717558 M 11.521745 43.075691 L 11.763281 43.075691 M 12.481997 27.717558 L 12.717641 27.717558 M 13.442248 43.075691 L 13.677893 43.075691 M 14.396609 27.717558 L 14.638144 27.717558 M 22.803227 43.075691 L 23.038872 43.075691 M 23.763479 27.717558 L 23.999123 27.717558 M 24.600017 43.075691 L 24.841553 43.075691 M 25.560268 27.717558 L 25.801804 27.717558 M 26.52052 43.075691 L 26.762056 43.075691 M 27.480771 27.717558 L 27.716416 27.717558 M 2.997304 42.957869 L 1.076801 42.957869 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip12)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.997304 27.835381 L 1.076801 27.835381 L 0.717443 28.076916 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip13)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.717443 42.59262 L 1.076801 42.957869 M 15.239038 46.675161 L 16.199289 48.477842 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 46.675161 L 19.79876 46.557339 L 19.680937 46.315803 L 19.680937 45.838623 L 19.557224 45.71491 L 19.557224 45.591196 L 19.439402 45.355552 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.680937 23.876553 L 18.720686 22.315407 M 19.79876 20.872085 L 21.118369 20.872085 M 19.79876 49.797451 L 21.118369 49.797451 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 24.713091 L 21.118369 24.954626 L 21.236191 25.196162 L 21.236191 25.673342 L 21.359905 25.914878 L 21.477727 26.156413 L 21.477727 26.392058 L 21.60144 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 31.676387 L 21.118369 31.794209 L 21.236191 31.912031 L 21.236191 32.27728 L 21.359905 32.395102 L 21.359905 32.518816 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 23.994375 L 16.199289 22.315407 M 21.60144 44.153765 L 21.60144 44.277478 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 40.79583 L 19.79876 40.554294 L 19.680937 40.436472 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 46.675161 L 18.720686 48.477842 M 25.919626 44.153765 L 25.442446 44.153765 M 23.999123 44.153765 L 23.639765 44.153765 M 22.07862 44.153765 L 21.719263 44.153765 M 14.638144 44.153765 L 14.278786 44.153765 M 12.717641 44.153765 L 12.358283 44.153765 M 10.920852 44.153765 L 10.443672 44.153765 M 9.000349 44.153765 L 8.640991 44.153765 M 7.079846 44.153765 L 6.720488 44.153765 M 5.283056 44.153765 L 4.799985 44.153765 M 26.762056 26.639485 L 26.396807 26.639485 M 24.959375 26.639485 L 24.600017 26.639485 M 23.038872 26.639485 L 22.679514 26.639485 M 15.239038 26.639485 L 15.121216 26.639485 M 13.677893 26.639485 L 13.318535 26.639485 M 11.763281 26.639485 L 11.398032 26.639485 M 9.9606 26.639485 L 9.477529 26.639485 M 8.040097 26.639485 L 7.680739 26.639485 M 6.119594 26.639485 L 5.760236 26.639485 M 4.322805 26.639485 L 4.199091 26.639485 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.482393 299.751501 L 32.040493 299.751501 L 32.040493 326.756364 L 36.482393 326.756364 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.075774 305.636723 L 28.075774 320.75332 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.682559 313.195021 L 28.800381 313.071308 L 28.800381 312.835663 L 28.924094 312.717841 L 28.924094 312.594128 L 29.041916 312.594128 L 29.041916 312.476306 L 29.159739 312.352592 L 29.283452 312.352592 L 29.395383 312.23477 L 29.519097 312.23477 L 29.64281 312.116948 L 30.603061 312.116948 L 30.720884 312.23477 L 30.838706 312.23477 L 30.962419 312.352592 L 31.080242 312.476306 L 31.198064 312.594128 L 31.321777 312.594128 L 31.321777 312.717841 L 31.4396 312.835663 L 31.4396 313.554379 L 31.321777 313.678093 L 31.321777 313.795915 L 31.198064 313.913737 L 31.080242 314.037451 L 30.962419 314.037451 L 30.962419 314.155273 L 30.838706 314.155273 L 30.720884 314.278986 L 30.479348 314.278986 L 30.361526 314.396809 L 29.878455 314.396809 L 29.760632 314.278986 L 29.519097 314.278986 L 29.395383 314.155273 L 29.283452 314.155273 L 29.159739 314.037451 L 29.041916 314.037451 L 29.041916 313.913737 L 28.924094 313.795915 L 28.924094 313.678093 L 28.800381 313.554379 L 28.800381 313.318735 Z M 28.682559 313.195021 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.4396 305.636723 L 31.321777 305.636723 L 31.198064 305.754545 L 29.041916 305.754545 L 28.924094 305.636723 L 28.682559 305.636723 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.682559 320.75332 L 31.4396 320.75332 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.840129 305.395187 L 27.840129 306.231725 L 27.963843 306.355439 L 27.963843 314.155273 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.879878 304.794294 L 26.879878 304.912116 L 26.9977 305.035829 L 26.9977 305.518901 L 27.121413 305.636723 L 27.121413 306.355439 L 27.239236 306.479152 L 27.239236 307.31569 L 27.357058 307.557226 L 27.357058 308.393764 L 27.480771 308.517477 L 27.480771 309.595551 L 27.604485 309.837087 L 27.604485 310.673625 L 27.716416 310.915161 L 27.716416 311.993234 L 27.840129 312.23477 L 27.840129 313.318735 L 27.963843 313.554379 L 27.963843 314.155273 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.879878 313.195021 L 26.879878 304.794294 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.239236 321.713571 L 27.121413 321.713571 L 27.121413 319.798959 L 26.9977 319.675246 L 26.9977 315.474882 L 26.879878 315.35706 L 26.879878 313.195021 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.639765 321.955107 L 23.521943 321.955107 L 23.521943 320.994856 L 23.39823 320.877033 L 23.39823 318.838708 L 23.280408 318.714995 L 23.280408 315.716418 L 23.162585 315.592705 L 23.162585 312.23477 L 23.038872 312.116948 L 23.038872 308.994658 L 22.92105 308.753122 L 22.92105 306.355439 L 22.803227 306.119794 L 22.803227 304.794294 L 22.679514 304.676471 L 22.679514 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.442446 321.955107 L 25.442446 321.595749 L 25.318733 321.477927 L 25.318733 319.798959 L 25.200911 319.675246 L 25.200911 317.036027 L 25.077197 316.794492 L 25.077197 313.554379 L 24.959375 313.436557 L 24.959375 310.196445 L 24.841553 309.954909 L 24.841553 307.074155 L 24.717839 306.83851 L 24.717839 305.153652 L 24.600017 305.035829 L 24.600017 304.440827 L 24.482195 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.879878 313.195021 L 26.879878 311.274518 L 26.762056 311.032983 L 26.762056 308.158119 L 26.638342 308.034406 L 26.638342 305.754545 L 26.52052 305.636723 L 26.52052 304.552758 L 26.396807 304.552758 L 26.396807 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 22.196443 305.636723 L 22.196443 306.591083 L 22.320156 306.714797 L 22.320156 308.6353 L 22.443869 308.876835 L 22.443869 311.392341 L 22.561692 311.751699 L 22.561692 314.396809 L 22.679514 314.756166 L 22.679514 317.277563 L 22.803227 317.636921 L 22.803227 319.557424 L 22.92105 319.675246 L 22.92105 320.75332 L 23.038872 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.999123 305.518901 L 23.999123 305.872367 L 24.122837 305.872367 L 24.122837 307.197868 L 24.240659 307.439404 L 24.240659 309.713373 L 24.358481 309.954909 L 24.358481 312.717841 L 24.482195 312.959377 L 24.482195 315.592705 L 24.600017 315.83424 L 24.600017 318.355637 L 24.717839 318.47935 L 24.717839 320.27614 L 24.841553 320.27614 L 24.841553 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.801804 305.518901 L 25.919626 305.518901 L 25.919626 306.231725 L 26.037449 306.355439 L 26.037449 307.916584 L 26.161162 308.158119 L 26.161162 310.797338 L 26.278984 311.156696 L 26.278984 313.678093 L 26.396807 314.037451 L 26.396807 316.794492 L 26.52052 317.15385 L 26.52052 319.074353 L 26.638342 319.315888 L 26.638342 320.517675 L 26.762056 320.635498 L 26.762056 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.716416 305.518901 L 27.716416 305.636723 L 27.840129 305.754545 L 27.840129 306.714797 L 27.963843 306.83851 L 27.963843 308.034406 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 26.762056 304.440827 L 26.879878 304.440827 L 26.879878 304.794294 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24.959375 304.440827 L 24.959375 304.794294 L 25.077197 304.794294 L 25.077197 306.355439 L 25.200911 306.479152 L 25.200911 308.994658 L 25.318733 309.236193 L 25.318733 312.352592 L 25.442446 312.594128 L 25.442446 315.83424 L 25.560268 316.075776 L 25.560268 318.95653 L 25.678091 319.074353 L 25.678091 321.118569 L 25.801804 321.118569 L 25.801804 321.955107 L 25.919626 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.038872 304.440827 L 23.038872 304.552758 L 23.162585 304.552758 L 23.162585 305.636723 L 23.280408 305.754545 L 23.280408 307.916584 L 23.39823 308.158119 L 23.39823 311.032983 L 23.521943 311.274518 L 23.521943 314.514631 L 23.639765 314.756166 L 23.639765 317.872565 L 23.763479 317.996279 L 23.763479 320.393962 L 23.881301 320.517675 L 23.881301 321.837285 L 23.999123 321.837285 L 23.999123 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.837085 319.315888 L 21.837085 319.675246 L 21.960798 319.798959 L 21.960798 321.477927 L 22.07862 321.595749 L 22.07862 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.60144 312.116948 L 21.60144 313.318735 L 21.719263 313.678093 L 21.719263 316.676669 L 21.837085 317.036027 L 21.837085 318.114101 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.359905 305.872367 L 21.359905 306.83851 L 21.477727 307.074155 L 21.477727 309.954909 L 21.60144 310.314267 L 21.60144 310.673625 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.960798 305.754545 L 21.960798 306.83851 L 22.07862 307.074155 L 22.07862 309.118371 L 22.196443 309.477729 L 22.196443 311.751699 L 22.320156 312.116948 L 22.320156 314.873989 L 22.443869 315.233347 L 22.443869 317.636921 L 22.561692 317.996279 L 22.561692 319.798959 L 22.679514 320.034604 L 22.679514 320.877033 L 22.803227 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.763479 305.518901 L 23.763479 305.996081 L 23.881301 306.119794 L 23.881301 307.557226 L 23.999123 307.798762 L 23.999123 309.837087 L 24.122837 310.196445 L 24.122837 313.071308 L 24.240659 313.436557 L 24.240659 315.957954 L 24.358481 316.317311 L 24.358481 318.47935 L 24.482195 318.714995 L 24.482195 320.393962 L 24.600017 320.517675 L 24.600017 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.560268 305.518901 L 25.678091 305.636723 L 25.678091 306.479152 L 25.801804 306.591083 L 25.801804 308.275942 L 25.919626 308.6353 L 25.919626 310.915161 L 26.037449 311.274518 L 26.037449 314.155273 L 26.161162 314.638344 L 26.161162 317.036027 L 26.278984 317.277563 L 26.278984 319.192175 L 26.396807 319.439602 L 26.396807 320.75332 L 26.52052 320.75332 L 26.52052 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 27.480771 305.518901 L 27.480771 305.754545 L 27.604485 305.754545 L 27.604485 307.074155 L 27.716416 307.197868 L 27.716416 309.236193 L 27.840129 309.477729 L 27.840129 312.23477 L 27.963843 312.352592 L 27.963843 314.155273 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 304.552758 L 15.239038 304.440827 L 15.121216 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.638144 305.518901 L 14.638144 305.996081 L 14.761858 306.119794 L 14.761858 307.557226 L 14.87968 307.798762 L 14.87968 310.314267 L 14.997502 310.555803 L 14.997502 313.195021 L 15.121216 313.436557 L 15.121216 316.193598 L 15.239038 316.435134 L 15.239038 317.036027 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.359905 317.395385 L 21.359905 314.638344 L 21.236191 314.278986 L 21.236191 312.23477 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.719263 321.955107 L 21.719263 321.837285 L 21.60144 321.713571 L 21.60144 320.393962 L 21.477727 320.158317 L 21.477727 319.916782 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 13.677893 304.440827 L 13.677893 304.676471 L 13.801606 304.676471 L 13.801606 305.996081 L 13.919428 306.119794 L 13.919428 308.517477 L 14.037251 308.6353 L 14.037251 311.751699 L 14.160964 311.993234 L 14.160964 315.233347 L 14.278786 315.474882 L 14.278786 318.355637 L 14.396609 318.591281 L 14.396609 320.75332 L 14.520322 320.877033 L 14.520322 321.955107 L 14.638144 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.396609 305.518901 L 14.396609 306.231725 L 14.520322 306.355439 L 14.520322 308.034406 L 14.638144 308.275942 L 14.638144 310.43798 L 14.761858 310.673625 L 14.761858 313.436557 L 14.87968 313.795915 L 14.87968 316.435134 L 14.997502 316.794492 L 14.997502 318.95653 L 15.121216 319.192175 L 15.121216 320.517675 L 15.239038 320.635498 L 15.239038 320.75332 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.640991 321.955107 L 8.517277 321.955107 L 8.517277 321.236391 L 8.399455 321.118569 L 8.399455 319.074353 L 8.281633 318.838708 L 8.281633 315.957954 L 8.15792 315.592705 L 8.15792 312.717841 L 8.040097 312.352592 L 8.040097 309.236193 L 7.922275 308.876835 L 7.922275 306.355439 L 7.798562 306.119794 L 7.798562 304.912116 L 7.680739 304.794294 L 7.680739 304.552758 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.443672 321.955107 L 10.443672 321.595749 L 10.319958 321.595749 L 10.319958 319.916782 L 10.196245 319.798959 L 10.196245 317.15385 L 10.078423 317.036027 L 10.078423 313.795915 L 9.9606 313.554379 L 9.9606 310.314267 L 9.842778 310.196445 L 9.842778 307.31569 L 9.719065 307.197868 L 9.719065 305.277365 L 9.601242 305.153652 L 9.601242 304.440827 L 9.477529 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.358283 321.955107 L 12.240461 321.837285 L 12.240461 320.75332 L 12.122639 320.635498 L 12.122639 318.355637 L 11.998925 318.114101 L 11.998925 315.115524 L 11.881103 314.873989 L 11.881103 311.639767 L 11.763281 311.392341 L 11.763281 308.393764 L 11.639568 308.158119 L 11.639568 305.872367 L 11.521745 305.754545 L 11.521745 304.552758 L 11.398032 304.552758 L 11.398032 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.278786 321.955107 L 14.160964 321.955107 L 14.160964 321.354213 L 14.037251 321.236391 L 14.037251 319.315888 L 13.919428 319.192175 L 13.919428 316.435134 L 13.801606 316.193598 L 13.801606 312.959377 L 13.677893 312.717841 L 13.677893 309.595551 L 13.560071 309.354015 L 13.560071 306.714797 L 13.442248 306.591083 L 13.442248 304.912116 L 13.318535 304.794294 L 13.318535 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.079846 305.636723 L 7.680739 304.552758 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.079846 305.636723 L 7.197668 305.754545 L 7.197668 306.83851 L 7.321381 306.956332 L 7.321381 308.994658 L 7.439204 309.236193 L 7.439204 311.875412 L 7.557026 312.23477 L 7.557026 314.997702 L 7.680739 315.35706 L 7.680739 317.513208 L 7.798562 317.872565 L 7.798562 319.675246 L 7.922275 319.916782 L 7.922275 320.877033 L 8.040097 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9.000349 305.518901 L 9.000349 305.996081 L 9.118171 306.119794 L 9.118171 307.439404 L 9.235993 307.675048 L 9.235993 309.713373 L 9.359707 310.072731 L 9.359707 312.959377 L 9.477529 313.318735 L 9.477529 315.83424 L 9.601242 316.193598 L 9.601242 318.591281 L 9.719065 318.838708 L 9.719065 320.27614 L 9.842778 320.393962 L 9.842778 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.803029 305.518901 L 10.920852 305.518901 L 10.920852 306.355439 L 11.038674 306.591083 L 11.038674 308.275942 L 11.162387 308.517477 L 11.162387 310.797338 L 11.28021 311.156696 L 11.28021 314.037451 L 11.398032 314.396809 L 11.398032 316.912314 L 11.521745 317.15385 L 11.521745 319.315888 L 11.639568 319.557424 L 11.639568 320.635498 L 11.763281 320.75332 L 11.763281 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.717641 305.518901 L 12.717641 305.636723 L 12.841355 305.754545 L 12.841355 306.956332 L 12.959177 307.197868 L 12.959177 309.118371 L 13.076999 309.477729 L 13.076999 311.875412 L 13.200713 312.23477 L 13.200713 315.115524 L 13.318535 315.474882 L 13.318535 317.754743 L 13.442248 318.114101 L 13.442248 319.916782 L 13.560071 320.158317 L 13.560071 320.877033 L 13.677893 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11.763281 304.440827 L 11.881103 304.440827 L 11.881103 305.277365 L 11.998925 305.395187 L 11.998925 307.439404 L 12.122639 307.557226 L 12.122639 310.43798 L 12.240461 310.673625 L 12.240461 313.913737 L 12.358283 314.155273 L 12.358283 317.277563 L 12.481997 317.513208 L 12.481997 320.034604 L 12.599819 320.158317 L 12.599819 321.595749 L 12.717641 321.713571 L 12.717641 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9.9606 304.440827 L 9.9606 304.794294 L 10.078423 304.912116 L 10.078423 306.479152 L 10.196245 306.714797 L 10.196245 309.236193 L 10.319958 309.477729 L 10.319958 312.594128 L 10.443672 312.835663 L 10.443672 316.075776 L 10.561494 316.317311 L 10.561494 319.192175 L 10.679316 319.439602 L 10.679316 321.236391 L 10.803029 321.354213 L 10.803029 321.955107 L 10.920852 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.040097 304.440827 L 8.040097 304.552758 L 8.15792 304.552758 L 8.15792 305.754545 L 8.281633 305.872367 L 8.281633 308.158119 L 8.399455 308.275942 L 8.399455 311.516054 L 8.517277 311.751699 L 8.517277 314.997702 L 8.640991 315.233347 L 8.640991 318.231923 L 8.764704 318.355637 L 8.764704 320.635498 L 8.876635 320.75332 L 8.876635 321.837285 L 9.000349 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.237417 304.552758 L 6.237417 305.153652 L 6.36113 305.277365 L 6.36113 307.197868 L 6.478952 307.31569 L 6.478952 310.196445 L 6.602666 310.314267 L 6.602666 313.554379 L 6.720488 313.795915 L 6.720488 317.036027 L 6.83831 317.15385 L 6.83831 319.798959 L 6.962024 319.916782 L 6.962024 321.595749 L 7.079846 321.595749 L 7.079846 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.83831 305.636723 L 6.83831 305.754545 L 6.962024 305.754545 L 6.962024 307.074155 L 7.079846 307.197868 L 7.079846 309.118371 L 7.197668 309.477729 L 7.197668 312.116948 L 7.321381 312.476306 L 7.321381 315.233347 L 7.439204 315.592705 L 7.439204 317.872565 L 7.557026 318.114101 L 7.557026 319.916782 L 7.680739 320.158317 L 7.680739 320.877033 L 7.798562 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8.764704 305.518901 L 8.764704 305.996081 L 8.876635 306.119794 L 8.876635 307.798762 L 9.000349 308.034406 L 9.000349 310.196445 L 9.118171 310.555803 L 9.118171 313.071308 L 9.235993 313.436557 L 9.235993 316.317311 L 9.359707 316.676669 L 9.359707 318.714995 L 9.477529 318.95653 L 9.477529 320.393962 L 9.601242 320.517675 L 9.601242 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.561494 305.518901 L 10.561494 305.636723 L 10.679316 305.636723 L 10.679316 306.479152 L 10.803029 306.591083 L 10.803029 308.6353 L 10.920852 308.876835 L 10.920852 311.274518 L 11.038674 311.639767 L 11.038674 314.155273 L 11.162387 314.638344 L 11.162387 317.277563 L 11.28021 317.636921 L 11.28021 319.439602 L 11.398032 319.675246 L 11.398032 320.75332 L 11.521745 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.481997 305.518901 L 12.481997 305.754545 L 12.599819 305.872367 L 12.599819 307.074155 L 12.717641 307.31569 L 12.717641 309.595551 L 12.841355 309.837087 L 12.841355 312.352592 L 12.959177 312.717841 L 12.959177 315.35706 L 13.076999 315.716418 L 13.076999 318.231923 L 13.200713 318.47935 L 13.200713 320.034604 L 13.318535 320.27614 L 13.318535 320.877033 L 13.442248 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.237417 304.552758 L 6.83831 305.636723 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.799985 321.955107 L 4.799985 321.477927 L 4.682163 321.354213 L 4.682163 319.798959 L 4.558449 319.557424 L 4.558449 316.912314 L 4.440627 316.676669 L 4.440627 313.436557 L 4.322805 313.195021 L 4.322805 309.954909 L 4.199091 309.713373 L 4.199091 309.477729 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.480376 305.277365 L 3.480376 305.153652 L 3.604089 305.153652 L 3.721911 305.277365 L 3.721911 305.518901 L 3.839733 305.636723 L 3.839733 306.119794 L 3.963447 306.231725 L 3.963447 307.074155 L 4.075378 307.31569 L 4.075378 308.275942 L 4.199091 308.517477 L 4.199091 309.477729 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.356662 305.518901 L 3.356662 305.872367 L 3.480376 305.996081 L 3.480376 307.197868 L 3.604089 307.439404 L 3.604089 309.713373 L 3.721911 310.072731 L 3.721911 312.594128 L 3.839733 312.959377 L 3.839733 315.474882 L 3.963447 315.83424 L 3.963447 318.355637 L 4.075378 318.591281 L 4.075378 320.158317 L 4.199091 320.27614 L 4.199091 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.159343 305.518901 L 5.283056 305.518901 L 5.283056 306.231725 L 5.400878 306.355439 L 5.400878 307.916584 L 5.518701 308.275942 L 5.518701 310.797338 L 5.642414 311.156696 L 5.642414 313.678093 L 5.760236 314.037451 L 5.760236 316.552956 L 5.878059 316.912314 L 5.878059 319.192175 L 6.001772 319.315888 L 6.001772 320.517675 L 6.119594 320.635498 L 6.119594 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.079846 305.518901 L 7.079846 305.636723 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.720488 321.955107 L 6.720488 321.837285 L 6.602666 321.837285 L 6.602666 320.517675 L 6.478952 320.393962 L 6.478952 317.996279 L 6.36113 317.754743 L 6.36113 314.756166 L 6.237417 314.514631 L 6.237417 311.156696 L 6.119594 311.032983 L 6.119594 308.034406 L 6.001772 307.916584 L 6.001772 305.636723 L 5.878059 305.636723 L 5.878059 304.552758 L 5.760236 304.552758 L 5.760236 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 7.680739 304.552758 L 7.680739 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.199091 309.477729 L 4.199091 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.121018 305.872367 L 3.121018 305.996081 L 3.23884 306.119794 L 3.23884 308.994658 L 3.356662 309.236193 L 3.356662 314.037451 L 3.480376 314.396809 L 3.480376 318.714995 L 3.604089 318.95653 L 3.604089 321.236391 L 3.721911 321.354213 L 3.721911 321.477927 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.121018 305.872367 L 3.121018 305.518901 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.997304 320.75332 L 2.997304 305.636723 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.322805 304.440827 L 4.322805 304.794294 L 4.440627 304.794294 L 4.440627 306.355439 L 4.558449 306.479152 L 4.558449 308.994658 L 4.682163 309.236193 L 4.682163 312.352592 L 4.799985 312.594128 L 4.799985 315.83424 L 4.923698 316.075776 L 4.923698 318.95653 L 5.041521 319.074353 L 5.041521 321.118569 L 5.159343 321.118569 L 5.159343 321.955107 L 5.283056 321.955107 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.119594 304.440827 L 6.237417 304.440827 L 6.237417 304.552758 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.121018 305.872367 L 3.121018 305.996081 L 3.23884 306.119794 L 3.23884 307.557226 L 3.356662 307.798762 L 3.356662 310.072731 L 3.480376 310.314267 L 3.480376 312.959377 L 3.604089 313.318735 L 3.604089 316.075776 L 3.721911 316.317311 L 3.721911 318.591281 L 3.839733 318.838708 L 3.839733 320.27614 L 3.963447 320.393962 L 3.963447 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.923698 305.518901 L 5.041521 305.518901 L 5.041521 306.355439 L 5.159343 306.479152 L 5.159343 308.393764 L 5.283056 308.6353 L 5.283056 311.156696 L 5.400878 311.392341 L 5.400878 314.155273 L 5.518701 314.396809 L 5.518701 317.15385 L 5.642414 317.395385 L 5.642414 319.439602 L 5.760236 319.557424 L 5.760236 320.635498 L 5.878059 320.75332 L 5.878059 320.877033 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.83831 305.518901 L 6.83831 305.636723 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.83831 305.636723 L 7.079846 305.636723 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip14)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1.076801 320.75332 L 1.076801 305.636723 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.717443 320.517675 L 0.717443 305.996081 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 324.594326 L 15.239038 323.033181 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 313.195021 L 15.239038 323.033181 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 303.356862 L 15.239038 313.195021 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 303.356862 L 15.239038 301.913539 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 323.033181 L 15.239038 323.751897 L 15.35686 323.993432 L 15.35686 324.35279 L 15.480573 324.594326 L 15.480573 324.835861 L 15.604287 324.959575 L 15.716218 325.195219 L 15.716218 325.436755 L 15.963645 325.913935 L 16.075576 326.037649 L 16.199289 326.279184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.439402 323.274716 L 19.79876 323.274716 L 19.79876 322.915358 L 19.680937 322.673823 L 19.680937 322.072929 L 19.557224 321.955107 L 19.557224 321.477927 L 19.439402 321.354213 L 19.321579 321.118569 L 19.321579 320.877033 L 19.197866 320.635498 L 19.080044 320.517675 L 18.962221 320.27614 L 18.838508 320.034604 L 18.720686 319.798959 L 16.199289 319.798959 L 16.075576 320.034604 L 15.963645 320.27614 L 15.839931 320.517675 L 15.716218 320.635498 L 15.716218 320.877033 L 15.604287 321.118569 L 15.480573 321.354213 L 15.480573 321.477927 L 15.35686 321.713571 L 15.35686 322.072929 L 15.239038 322.314465 L 15.239038 323.033181 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16.199289 326.279184 L 18.720686 326.279184 L 18.962221 326.037649 L 18.962221 325.796113 L 19.080044 325.678291 L 19.197866 325.554577 L 19.197866 325.318933 L 19.321579 325.195219 L 19.321579 325.071506 L 19.439402 324.959575 L 19.439402 324.712148 L 19.557224 324.594326 L 19.557224 324.476504 L 19.680937 324.234968 L 19.680937 323.87561 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 323.87561 L 19.439402 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.60144 304.317114 L 22.196443 304.075578 L 21.359905 303.834042 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.557224 302.037253 L 19.557224 301.913539 L 19.439402 301.677895 L 19.321579 301.436359 L 19.197866 301.194823 L 19.197866 300.959179 L 18.962221 300.476108 L 18.838508 300.352394 L 18.838508 300.234572 L 18.720686 300.11675 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 301.677895 L 19.557224 302.155075 M 22.196443 305.636723 L 21.118369 305.996081 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.557224 302.037253 L 19.557224 302.514433 L 19.680937 302.997504 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 303.115326 L 19.680937 303.115326 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.680937 303.356862 L 19.680937 302.997504 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 18.720686 300.11675 L 16.199289 300.11675 L 16.075576 300.352394 L 15.963645 300.59393 L 15.839931 300.835466 L 15.716218 301.07111 L 15.716218 301.194823 L 15.604287 301.436359 L 15.480573 301.677895 L 15.480573 301.913539 L 15.35686 302.037253 L 15.35686 302.396611 L 15.239038 302.638146 L 15.239038 304.1934 L 15.35686 304.317114 L 15.35686 304.794294 L 15.480573 304.912116 L 15.480573 305.153652 L 15.604287 305.395187 L 15.716218 305.518901 L 15.716218 305.754545 L 15.839931 305.996081 L 15.963645 306.231725 L 16.075576 306.479152 L 16.199289 306.714797 L 18.720686 306.714797 L 19.080044 305.996081 L 19.197866 305.754545 L 19.321579 305.518901 L 19.321579 305.395187 L 19.557224 304.912116 L 19.557224 304.552758 L 19.680937 304.317114 L 19.680937 303.834042 L 19.79876 303.592507 L 19.79876 303.356862 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 309.837087 L 19.680937 309.595551 L 19.680937 308.517477 L 19.557224 308.275942 L 19.557224 307.798762 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 313.195021 L 19.79876 312.835663 L 19.680937 312.476306 L 19.680937 311.274518 L 19.557224 310.915161 L 19.557224 310.072731 L 19.321579 309.354015 L 19.321579 308.876835 L 19.197866 308.517477 L 19.080044 308.034406 L 18.962221 307.557226 L 18.838508 307.197868 L 18.720686 306.714797 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 307.557226 L 19.557224 307.798762 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.359905 310.43798 L 22.196443 311.751699 L 21.118369 312.352592 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 311.516054 L 22.196443 311.751699 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 298.79714 L 21.118369 327.716616 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 298.79714 L 19.79876 327.716616 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 303.592507 L 22.196443 305.636723 M 21.118369 301.194823 L 22.196443 304.075578 M 19.79876 324.835861 L 19.680937 324.712148 M 21.118369 321.595749 L 21.359905 321.477927 M 21.60144 321.955107 L 21.719263 321.837285 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 325.195219 L 22.196443 322.438178 L 21.118369 321.837285 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 316.794492 L 19.557224 316.676669 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.680937 318.231923 L 19.680937 317.513208 L 19.557224 317.036027 L 19.557224 316.676669 L 19.680937 316.552956 L 19.79876 316.552956 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 18.720686 319.798959 L 18.962221 318.838708 L 19.080044 318.355637 L 19.197866 317.996279 L 19.321579 317.513208 L 19.321579 317.15385 L 19.439402 316.676669 L 19.557224 316.317311 L 19.557224 315.474882 L 19.680937 315.115524 L 19.680937 314.037451 L 19.79876 313.554379 L 19.79876 313.195021 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16.199289 306.714797 L 16.075576 307.197868 L 15.963645 307.557226 L 15.716218 308.517477 L 15.716218 308.876835 L 15.604287 309.354015 L 15.480573 309.713373 L 15.480573 310.072731 L 15.35686 310.555803 L 15.35686 311.274518 L 15.239038 311.751699 L 15.239038 314.756166 L 15.35686 315.115524 L 15.35686 315.957954 L 15.480573 316.317311 L 15.480573 316.676669 L 15.604287 317.15385 L 15.716218 317.513208 L 15.716218 317.996279 L 15.839931 318.355637 L 15.963645 318.838708 L 16.075576 319.315888 L 16.199289 319.798959 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 317.036027 L 22.196443 318.714995 L 21.118369 320.517675 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip15)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 323.274716 L 19.922473 323.274716 M 32.040493 320.75332 L 31.4396 320.75332 M 28.682559 320.75332 L 28.075774 320.75332 M 32.040493 305.636723 L 31.4396 305.636723 M 28.682559 305.636723 L 28.075774 305.636723 M 28.075774 320.75332 L 27.239236 321.713571 M 28.075774 305.636723 L 27.840129 305.395187 M 23.639765 321.955107 L 23.038872 320.877033 M 25.442446 321.955107 L 24.841553 320.877033 M 22.07862 305.518901 L 22.679514 304.440827 M 23.999123 305.518901 L 24.482195 304.440827 M 25.801804 305.518901 L 26.396807 304.440827 M 27.716416 305.518901 L 27.840129 305.395187 M 27.239236 321.713571 L 26.762056 320.877033 M 26.879878 304.440827 L 27.480771 305.518901 M 24.959375 304.440827 L 25.560268 305.518901 M 23.038872 304.440827 L 23.763479 305.518901 M 22.803227 320.877033 L 22.07862 321.955107 M 24.717839 320.877033 L 23.999123 321.955107 M 26.52052 320.877033 L 25.919626 321.955107 M 14.520322 305.518901 L 15.121216 304.440827 M 21.719263 321.955107 L 21.118369 320.994856 M 13.677893 304.440827 L 14.396609 305.518901 M 15.239038 320.994856 L 14.638144 321.955107 M 8.517277 321.955107 L 8.040097 320.877033 M 10.443672 321.955107 L 9.842778 320.877033 M 12.358283 321.955107 L 11.763281 320.877033 M 14.160964 321.955107 L 13.677893 320.877033 M 9.000349 305.518901 L 9.477529 304.440827 M 10.803029 305.518901 L 11.398032 304.440827 M 12.717641 305.518901 L 13.318535 304.440827 M 11.763281 304.440827 L 12.481997 305.518901 M 9.9606 304.440827 L 10.561494 305.518901 M 8.040097 304.440827 L 8.764704 305.518901 M 7.798562 320.877033 L 7.079846 321.955107 M 9.601242 320.877033 L 9.000349 321.955107 M 11.521745 320.877033 L 10.920852 321.955107 M 13.442248 320.877033 L 12.717641 321.955107 M 4.799985 321.955107 L 4.199091 320.877033 M 3.356662 305.518901 L 3.480376 305.277365 M 5.159343 305.518901 L 5.760236 304.440827 M 7.079846 305.518901 L 7.680739 304.440827 M 6.720488 321.955107 L 6.119594 320.877033 M 2.997304 305.636723 L 3.121018 305.518901 M 3.480376 305.153652 L 4.199091 304.440827 M 2.997304 320.75332 L 3.721911 321.477927 M 4.322805 304.440827 L 4.923698 305.518901 M 6.237417 304.440827 L 6.83831 305.518901 M 4.075378 320.877033 L 3.721911 321.477927 M 5.878059 320.877033 L 5.283056 321.955107 M 3.121018 305.518901 L 3.356662 305.518901 M 3.963447 320.877033 L 4.199091 320.877033 M 4.923698 305.518901 L 5.159343 305.518901 M 5.878059 320.877033 L 6.119594 320.877033 M 6.83831 305.518901 L 7.079846 305.518901 M 7.798562 320.877033 L 8.040097 320.877033 M 8.764704 305.518901 L 9.000349 305.518901 M 9.601242 320.877033 L 9.842778 320.877033 M 10.561494 305.518901 L 10.803029 305.518901 M 11.521745 320.877033 L 11.763281 320.877033 M 12.481997 305.518901 L 12.717641 305.518901 M 13.442248 320.877033 L 13.677893 320.877033 M 14.396609 305.518901 L 14.638144 305.518901 M 22.803227 320.877033 L 23.038872 320.877033 M 23.763479 305.518901 L 23.999123 305.518901 M 24.600017 320.877033 L 24.841553 320.877033 M 25.560268 305.518901 L 25.801804 305.518901 M 26.52052 320.877033 L 26.762056 320.877033 M 27.480771 305.518901 L 27.716416 305.518901 M 2.997304 320.75332 L 1.076801 320.75332 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip16)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2.997304 305.636723 L 1.076801 305.636723 L 0.717443 305.996081 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip17)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.717443 320.517675 L 1.076801 320.75332 M 15.239038 324.594326 L 16.199289 326.279184 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 324.594326 L 19.79876 324.35279 L 19.680937 324.234968 L 19.680937 323.751897 L 19.557224 323.634074 L 19.557224 323.392539 L 19.439402 323.274716 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.680937 301.795717 L 18.720686 300.11675 M 19.79876 298.79714 L 21.118369 298.79714 M 19.79876 327.716616 L 21.118369 327.716616 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 302.638146 L 21.118369 302.873791 L 21.236191 303.115326 L 21.236191 303.592507 L 21.359905 303.834042 L 21.477727 304.075578 L 21.477727 304.317114 L 21.60144 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.118369 309.595551 L 21.118369 309.713373 L 21.236191 309.837087 L 21.236191 310.196445 L 21.359905 310.314267 L 21.359905 310.43798 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 15.239038 301.913539 L 16.199289 300.11675 M 21.60144 321.955107 L 21.60144 322.072929 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 318.591281 L 19.79876 318.47935 L 19.680937 318.231923 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.79876 324.594326 L 18.720686 326.279184 M 25.919626 321.955107 L 25.442446 321.955107 M 23.999123 321.955107 L 23.639765 321.955107 M 22.07862 321.955107 L 21.719263 321.955107 M 14.638144 321.955107 L 14.278786 321.955107 M 12.717641 321.955107 L 12.358283 321.955107 M 10.920852 321.955107 L 10.443672 321.955107 M 9.000349 321.955107 L 8.640991 321.955107 M 7.079846 321.955107 L 6.720488 321.955107 M 5.283056 321.955107 L 4.799985 321.955107 M 26.762056 304.440827 L 26.396807 304.440827 M 24.959375 304.440827 L 24.600017 304.440827 M 23.038872 304.440827 L 22.679514 304.440827 M 15.239038 304.440827 L 15.121216 304.440827 M 13.677893 304.440827 L 13.318535 304.440827 M 11.763281 304.440827 L 11.398032 304.440827 M 9.9606 304.440827 L 9.477529 304.440827 M 8.040097 304.440827 L 7.680739 304.440827 M 6.119594 304.440827 L 5.760236 304.440827 M 4.322805 304.440827 L 4.199091 304.440827 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.395666 173.752368 L 314.395666 170.158789 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.395666 173.752368 L 314.395666 195.478794 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.395666 170.158789 L 314.283735 170.158789 M 314.283735 195.478794 L 314.395666 195.478794 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.283735 191.75561 L 314.395666 191.75561 M 314.395666 173.752368 L 314.283735 173.752368 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip18)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.283735 347.275112 L 314.283735 1.313588 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 41.997617 L 277.558534 41.873904 L 278.159428 41.514546 L 278.642499 40.913652 L 278.878143 40.31865 L 278.878143 39.594043 L 278.642499 38.875327 L 278.159428 38.392256 L 277.558534 38.032898 L 276.839818 37.915076 L 276.121102 38.032898 L 275.520209 38.392256 L 275.037138 38.875327 L 274.801493 39.594043 L 274.801493 40.31865 L 275.037138 40.913652 L 275.520209 41.514546 L 276.121102 41.873904 Z M 276.839818 41.997617 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 110.034086 L 277.558534 109.916263 L 278.159428 109.556905 L 278.642499 108.956012 L 278.878143 108.355118 L 278.878143 107.636402 L 278.642499 106.911796 L 278.159428 106.440506 L 277.558534 106.075257 L 276.839818 105.957435 L 276.121102 106.075257 L 275.520209 106.440506 L 275.037138 106.911796 L 274.801493 107.636402 L 274.801493 108.355118 L 275.037138 108.956012 L 275.520209 109.556905 L 276.121102 109.916263 Z M 276.839818 110.034086 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 67.435445 L 277.558534 67.317623 L 278.159428 66.958265 L 278.642499 66.357371 L 278.878143 65.756478 L 278.878143 65.037762 L 278.642499 64.313155 L 278.159428 63.835975 L 277.558534 63.476617 L 276.839818 63.352903 L 276.121102 63.476617 L 275.520209 63.835975 L 275.037138 64.313155 L 274.801493 65.037762 L 274.801493 65.756478 L 275.037138 66.357371 L 275.520209 66.958265 L 276.121102 67.317623 Z M 276.839818 67.435445 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 58.916895 L 277.558534 58.799073 L 278.159428 58.439715 L 278.642499 57.838821 L 278.878143 57.232036 L 278.878143 56.513321 L 278.642499 55.794605 L 278.159428 55.317425 L 277.558534 54.958067 L 276.839818 54.834353 L 276.121102 54.958067 L 275.520209 55.317425 L 275.037138 55.794605 L 274.801493 56.513321 L 274.801493 57.232036 L 275.037138 57.838821 L 275.520209 58.439715 L 276.121102 58.799073 Z M 276.839818 58.916895 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 75.959886 L 277.558534 75.836172 L 278.159428 75.476815 L 278.642499 74.875921 L 278.878143 74.275027 L 278.878143 73.556312 L 278.642499 72.837596 L 278.159428 72.354524 L 277.558534 71.995167 L 276.839818 71.877344 L 276.121102 71.995167 L 275.520209 72.354524 L 275.037138 72.837596 L 274.801493 73.556312 L 274.801493 74.275027 L 275.037138 74.875921 L 275.520209 75.476815 L 276.121102 75.836172 Z M 276.839818 75.959886 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 92.996986 L 277.558534 92.873272 L 278.159428 92.513914 L 278.642499 91.913021 L 278.878143 91.318018 L 278.878143 90.593411 L 278.642499 89.874696 L 278.159428 89.397515 L 277.558534 89.032266 L 276.839818 88.914444 L 276.121102 89.032266 L 275.520209 89.397515 L 275.037138 89.874696 L 274.801493 90.593411 L 274.801493 91.318018 L 275.037138 91.913021 L 275.520209 92.513914 L 276.121102 92.873272 Z M 276.839818 92.996986 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 84.478436 L 277.558534 84.354722 L 278.159428 83.995365 L 278.642499 83.394471 L 278.878143 82.799468 L 278.878143 82.074862 L 278.642499 81.356146 L 278.159428 80.873074 L 277.558534 80.513717 L 276.839818 80.395894 L 276.121102 80.513717 L 275.520209 80.873074 L 275.037138 81.356146 L 274.801493 82.074862 L 274.801493 82.799468 L 275.037138 83.394471 L 275.520209 83.995365 L 276.121102 84.354722 Z M 276.839818 84.478436 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 50.392454 L 277.558534 50.274632 L 278.159428 49.915274 L 278.642499 49.31438 L 278.878143 48.713487 L 278.878143 47.994771 L 278.642499 47.276055 L 278.159428 46.798875 L 277.558534 46.439517 L 276.839818 46.315803 L 276.121102 46.439517 L 275.520209 46.798875 L 275.037138 47.276055 L 274.801493 47.994771 L 274.801493 48.713487 L 275.037138 49.31438 L 275.520209 49.915274 L 276.121102 50.274632 Z M 276.839818 50.392454 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.604174 101.515536 L 277.32289 101.397713 L 277.923783 101.032464 L 278.395072 100.437462 L 278.642499 99.836568 L 278.642499 99.117853 L 278.395072 98.393246 L 277.923783 97.916065 L 277.32289 97.556707 L 276.604174 97.438885 L 275.879567 97.556707 L 275.278673 97.916065 L 274.801493 98.393246 L 274.559957 99.117853 L 274.559957 99.836568 L 274.801493 100.437462 L 275.278673 101.032464 L 275.879567 101.397713 Z M 276.604174 101.515536 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.839818 33.479067 L 277.558534 33.355354 L 278.159428 32.995996 L 278.642499 32.395102 L 278.878143 31.794209 L 278.878143 31.075493 L 278.642499 30.356777 L 278.159428 29.873706 L 277.558534 29.514348 L 276.839818 29.396526 L 276.121102 29.514348 L 275.520209 29.873706 L 275.037138 30.356777 L 274.801493 31.075493 L 274.801493 31.794209 L 275.037138 32.395102 L 275.520209 32.995996 L 276.121102 33.355354 Z M 276.839818 33.479067 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip19)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.482393 1.313588 L 36.482393 347.275112 L 314.283735 347.275112 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip20)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.283735 1.313588 L 36.482393 1.313588 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.600215 122.876713 L 36.240857 123.954787 L 35.999321 125.03286 L 35.881499 126.116825 L 35.999321 127.194899 L 36.240857 128.278864 L 36.600215 129.356937 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.600215 219.231763 L 36.240857 220.315728 L 35.999321 221.393802 L 35.881499 222.477767 L 35.999321 223.55584 L 36.240857 224.639805 L 36.600215 225.717879 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip21)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 40.317507 347.15729 L 41.395581 347.516648 L 42.479546 347.752292 L 43.55762 347.876006 L 44.641585 347.752292 L 45.719658 347.516648 L 46.803623 347.15729 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.600215 336.959773 L 36.240857 338.037847 L 35.999321 339.11592 L 35.881499 340.193994 L 35.999321 341.277959 L 36.240857 342.356033 L 36.600215 343.439997 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.600215 5.154594 L 36.240857 6.232668 L 35.999321 7.316633 L 35.881499 8.394707 L 35.999321 9.478671 L 36.240857 10.556745 L 36.600215 11.634819 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip22)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 46.803623 1.437302 L 45.719658 1.072053 L 44.641585 0.836408 L 43.55762 0.712695 L 42.479546 0.836408 L 41.395581 1.072053 L 40.317507 1.437302 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip23)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.239396 1.437302 L 125.161322 1.072053 L 124.077357 0.836408 L 122.999284 0.712695 L 121.92121 0.836408 L 120.837245 1.072053 L 119.759171 1.437302 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip24)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.438101 1.437302 L 207.360027 1.072053 L 206.281953 0.836408 L 205.197989 0.712695 L 204.119915 0.836408 L 203.041841 1.072053 L 201.963767 1.437302 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.160021 11.634819 L 314.519379 10.556745 L 314.760915 9.478671 L 314.878737 8.394707 L 314.760915 7.316633 L 314.519379 6.232668 L 314.160021 5.154594 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip25)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 310.442729 1.437302 L 309.358764 1.072053 L 308.28069 0.836408 L 307.196725 0.712695 L 306.118652 0.836408 L 305.040578 1.072053 L 303.962504 1.437302 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip26)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 99.841317 347.15729 L 100.919391 347.516648 L 101.997464 347.752292 L 103.075538 347.876006 L 104.159503 347.752292 L 105.237577 347.516648 L 106.321542 347.15729 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip27)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.877154 347.15729 L 219.961119 347.516648 L 221.039192 347.752292 L 222.123157 347.876006 L 223.201231 347.752292 L 224.279305 347.516648 L 225.357379 347.15729 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.160021 343.439997 L 314.519379 342.356033 L 314.760915 341.277959 L 314.878737 340.193994 L 314.760915 339.11592 L 314.519379 338.037847 L 314.160021 336.959773 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
<g clip-path="url(#clip28)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1.44;stroke-linecap:round;stroke-linejoin:bevel;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 303.962504 347.15729 L 305.040578 347.516648 L 306.118652 347.752292 L 307.196725 347.876006 L 308.28069 347.752292 L 309.358764 347.516648 L 310.442729 347.15729 " transform="matrix(0,-0.663075,0.663075,0,0.507899,227.464)"/>
|
||||
</g>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<use xlink:href="#surface5" transform="matrix(1,0,0,1,54,56)"/>
|
||||
<path style="fill:none;stroke-width:1.99255;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.082031 264.758563 L 170.082031 266.75075 M 170.082031 264.758563 L 170.082031 293.957781 M 170.082031 293.957781 L 170.082031 323.153094 M 170.082031 321.160906 L 170.082031 323.153094 " transform="matrix(1,0,0,-1,0,340.157)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1.99255;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.667969 323.153094 C 171.667969 324.028094 170.957031 324.739031 170.082031 324.739031 C 169.203125 324.739031 168.492188 324.028094 168.492188 323.153094 C 168.492188 322.278094 169.203125 321.567156 170.082031 321.567156 C 170.957031 321.567156 171.667969 322.278094 171.667969 323.153094 Z M 171.667969 323.153094 " transform="matrix(1,0,0,-1,0,340.157)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="160.047" y="12.691"/>
|
||||
<use xlink:href="#glyph0-2" x="167.51895" y="12.691"/>
|
||||
<use xlink:href="#glyph0-3" x="173.054171" y="12.691"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 211 KiB |
@ -31,6 +31,7 @@ int main(int argc, char *argv[]) {
|
||||
QCoreApplication::setApplicationVersion(window->getAppVersion() + "-" +
|
||||
window->getAppGitHash().left(9));
|
||||
|
||||
|
||||
#ifdef Q_OS_UNIX
|
||||
signal(SIGINT, tryExitGracefully);
|
||||
#endif
|
||||
|
@ -3,6 +3,7 @@
|
||||
#include "ui_preferencesdialog.h"
|
||||
#include "CustomWidgets/informationbox.h"
|
||||
#include "appwindow.h"
|
||||
#include "Device/compounddeviceeditdialog.h"
|
||||
|
||||
#include <QSettings>
|
||||
#include <QPushButton>
|
||||
@ -124,6 +125,52 @@ PreferencesDialog::PreferencesDialog(Preferences *pref, QWidget *parent) :
|
||||
ui->MarkerShowAllMarkerData->setEnabled(enabled);
|
||||
});
|
||||
|
||||
// Compound device page
|
||||
connect(ui->compoundList, &QListWidget::currentRowChanged, [=](){
|
||||
if(VirtualDevice::getConnected() && VirtualDevice::getConnected()->getCompoundDevice() == p->compoundDevices[ui->compoundList->currentRow()]) {
|
||||
// can't remove the device we are connected to
|
||||
ui->compoundDelete->setEnabled(false);
|
||||
} else {
|
||||
ui->compoundDelete->setEnabled(true);
|
||||
}
|
||||
});
|
||||
connect(ui->compoundList, &QListWidget::doubleClicked, [=](){
|
||||
auto index = ui->compoundList->currentRow();
|
||||
if(index >= 0 && index < p->compoundDevices.size()) {
|
||||
auto d = new CompoundDeviceEditDialog(p->compoundDevices[index]);
|
||||
d->show();
|
||||
}
|
||||
});
|
||||
connect(ui->compoundAdd, &QPushButton::clicked, [=](){
|
||||
auto cd = new CompoundDevice;
|
||||
auto d = new CompoundDeviceEditDialog(cd);
|
||||
connect(d, &QDialog::accepted, [=](){
|
||||
p->compoundDevices.push_back(cd);
|
||||
ui->compoundList->addItem(cd->getDesription());
|
||||
p->nonTrivialWriting();
|
||||
});
|
||||
connect(d, &QDialog::rejected, [=](){
|
||||
delete cd;
|
||||
});
|
||||
d->show();
|
||||
});
|
||||
connect(ui->compoundDelete, &QPushButton::clicked, [=](){
|
||||
auto index = ui->compoundList->currentRow();
|
||||
if(index >= 0 && index < p->compoundDevices.size()) {
|
||||
// delete the actual compound device
|
||||
if(VirtualDevice::getConnected() && VirtualDevice::getConnected()->getCompoundDevice() == p->compoundDevices[index]) {
|
||||
// can't remove the device we are currently connected to
|
||||
return;
|
||||
}
|
||||
delete p->compoundDevices[index];
|
||||
// delete the line in the GUI list
|
||||
delete ui->compoundList->takeItem(index);
|
||||
// remove compound device from list
|
||||
p->compoundDevices.erase(p->compoundDevices.begin() + index);
|
||||
p->nonTrivialWriting();
|
||||
}
|
||||
});
|
||||
|
||||
// Page selection
|
||||
connect(ui->treeWidget, &QTreeWidget::currentItemChanged, [=](QTreeWidgetItem *current, QTreeWidgetItem *) {
|
||||
auto name = current->text(0);
|
||||
@ -263,6 +310,10 @@ void PreferencesDialog::setInitialGUIState()
|
||||
ui->SCPIServerEnabled->setChecked(p->SCPIServer.enabled);
|
||||
ui->SCPIServerPort->setValue(p->SCPIServer.port);
|
||||
|
||||
for(auto cd : p->compoundDevices) {
|
||||
ui->compoundList->addItem(cd->getDesription());
|
||||
}
|
||||
|
||||
QTreeWidgetItem *item = ui->treeWidget->topLevelItem(0);
|
||||
if (item != nullptr) {
|
||||
ui->treeWidget->setCurrentItem(item); // visually select first item
|
||||
@ -344,10 +395,12 @@ void Preferences::load()
|
||||
qDebug() << "Setting" << d.name << "reset to default:" << d.def;
|
||||
}
|
||||
}
|
||||
nonTrivialParsing();
|
||||
}
|
||||
|
||||
void Preferences::store()
|
||||
{
|
||||
nonTrivialWriting();
|
||||
QSettings settings;
|
||||
// store settings
|
||||
for(auto d : descr) {
|
||||
@ -373,9 +426,39 @@ void Preferences::setDefault()
|
||||
void Preferences::fromJSON(nlohmann::json j)
|
||||
{
|
||||
parseJSON(j, descr);
|
||||
nonTrivialParsing();
|
||||
}
|
||||
|
||||
nlohmann::json Preferences::toJSON()
|
||||
{
|
||||
nonTrivialWriting();
|
||||
return createJSON(descr);
|
||||
}
|
||||
|
||||
void Preferences::nonTrivialParsing()
|
||||
{
|
||||
try {
|
||||
compoundDevices.clear();
|
||||
nlohmann::json jc = nlohmann::json::parse(compoundDeviceJSON.toStdString());
|
||||
for(auto j : jc) {
|
||||
auto cd = new CompoundDevice();
|
||||
cd->fromJSON(j);
|
||||
compoundDevices.push_back(cd);
|
||||
}
|
||||
} catch(const exception& e){
|
||||
qDebug() << "Failed to parse compound device string: " << e.what();
|
||||
}
|
||||
}
|
||||
|
||||
void Preferences::nonTrivialWriting()
|
||||
{
|
||||
if(compoundDevices.size() > 0) {
|
||||
nlohmann::json j;
|
||||
for(auto cd : compoundDevices) {
|
||||
j.push_back(cd->toJSON());
|
||||
}
|
||||
compoundDeviceJSON = QString::fromStdString(j.dump());
|
||||
} else {
|
||||
compoundDeviceJSON = "[]";
|
||||
}
|
||||
}
|
||||
|
@ -4,6 +4,8 @@
|
||||
#include "Util/qpointervariant.h"
|
||||
#include "savable.h"
|
||||
|
||||
#include "Device/compounddevice.h"
|
||||
|
||||
#include <QDialog>
|
||||
#include <QVariant>
|
||||
#include <exception>
|
||||
@ -14,7 +16,7 @@ enum GraphDomainChangeBehavior {
|
||||
AdjustGrahpsIfOnlyTrace = 2,
|
||||
};
|
||||
|
||||
Q_DECLARE_METATYPE(GraphDomainChangeBehavior);
|
||||
Q_DECLARE_METATYPE(GraphDomainChangeBehavior)
|
||||
|
||||
enum GraphLimitIndication {
|
||||
DontShowAnything = 0,
|
||||
@ -22,7 +24,7 @@ enum GraphLimitIndication {
|
||||
Overlay = 2,
|
||||
};
|
||||
|
||||
Q_DECLARE_METATYPE(GraphLimitIndication);
|
||||
Q_DECLARE_METATYPE(GraphLimitIndication)
|
||||
|
||||
enum MarkerSortOrder {
|
||||
PrefMarkerSortXCoord = 0,
|
||||
@ -30,7 +32,7 @@ enum MarkerSortOrder {
|
||||
PrefMarkerSortTimestamp = 2,
|
||||
};
|
||||
|
||||
Q_DECLARE_METATYPE(MarkerSortOrder);
|
||||
Q_DECLARE_METATYPE(MarkerSortOrder)
|
||||
|
||||
|
||||
class Preferences : public Savable {
|
||||
@ -132,12 +134,18 @@ public:
|
||||
|
||||
bool TCPoverride; // in case of manual port specification via command line
|
||||
|
||||
QString compoundDeviceJSON;
|
||||
std::vector<CompoundDevice*> compoundDevices;
|
||||
|
||||
void fromJSON(nlohmann::json j) override;
|
||||
nlohmann::json toJSON() override;
|
||||
|
||||
void nonTrivialParsing();
|
||||
void nonTrivialWriting();
|
||||
|
||||
private:
|
||||
Preferences() :
|
||||
TCPoverride(false) {};
|
||||
TCPoverride(false) {}
|
||||
static Preferences instance;
|
||||
|
||||
const std::vector<Savable::SettingDescription> descr = {{
|
||||
@ -196,6 +204,7 @@ private:
|
||||
{&Marker.sortOrder, "Marker.sortOrder", MarkerSortOrder::PrefMarkerSortXCoord},
|
||||
{&SCPIServer.enabled, "SCPIServer.enabled", true},
|
||||
{&SCPIServer.port, "SCPIServer.port", 19542},
|
||||
{&compoundDeviceJSON, "compoundDeviceJSON", "[]"},
|
||||
}};
|
||||
};
|
||||
|
||||
|
@ -66,6 +66,11 @@
|
||||
<string>SCPI Server</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Compound Devices</string>
|
||||
</property>
|
||||
</item>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
@ -79,7 +84,7 @@
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>687</width>
|
||||
<height>938</height>
|
||||
<height>884</height>
|
||||
</rect>
|
||||
</property>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_12">
|
||||
@ -98,7 +103,7 @@
|
||||
</size>
|
||||
</property>
|
||||
<property name="currentIndex">
|
||||
<number>0</number>
|
||||
<number>5</number>
|
||||
</property>
|
||||
<widget class="QWidget" name="Startup">
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_4">
|
||||
@ -1371,6 +1376,58 @@
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="CompoundDevices">
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_14">
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_13">
|
||||
<item>
|
||||
<widget class="QListWidget" name="compoundList"/>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_19">
|
||||
<item>
|
||||
<widget class="QPushButton" name="compoundAdd">
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset theme="list-add" resource="icons.qrc">
|
||||
<normaloff>:/icons/add.png</normaloff>
|
||||
<normalon>:/icons/add.png</normalon>:/icons/add.png</iconset>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="compoundDelete">
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset theme="list-remove" resource="icons.qrc">
|
||||
<normaloff>:/icons/remove.png</normaloff>
|
||||
<normalon>:/icons/remove.png</normalon>:/icons/remove.png</iconset>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="verticalSpacer_8">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>40</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
@ -1406,7 +1463,9 @@
|
||||
<header>CustomWidgets/siunitedit.h</header>
|
||||
</customwidget>
|
||||
</customwidgets>
|
||||
<resources/>
|
||||
<resources>
|
||||
<include location="icons.qrc"/>
|
||||
</resources>
|
||||
<connections/>
|
||||
<buttongroups>
|
||||
<buttongroup name="StartupSweepGroup"/>
|
||||
|
54
Software/PC_Application/savable.cpp
Normal file
@ -0,0 +1,54 @@
|
||||
#include "savable.h"
|
||||
#include "CustomWidgets/informationbox.h"
|
||||
|
||||
#include <QFileDialog>
|
||||
#include <fstream>
|
||||
#include <iomanip>
|
||||
|
||||
using namespace std;
|
||||
|
||||
bool Savable::openFromFileDialog(QString title, QString filetype)
|
||||
{
|
||||
auto filename = QFileDialog::getOpenFileName(nullptr, title, "", filetype, nullptr, QFileDialog::DontUseNativeDialog);
|
||||
if(filename.isEmpty()) {
|
||||
// aborted selection
|
||||
return false;
|
||||
}
|
||||
ifstream file;
|
||||
file.open(filename.toStdString());
|
||||
if(!file.is_open()) {
|
||||
qWarning() << "Unable to open file:" << filename;
|
||||
return false;
|
||||
}
|
||||
nlohmann::json j;
|
||||
try {
|
||||
file >> j;
|
||||
} catch (exception &e) {
|
||||
InformationBox::ShowError("Error", "Failed to parse the setup file (" + QString(e.what()) + ")");
|
||||
qWarning() << "Parsing of setup file failed: " << e.what();
|
||||
file.close();
|
||||
return false;
|
||||
}
|
||||
file.close();
|
||||
fromJSON(j);
|
||||
return true;
|
||||
}
|
||||
|
||||
bool Savable::saveToFileDialog(QString title, QString filetype, QString ending)
|
||||
{
|
||||
auto filename = QFileDialog::getSaveFileName(nullptr, title, "", filetype, nullptr, QFileDialog::DontUseNativeDialog);
|
||||
if(filename.isEmpty()) {
|
||||
// aborted selection
|
||||
return false;
|
||||
}
|
||||
if(!ending.isEmpty()) {
|
||||
if(!filename.endsWith(ending)) {
|
||||
filename.append(ending);
|
||||
}
|
||||
}
|
||||
ofstream file;
|
||||
file.open(filename.toStdString());
|
||||
file << setw(4) << toJSON() << endl;
|
||||
file.close();
|
||||
return true;
|
||||
}
|
@ -16,6 +16,9 @@ public:
|
||||
virtual nlohmann::json toJSON() = 0;
|
||||
virtual void fromJSON(nlohmann::json j) = 0;
|
||||
|
||||
bool openFromFileDialog(QString title, QString filetype);
|
||||
bool saveToFileDialog(QString title, QString filetype, QString ending = "");
|
||||
|
||||
using SettingDescription = struct {
|
||||
QPointerVariant var;
|
||||
QString name;
|
||||
|
@ -112,6 +112,7 @@ uint16_t Protocol::EncodePacket(const PacketInfo &packet, uint8_t *dest, uint16_
|
||||
case PacketType::SetIdle:
|
||||
case PacketType::RequestFrequencyCorrection:
|
||||
case PacketType::RequestAcquisitionFrequencySettings:
|
||||
case PacketType::RequestDeviceStatus:
|
||||
// no payload
|
||||
break;
|
||||
case PacketType::None:
|
||||
|