doc: CAN: Extend CAN doc and moved it to networking

This commit adds a lot more documentation to the Controller Area
Netwok API. The documentation is move to the networking section.

Signed-off-by: Alexander Wachter <alexander.wachter@student.tugraz.at>
This commit is contained in:
Alexander Wachter 2019-08-30 10:57:35 +02:00 committed by Anas Nashif
commit 5b0a7d3523
7 changed files with 1481 additions and 14 deletions

View file

@ -0,0 +1,9 @@
.. _net_canbus:
Controller Area Network
#######################
.. toctree::
:maxdepth: 1
can_api.rst

View file

@ -0,0 +1,335 @@
.. _can_interface:
Controller Area Network (CAN)
#############################
.. contents::
:local:
:depth: 2
Overview
********
Controller Area Network is a two-wire serial bus specified by the
Bosch CAN Specification, Bosch CAN with Flexible Data-Rate specification and the
ISO 11898-1:2003 standard.
CAN is mostly known for its application in the automotive domain. However, it
is also used in home and industrial automation and other products.
A CAN transceiver is an external device that converts the logic level signals
from the CAN controller to the bus-levels. The bus lines are called
CAN High (CAN H) and CAN Low (CAN L).
The transmit wire from the controller to the transceiver is called CAN TX,
and the receive wire is called CAN RX.
These wires use the logic levels whereas the bus-level is interpreted
differentially between CAN H and CAN L.
The bus can be either in the recessive (logical one) or dominant (logical zero)
state. The recessive state is when both lines, CAN H and CAN L, at roughly at
the same voltage level. This state is also the idle state.
To write a dominant bit to the bus, open-drain transistors tie CAN H to Vdd
and CAN L to ground.
The first and last node use a 120-ohm resistor between CAN H and CAN L to
terminate the bus. The dominant state always overrides the recessive state.
This structure is called a wired-AND.
.. warning::
CAN controllers can only initialize when the bus is in the idle (recessive)
state for at least 11 recessive bits. Therefore you have to make sure that
CAN RX is high, at least for a short time. This is also necessary for
loopback mode.
.. image:: can_transceiver.svg
:width: 70%
:align: center
:alt: CAN Transceiver
The bit-timing as defined in ISO 11898-1:2003 looks as following:
.. image:: can_timing.svg
:width: 40%
:align: center
:alt: CAN Timing
A single bit is split into four segments.
* Sync_Seg: The nodes synchronize at the edge of the Sync_Seg. It is always one time quantum in length.
* Prop_Seg: The signal propagation delay of the bus and other delays of the transceiver and node.
* Phase_Seg1 and Phase_Seg2 :Define the sampling point. The bit is sampled at the end of Phase_Seg1.
The bit-rate is calculated from the time of a time quantum and the values
defined above.
A bit has the length of Sync_Seg plus Prop_Seg plus Phase_Seg1 plus Phase_Seg2
multiplied by the time of single time quantum.
The bit-rate is the inverse of the length of a single bit.
The resynchronization jump width (SJW) defines the amount of time quantum the
sample point can be moved. The sample point is moved when resynchronization
is needed.
CAN uses so-called identifiers to identify the frame instead of addresses to
identify a node.
This identifier can either have 11-bit width (Standard or Basic Frame) or
29-bit in case of an Extended Frame. The Zephyr CAN API supports both Standard
and Extended identifiers concurrently. A CAN frame starts with a dominant
Start Of Frame bit. After that, the identifiers follow. This phase is called the
arbitration phase. During the arbitration phase, write collisions are allowed.
They resolve by the fact that dominant bits override recessive bits.
Nodes monitor the bus and notice when their transmission is being overridden and
in case, abort their transmission.
This effectively gives lower number identifiers priority over higher number
identifiers.
Filters are used to whitelist identifiers that are of interest for the specific
node. An identifier that doesn't match any filter is ignored.
Filters can either match exactly or a specified part of the identifier.
This method is called masking.
As an example, a mask with 11 bits set for standard or 29 bits set for extended
identifiers must match perfectly.
Bits that are set to zero in the mask are ignored when matching an identifier.
Most CAN controllers implement a limited number of filters in hardware.
The number of filters is also limited in Kconfig to save memory.
Errors may occur during transmission. In case a node detects an erroneous frame,
it partially overrides the current frame with an error-frame.
Error-frames can either be error passive or error active, depending on the state
of the controller.
In case the controller is in error active state, it sends six consecutive
dominant bits, which is a violation of the stuffing rule that all nodes can
detect. The sender may resend the frame right after.
An initialized node can be in one of the following states:
* Error-active
* Error-passive
* Bus-off
After initialization, the node is in the error-active state. In this state, the
node is allowed to send active error frames, ACK, and overload frames.
Every node has a receive- and transmit-error counter.
If either the receive- or the transmit-error counter exceeds 127,
the node changes to error-passive state.
In this state, the node is not allowed to send error-active frames anymore.
If the transmit-error counter increases further to 255, the node changes to the
bus-off state. In this state, the node is not allowed to send any dominant bits
to the bus. Nodes in the bus-off state may recover after receiving 128
occurrences of 11 concurrent recessive bits.
You can read more about CAN bus in this
`CAN Wikipedia article <https://en.wikipedia.org/wiki/CAN_bus>`_.
Zephyr supports following CAN features:
* Standard and Extended Identifers
* Filters with Masking
* Loopback and Silent mode
* Remote Request
Sending
*******
The following code snippets show how to send data.
This basic sample sends a CAN frame with standard identifier 0x123 and eight
bytes of data. When passing NULL as the callback, as shown in this example,
the send function blocks until the frame is sent and acknowledged by at least
one other node or an error occurred. The timeout only takes effect on acquiring
a mailbox. When a transmitting mailbox is assigned, sending cannot be canceled.
.. code-block:: C
struct zcan_frame frame = {
.id_type = CAN_STANDARD_IDENTIFIER,
.rtr = CAN_DATAFRAME,
.ext_id = 0x123,
.dlc = 8
};
struct device *can_dev;
int ret;
frame.data = {1,2,3,4,5,6,7,8};
can_dev = device_get_binding("CAN_0");
ret = can_send(can_dev, &frame, K_MSEC(100), NULL, NULL);
if (ret != CAN_TX_OK) {
LOG_ERR("Sending failed [%d]", ret);
}
This example shows how to send a frame with extended identifier 0x1234567 and
two bytes of data. The provided callback is called when the message is sent, or
an error occurred. Passing `K_FOREVER` to the timeout causes the function to block
until a transfer mailbox is assigned to the frame or an error occurred. It does
not block until the message is sent like the example above.
.. code-block:: C
void tx_irq_callback(u32_t error_flags, void *arg)
{
char *sender = (char *)arg;
if (error_flags) {
LOG_ERR("Sendig failed [%d]\nSender: %s\n", error_flags, sender);
}
}
int send_function(struct device *can_dev)
{
struct zcan_frame frame = {
.id_type = CAN_EXTENDED_IDENTIFIER,
.rtr = CAN_DATAFRAME,
.ext_id = 0x1234567,
.dlc = 2
};
frame.data = {1,2};
return can_send(can_dev, &frame, K_FOREVER, tx_irq_callback, "Sender 1");
}
Receiving
*********
Frames are only received when they match a filter.
The following code snippets show how to receive frames by attaching filters.
Here we have an example for a receiving callback.
It is used for `can_attach_isr` or `can_attach_workq`.
The argument arg is passed when the filter is attached.
.. code-block:: C
void rx_callback_function(struct zcan_frame *frame, void *arg)
{
... do something with the frame ...
}
The following snippet shows how to attach a filter with an interrupt callback.
It is the most efficient but also the most critical way to receive messages.
The callback function is called from an interrupt context, which means that the
callback function should be as short as possible and must not block.
Attaching ISRs is not allowed from userspace context.
The filter for this example is configured to match the identifier 0x123 exactly.
.. code-block:: C
const struct zcan_filter my_filter = {
.id_type = CAN_STANDARD_IDENTIFIER,
.rtr = CAN_DATAFRAME,
.std_id = 0x123,
.rtr_mask = 1,
.std_id_mask = CAN_STD_ID_MASK
};
int filter_id;
struct device *can_dev;
can_dev = device_get_binding("CAN_0");
filter_id = can_attach_isr(can_dev, rx_callback_function, callback_arg, &my_filter);
if (filter_id < 0) {
LOG_ERR("Unable to attach isr [%d]", filter_id);
}
This example shows how to attach a callback from a work-queue.
In contrast to the `can_attach_isr` function, here the callback is called from the
work-queue provided. In this case, it is the system work queue. Blocking is
generally allowed in the callback but could result in a frame backlog when it is
not limited. For the reason of a backlog, a ring-buffer is applied for every
attached filter. The size of this buffer can be adjusted in Kconfig.
This function is not yet callable from userspace context but will be in the
future.
The filter for this example is configured to match a filter range from
0x120 to x12f.
.. code-block:: C
const struct zcan_filter my_filter = {
.id_type = CAN_STANDARD_IDENTIFIER,
.rtr = CAN_DATAFRAME,
.std_id = 0x120,
.rtr_mask = 1,
.std_id_mask = 0x7F0
};
struct zcan_work rx_work;
int filter_id;
struct device *can_dev;
can_dev = device_get_binding("CAN_0");
filter_id = can_attach_workq(can_dev, &k_sys_work_q, &rx_work, callback_arg, callback_arg, &my_filter);
if (filter_id < 0) {
LOG_ERR("Unable to attach isr [%d]", filter_id);
}
Here an example for `can_attach_msgq` is shown. With this function, it is
possible to receive frames synchronously. This function can be called from
userspace context.
The size of the message queue should be as big as the expected backlog.
The filter for this example is configured to match the extended identifier
0x1234567 exactly.
.. code-block:: C
const struct zcan_filter my_filter = {
.id_type = CAN_EXTENDED_IDENTIFIER,
.rtr = CAN_DATAFRAME,
.std_id = 0x1234567,
.rtr_mask = 1,
.std_id_mask = CAN_EXT_ID_MASK
};
CAN_DEFINE_MSGQ(my_can_msgq, 2);
struct zcan_frame rx_frame;
int filter_id;
struct device *can_dev;
can_dev = device_get_binding("CAN_0");
filter_id = can_attach_msgq(can_dev, &my_can_msgq, &my_filter);
if (filter_id < 0) {
LOG_ERR("Unable to attach isr [%d]", filter_id);
return;
}
while (true) {
k_msgq_get(&my_can_msgq, &rx_frame, K_FOREVER);
... do something with the frame ...
}
`can_detach` removes the given filter.
.. code-block:: C
can_detach(can_dev, filter_id);
SocketCAN
*********
Zephyr additionally supports SocketCAN, a BSD socket implementation of the
Zephyr CAN API.
SocketCAN brings the convenience of the well-known BSD Socket API to
Controller Area Networks. It is compatible with the Linux SocketCAN
implementation, where many other high-level CAN projects build on top.
Note that frames are routed to the network stack instead of passed directly,
which adds some computation and memory overhead.
Samples
*******
We have two ready-to-build samples demonstrating use of the Zephyr CAN API
:ref:`Zephyr CAN sample <can-sample>` and
:ref:`SocketCAN sample <socket-can-sample>`.
API Reference
*************
.. doxygengroup:: can_interface
:project: Zephyr

View file

@ -0,0 +1,355 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="263pt" height="74pt" viewBox="0 0 263 74" 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 2.984375 -3.28125 C 2.984375 -3.359375 2.984375 -3.421875 2.90625 -3.421875 C 2.890625 -3.421875 2.859375 -3.421875 2.8125 -3.359375 L 2.625 -3.078125 C 2.390625 -3.28125 2.09375 -3.421875 1.65625 -3.421875 C 0.96875 -3.421875 0.46875 -2.984375 0.46875 -2.5 C 0.46875 -2.234375 0.609375 -2.015625 0.765625 -1.890625 C 1.015625 -1.6875 1.25 -1.640625 1.484375 -1.59375 C 1.5625 -1.578125 2.203125 -1.453125 2.25 -1.4375 C 2.5625 -1.359375 2.859375 -1.125 2.859375 -0.796875 C 2.859375 -0.453125 2.53125 -0.109375 1.96875 -0.109375 C 1.734375 -0.109375 1.328125 -0.140625 1.03125 -0.328125 C 0.796875 -0.484375 0.6875 -0.703125 0.671875 -0.984375 C 0.671875 -1.078125 0.671875 -1.09375 0.578125 -1.09375 C 0.46875 -1.09375 0.46875 -1.0625 0.46875 -0.953125 L 0.46875 -0.03125 C 0.46875 0.046875 0.46875 0.109375 0.546875 0.109375 C 0.59375 0.109375 0.609375 0.09375 0.640625 0.046875 C 0.65625 0.015625 0.828125 -0.21875 0.828125 -0.21875 C 1.1875 0.046875 1.625 0.109375 1.96875 0.109375 C 2.6875 0.109375 3.15625 -0.375 3.15625 -0.875 C 3.15625 -1.234375 2.9375 -1.453125 2.84375 -1.53125 C 2.625 -1.765625 2.359375 -1.8125 1.96875 -1.890625 C 1.6875 -1.9375 1.40625 -1.984375 1.359375 -2 C 1.171875 -2.046875 0.765625 -2.21875 0.765625 -2.59375 C 0.765625 -2.90625 1.125 -3.21875 1.65625 -3.21875 C 2.515625 -3.21875 2.734375 -2.640625 2.78125 -2.296875 C 2.796875 -2.21875 2.8125 -2.203125 2.890625 -2.203125 C 2.984375 -2.203125 2.984375 -2.25 2.984375 -2.34375 Z M 2.984375 -3.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 2.671875 -1.578125 C 2.734375 -1.6875 2.828125 -1.875 3.1875 -1.875 L 3.1875 -2.09375 C 3.078125 -2.078125 2.9375 -2.0625 2.765625 -2.0625 C 2.609375 -2.0625 2.421875 -2.078125 2.265625 -2.09375 L 2.265625 -1.875 C 2.40625 -1.875 2.484375 -1.796875 2.484375 -1.703125 C 2.484375 -1.671875 2.46875 -1.625 2.453125 -1.59375 L 1.84375 -0.453125 L 1.1875 -1.6875 C 1.15625 -1.75 1.15625 -1.765625 1.15625 -1.78125 C 1.15625 -1.859375 1.296875 -1.875 1.421875 -1.875 L 1.421875 -2.09375 C 1.21875 -2.078125 1.015625 -2.0625 0.8125 -2.0625 C 0.609375 -2.0625 0.484375 -2.0625 0.265625 -2.09375 L 0.265625 -1.875 C 0.609375 -1.875 0.640625 -1.859375 0.71875 -1.71875 L 1.609375 0 C 1.40625 0.421875 1.203125 0.828125 0.8125 0.828125 C 0.6875 0.828125 0.640625 0.8125 0.59375 0.78125 C 0.625 0.765625 0.71875 0.703125 0.71875 0.5625 C 0.71875 0.40625 0.609375 0.328125 0.484375 0.328125 C 0.375 0.328125 0.25 0.390625 0.25 0.5625 C 0.25 0.8125 0.5 1 0.8125 1 C 1.09375 1 1.421875 0.8125 1.640625 0.390625 Z M 2.671875 -1.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 2.90625 -1.46875 C 2.90625 -2 2.546875 -2.140625 2.09375 -2.140625 C 1.578125 -2.140625 1.296875 -1.859375 1.1875 -1.671875 L 1.1875 -2.140625 L 0.390625 -2.09375 L 0.390625 -1.875 C 0.75 -1.875 0.796875 -1.84375 0.796875 -1.609375 L 0.796875 -0.40625 C 0.796875 -0.25 0.796875 -0.21875 0.484375 -0.21875 L 0.390625 -0.21875 L 0.390625 0 C 0.609375 -0.015625 0.8125 -0.015625 1.015625 -0.015625 C 1.21875 -0.015625 1.421875 -0.015625 1.625 0 L 1.625 -0.21875 L 1.546875 -0.21875 C 1.234375 -0.21875 1.234375 -0.25 1.234375 -0.40625 L 1.234375 -1.25 C 1.234375 -1.796875 1.734375 -1.984375 2.03125 -1.984375 C 2.390625 -1.984375 2.46875 -1.78125 2.46875 -1.46875 L 2.46875 -0.40625 C 2.46875 -0.25 2.46875 -0.21875 2.15625 -0.21875 L 2.078125 -0.21875 L 2.078125 0 C 2.28125 -0.015625 2.484375 -0.015625 2.6875 -0.015625 C 2.890625 -0.015625 3.109375 -0.015625 3.3125 0 L 3.3125 -0.21875 L 3.21875 -0.21875 C 2.90625 -0.21875 2.90625 -0.25 2.90625 -0.40625 Z M 2.90625 -1.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 2.171875 -1.953125 C 2.109375 -1.90625 2.0625 -1.828125 2.0625 -1.734375 C 2.0625 -1.578125 2.1875 -1.484375 2.328125 -1.484375 C 2.4375 -1.484375 2.578125 -1.5625 2.578125 -1.75 C 2.578125 -2.15625 2.046875 -2.171875 1.703125 -2.171875 C 0.75 -2.171875 0.34375 -1.53125 0.34375 -1.046875 C 0.34375 -0.453125 0.921875 0.046875 1.640625 0.046875 C 2.484375 0.046875 2.65625 -0.53125 2.65625 -0.578125 C 2.65625 -0.65625 2.578125 -0.65625 2.546875 -0.65625 C 2.46875 -0.65625 2.46875 -0.640625 2.4375 -0.578125 C 2.28125 -0.171875 1.921875 -0.125 1.703125 -0.125 C 1.296875 -0.125 0.828125 -0.40625 0.828125 -1.046875 C 0.828125 -1.265625 0.875 -1.53125 1.0625 -1.734375 C 1.28125 -2 1.578125 -2 1.71875 -2 C 1.875 -2 2 -2 2.171875 -1.953125 Z M 2.171875 -1.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 2.5 -1.09375 C 2.609375 -1.09375 2.65625 -1.09375 2.65625 -1.203125 C 2.65625 -1.53125 2.46875 -2.171875 1.5625 -2.171875 C 0.828125 -2.171875 0.3125 -1.640625 0.3125 -1.0625 C 0.3125 -0.453125 0.90625 0.046875 1.640625 0.046875 C 2.40625 0.046875 2.65625 -0.484375 2.65625 -0.578125 C 2.65625 -0.65625 2.578125 -0.65625 2.546875 -0.65625 C 2.46875 -0.65625 2.46875 -0.640625 2.4375 -0.578125 C 2.296875 -0.234375 1.9375 -0.125 1.671875 -0.125 C 1.28125 -0.125 1.0625 -0.34375 0.984375 -0.421875 C 0.796875 -0.65625 0.796875 -0.953125 0.796875 -1.09375 Z M 0.8125 -1.234375 C 0.859375 -1.875 1.34375 -2.015625 1.5625 -2.015625 C 2.234375 -2.015625 2.265625 -1.375 2.28125 -1.234375 Z M 0.8125 -1.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 2.234375 -1.890625 C 2.453125 -2.03125 2.671875 -2.03125 2.75 -2.03125 C 2.734375 -2.015625 2.71875 -1.984375 2.71875 -1.921875 C 2.71875 -1.828125 2.78125 -1.734375 2.890625 -1.734375 C 3.015625 -1.734375 3.078125 -1.828125 3.078125 -1.921875 C 3.078125 -2.046875 2.96875 -2.1875 2.734375 -2.1875 C 2.625 -2.1875 2.375 -2.171875 2.109375 -1.96875 C 2 -2.046875 1.78125 -2.140625 1.484375 -2.140625 C 0.90625 -2.140625 0.515625 -1.796875 0.515625 -1.421875 C 0.515625 -1.1875 0.6875 -1 0.765625 -0.9375 C 0.65625 -0.796875 0.625 -0.65625 0.625 -0.546875 C 0.625 -0.296875 0.78125 -0.140625 0.828125 -0.109375 C 0.59375 -0.03125 0.3125 0.109375 0.3125 0.375 C 0.3125 0.75 0.9375 1 1.640625 1 C 2.296875 1 2.984375 0.78125 2.984375 0.359375 C 2.984375 0.140625 2.859375 -0.09375 2.625 -0.203125 C 2.296875 -0.359375 1.984375 -0.359375 1.46875 -0.359375 C 1.34375 -0.359375 1.140625 -0.359375 1.109375 -0.359375 C 0.875 -0.40625 0.828125 -0.59375 0.828125 -0.6875 C 0.828125 -0.78125 0.875 -0.859375 0.890625 -0.859375 C 0.90625 -0.859375 0.90625 -0.859375 0.921875 -0.84375 C 1.125 -0.75 1.3125 -0.71875 1.484375 -0.71875 C 2.046875 -0.71875 2.453125 -1.0625 2.453125 -1.421875 C 2.453125 -1.65625 2.28125 -1.828125 2.234375 -1.890625 Z M 1.484375 -0.875 C 1.0625 -0.875 0.9375 -1.15625 0.9375 -1.421875 C 0.9375 -1.6875 1.0625 -1.984375 1.484375 -1.984375 C 1.90625 -1.984375 2.015625 -1.703125 2.015625 -1.421875 C 2.015625 -1.15625 1.90625 -0.875 1.484375 -0.875 Z M 1.484375 0.015625 C 1.96875 0.015625 2.65625 0.015625 2.65625 0.375 C 2.65625 0.609375 2.21875 0.84375 1.640625 0.84375 C 1.09375 0.84375 0.640625 0.625 0.640625 0.375 C 0.640625 0.21875 0.8125 0.015625 1.171875 0.015625 Z M 1.484375 0.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 1.46875 -1.46875 L 2.53125 -1.46875 C 3.171875 -1.46875 3.890625 -1.84375 3.890625 -2.375 C 3.890625 -2.890625 3.25 -3.3125 2.46875 -3.3125 L 0.40625 -3.3125 L 0.40625 -3.09375 L 0.5625 -3.09375 C 0.953125 -3.09375 0.953125 -3.046875 0.953125 -2.890625 L 0.953125 -0.40625 C 0.953125 -0.265625 0.953125 -0.21875 0.5625 -0.21875 L 0.40625 -0.21875 L 0.40625 0 C 0.625 -0.015625 0.9375 -0.015625 1.203125 -0.015625 C 1.484375 -0.015625 1.78125 -0.015625 2 0 L 2 -0.21875 L 1.859375 -0.21875 C 1.46875 -0.21875 1.46875 -0.265625 1.46875 -0.40625 Z M 2.359375 -3.09375 C 3.140625 -3.09375 3.3125 -2.75 3.3125 -2.375 C 3.3125 -1.984375 3.125 -1.65625 2.359375 -1.65625 L 1.4375 -1.65625 L 1.4375 -2.90625 C 1.4375 -3.0625 1.4375 -3.09375 1.6875 -3.09375 Z M 2.359375 -3.09375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 1.1875 -1.078125 C 1.1875 -1.53125 1.4375 -1.96875 1.90625 -1.984375 C 1.890625 -1.96875 1.828125 -1.90625 1.828125 -1.8125 C 1.828125 -1.625 1.96875 -1.5625 2.078125 -1.5625 C 2.1875 -1.5625 2.3125 -1.640625 2.3125 -1.8125 C 2.3125 -1.984375 2.140625 -2.140625 1.890625 -2.140625 C 1.640625 -2.140625 1.34375 -2.015625 1.140625 -1.609375 L 1.140625 -2.140625 L 0.375 -2.09375 L 0.375 -1.875 C 0.71875 -1.875 0.765625 -1.84375 0.765625 -1.609375 L 0.765625 -0.40625 C 0.765625 -0.25 0.765625 -0.21875 0.453125 -0.21875 L 0.375 -0.21875 L 0.375 0 C 0.578125 -0.015625 0.796875 -0.015625 1 -0.015625 C 1.25 -0.015625 1.484375 -0.015625 1.6875 0 L 1.6875 -0.21875 L 1.5625 -0.21875 C 1.1875 -0.21875 1.1875 -0.265625 1.1875 -0.40625 Z M 1.1875 -1.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 2.984375 -1.03125 C 2.984375 -1.640625 2.40625 -2.171875 1.640625 -2.171875 C 0.890625 -2.171875 0.3125 -1.640625 0.3125 -1.03125 C 0.3125 -0.453125 0.890625 0.046875 1.640625 0.046875 C 2.40625 0.046875 2.984375 -0.453125 2.984375 -1.03125 Z M 1.640625 -0.125 C 0.796875 -0.125 0.796875 -0.84375 0.796875 -1.078125 C 0.796875 -1.296875 0.796875 -2.015625 1.640625 -2.015625 C 2.5 -2.015625 2.5 -1.296875 2.5 -1.078125 C 2.5 -0.84375 2.5 -0.125 1.640625 -0.125 Z M 1.640625 -0.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 1.609375 0.71875 L 1.515625 0.71875 C 1.203125 0.71875 1.203125 0.6875 1.203125 0.53125 L 1.203125 -0.21875 C 1.40625 -0.03125 1.671875 0.046875 1.953125 0.046875 C 2.6875 0.046875 3.28125 -0.4375 3.28125 -1.046875 C 3.28125 -1.625 2.75 -2.140625 2.03125 -2.140625 C 1.640625 -2.140625 1.34375 -2 1.1875 -1.859375 L 1.1875 -2.140625 L 0.375 -2.09375 L 0.375 -1.875 C 0.71875 -1.875 0.765625 -1.875 0.765625 -1.671875 L 0.765625 0.53125 C 0.765625 0.6875 0.765625 0.71875 0.453125 0.71875 L 0.375 0.71875 L 0.375 0.9375 C 0.578125 0.921875 0.78125 0.921875 0.984375 0.921875 C 1.1875 0.921875 1.40625 0.921875 1.609375 0.9375 Z M 1.203125 -1.609375 C 1.40625 -1.90625 1.78125 -1.96875 1.96875 -1.96875 C 2.453125 -1.96875 2.796875 -1.53125 2.796875 -1.046875 C 2.796875 -0.515625 2.390625 -0.109375 1.90625 -0.109375 C 1.6875 -0.109375 1.4375 -0.203125 1.265625 -0.421875 C 1.203125 -0.5 1.203125 -0.515625 1.203125 -0.59375 Z M 1.203125 -1.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 2.90625 -1.46875 C 2.90625 -2 2.546875 -2.140625 2.09375 -2.140625 C 1.53125 -2.140625 1.28125 -1.8125 1.203125 -1.703125 L 1.203125 -3.359375 L 0.390625 -3.3125 L 0.390625 -3.09375 C 0.75 -3.09375 0.796875 -3.0625 0.796875 -2.828125 L 0.796875 -0.40625 C 0.796875 -0.25 0.796875 -0.21875 0.484375 -0.21875 L 0.390625 -0.21875 L 0.390625 0 C 0.609375 -0.015625 0.8125 -0.015625 1.015625 -0.015625 C 1.21875 -0.015625 1.421875 -0.015625 1.625 0 L 1.625 -0.21875 L 1.546875 -0.21875 C 1.234375 -0.21875 1.234375 -0.25 1.234375 -0.40625 L 1.234375 -1.25 C 1.234375 -1.796875 1.734375 -1.984375 2.03125 -1.984375 C 2.390625 -1.984375 2.46875 -1.78125 2.46875 -1.46875 L 2.46875 -0.40625 C 2.46875 -0.25 2.46875 -0.21875 2.15625 -0.21875 L 2.078125 -0.21875 L 2.078125 0 C 2.28125 -0.015625 2.484375 -0.015625 2.6875 -0.015625 C 2.890625 -0.015625 3.109375 -0.015625 3.3125 0 L 3.3125 -0.21875 L 3.21875 -0.21875 C 2.90625 -0.21875 2.90625 -0.25 2.90625 -0.40625 Z M 2.90625 -1.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 2.53125 -1.4375 C 2.53125 -1.90625 2.046875 -2.171875 1.4375 -2.171875 C 1.140625 -2.171875 0.59375 -2.15625 0.59375 -1.75 C 0.59375 -1.5625 0.71875 -1.484375 0.84375 -1.484375 C 0.96875 -1.484375 1.09375 -1.578125 1.09375 -1.734375 C 1.09375 -1.859375 1.03125 -1.921875 0.984375 -1.953125 C 1.140625 -2.015625 1.375 -2.015625 1.4375 -2.015625 C 1.84375 -2.015625 2.109375 -1.78125 2.109375 -1.4375 L 2.109375 -1.3125 C 1.625 -1.28125 1.375 -1.265625 1 -1.140625 C 0.671875 -1.03125 0.390625 -0.828125 0.390625 -0.515625 C 0.390625 -0.046875 0.953125 0.046875 1.34375 0.046875 C 1.71875 0.046875 2.015625 -0.09375 2.15625 -0.34375 C 2.171875 -0.171875 2.296875 0.03125 2.53125 0.03125 C 2.578125 0.03125 3.125 0.03125 3.125 -0.4375 L 3.125 -0.703125 L 2.921875 -0.703125 L 2.921875 -0.453125 C 2.921875 -0.390625 2.921875 -0.1875 2.734375 -0.1875 C 2.53125 -0.1875 2.53125 -0.390625 2.53125 -0.453125 Z M 2.109375 -0.6875 C 2.109375 -0.15625 1.515625 -0.109375 1.40625 -0.109375 C 1.109375 -0.109375 0.84375 -0.25 0.84375 -0.515625 C 0.84375 -0.671875 0.9375 -1.109375 2.109375 -1.15625 Z M 2.109375 -0.6875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 2.171875 -2.03125 C 2.171875 -2.109375 2.171875 -2.171875 2.09375 -2.171875 C 2.0625 -2.171875 2.046875 -2.171875 2 -2.140625 C 1.984375 -2.109375 1.90625 -2.046875 1.875 -2.046875 C 1.875 -2.046875 1.859375 -2.046875 1.828125 -2.0625 C 1.71875 -2.125 1.546875 -2.171875 1.296875 -2.171875 C 0.5 -2.171875 0.34375 -1.796875 0.34375 -1.578125 C 0.34375 -1.125 0.90625 -1.03125 1.34375 -0.96875 C 1.625 -0.921875 2.078125 -0.859375 2.078125 -0.53125 C 2.078125 -0.359375 1.9375 -0.109375 1.34375 -0.109375 C 1.015625 -0.109375 0.703125 -0.234375 0.546875 -0.734375 C 0.53125 -0.828125 0.515625 -0.84375 0.4375 -0.84375 C 0.34375 -0.84375 0.34375 -0.796875 0.34375 -0.703125 L 0.34375 -0.078125 C 0.34375 0 0.34375 0.046875 0.421875 0.046875 C 0.453125 0.046875 0.453125 0.046875 0.546875 -0.046875 L 0.671875 -0.171875 C 0.921875 0.046875 1.21875 0.046875 1.34375 0.046875 C 2.15625 0.046875 2.3125 -0.375 2.3125 -0.609375 C 2.3125 -0.828125 2.1875 -0.984375 2.015625 -1.109375 C 1.8125 -1.21875 1.671875 -1.25 1.265625 -1.3125 C 0.953125 -1.359375 0.578125 -1.421875 0.578125 -1.671875 C 0.578125 -1.84375 0.765625 -2.03125 1.296875 -2.03125 C 1.703125 -2.03125 1.9375 -1.859375 1.96875 -1.53125 C 1.96875 -1.453125 1.96875 -1.421875 2.0625 -1.421875 C 2.171875 -1.421875 2.171875 -1.46875 2.171875 -1.5625 Z M 2.171875 -2.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 1.921875 -3.078125 C 1.921875 -3.21875 1.90625 -3.21875 1.75 -3.21875 C 1.40625 -2.921875 0.875 -2.921875 0.78125 -2.921875 L 0.6875 -2.921875 L 0.6875 -2.703125 L 0.78125 -2.703125 C 0.890625 -2.703125 1.203125 -2.71875 1.484375 -2.84375 L 1.484375 -0.421875 C 1.484375 -0.265625 1.484375 -0.21875 0.96875 -0.21875 L 0.71875 -0.21875 L 0.71875 0 C 1 -0.015625 1.421875 -0.015625 1.703125 -0.015625 C 1.984375 -0.015625 2.421875 -0.015625 2.6875 0 L 2.6875 -0.21875 L 2.4375 -0.21875 C 1.921875 -0.21875 1.921875 -0.265625 1.921875 -0.421875 Z M 1.921875 -3.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 4.59375 -1.46875 C 4.59375 -2.0625 4.140625 -2.140625 3.765625 -2.140625 C 3.296875 -2.140625 3.015625 -1.90625 2.890625 -1.6875 C 2.765625 -2.140625 2.265625 -2.140625 2.09375 -2.140625 C 1.59375 -2.140625 1.3125 -1.875 1.1875 -1.671875 L 1.1875 -2.140625 L 0.390625 -2.09375 L 0.390625 -1.875 C 0.75 -1.875 0.796875 -1.84375 0.796875 -1.609375 L 0.796875 -0.40625 C 0.796875 -0.25 0.796875 -0.21875 0.484375 -0.21875 L 0.390625 -0.21875 L 0.390625 0 C 0.609375 -0.015625 0.8125 -0.015625 1.015625 -0.015625 C 1.21875 -0.015625 1.421875 -0.015625 1.625 0 L 1.625 -0.21875 L 1.546875 -0.21875 C 1.234375 -0.21875 1.234375 -0.25 1.234375 -0.40625 L 1.234375 -1.25 C 1.234375 -1.78125 1.71875 -1.984375 2.046875 -1.984375 C 2.390625 -1.984375 2.484375 -1.78125 2.484375 -1.46875 L 2.484375 -0.40625 C 2.484375 -0.25 2.484375 -0.21875 2.171875 -0.21875 L 2.078125 -0.21875 L 2.078125 0 C 2.28125 -0.015625 2.484375 -0.015625 2.703125 -0.015625 C 2.90625 -0.015625 3.109375 -0.015625 3.3125 0 L 3.3125 -0.21875 L 3.21875 -0.21875 C 2.90625 -0.21875 2.90625 -0.25 2.90625 -0.40625 L 2.90625 -1.25 C 2.90625 -1.78125 3.40625 -1.984375 3.71875 -1.984375 C 4.078125 -1.984375 4.15625 -1.78125 4.15625 -1.46875 L 4.15625 -0.40625 C 4.15625 -0.25 4.15625 -0.21875 3.84375 -0.21875 L 3.765625 -0.21875 L 3.765625 0 C 3.96875 -0.015625 4.171875 -0.015625 4.375 -0.015625 C 4.578125 -0.015625 4.796875 -0.015625 5 0 L 5 -0.21875 L 4.90625 -0.21875 C 4.59375 -0.21875 4.59375 -0.25 4.59375 -0.40625 Z M 4.59375 -1.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 1.21875 -3.359375 L 0.40625 -3.3125 L 0.40625 -3.09375 C 0.765625 -3.09375 0.796875 -3.0625 0.796875 -2.828125 L 0.796875 -0.40625 C 0.796875 -0.25 0.796875 -0.21875 0.484375 -0.21875 L 0.40625 -0.21875 L 0.40625 0 C 0.609375 -0.015625 0.796875 -0.015625 1 -0.015625 C 1.203125 -0.015625 1.421875 -0.015625 1.625 0 L 1.625 -0.21875 L 1.53125 -0.21875 C 1.21875 -0.21875 1.21875 -0.25 1.21875 -0.40625 Z M 1.21875 -3.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 1.21875 -2.984375 C 1.21875 -3.140625 1.09375 -3.28125 0.9375 -3.28125 C 0.78125 -3.28125 0.640625 -3.15625 0.640625 -2.984375 C 0.640625 -2.8125 0.78125 -2.6875 0.9375 -2.6875 C 1.09375 -2.6875 1.21875 -2.828125 1.21875 -2.984375 Z M 0.421875 -2.09375 L 0.421875 -1.875 C 0.765625 -1.875 0.796875 -1.84375 0.796875 -1.609375 L 0.796875 -0.40625 C 0.796875 -0.25 0.796875 -0.21875 0.484375 -0.21875 L 0.40625 -0.21875 L 0.40625 0 C 0.59375 -0.015625 0.796875 -0.015625 1 -0.015625 C 1.1875 -0.015625 1.40625 -0.015625 1.578125 0 L 1.578125 -0.21875 C 1.25 -0.21875 1.21875 -0.21875 1.21875 -0.40625 L 1.21875 -2.140625 Z M 0.421875 -2.09375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-18">
<path style="stroke:none;" d="M 1.1875 -1.875 L 2.046875 -1.875 L 2.046875 -2.09375 L 1.1875 -2.09375 L 1.1875 -2.984375 L 0.984375 -2.984375 C 0.984375 -2.53125 0.734375 -2.046875 0.25 -2.03125 L 0.25 -1.875 L 0.765625 -1.875 L 0.765625 -0.609375 C 0.765625 -0.0625 1.21875 0.046875 1.515625 0.046875 C 1.875 0.046875 2.15625 -0.21875 2.15625 -0.609375 L 2.15625 -0.875 L 1.953125 -0.875 L 1.953125 -0.625 C 1.953125 -0.265625 1.734375 -0.125 1.5625 -0.125 C 1.1875 -0.125 1.1875 -0.515625 1.1875 -0.609375 Z M 1.1875 -1.875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-19">
<path style="stroke:none;" d="M 2.859375 -0.9375 L 2.65625 -0.9375 C 2.640625 -0.84375 2.59375 -0.546875 2.515625 -0.5 C 2.46875 -0.46875 2.0625 -0.46875 1.984375 -0.46875 L 1.046875 -0.46875 C 1.359375 -0.703125 1.71875 -0.96875 2.015625 -1.171875 C 2.453125 -1.46875 2.859375 -1.75 2.859375 -2.265625 C 2.859375 -2.875 2.265625 -3.21875 1.578125 -3.21875 C 0.921875 -3.21875 0.4375 -2.84375 0.4375 -2.375 C 0.4375 -2.125 0.65625 -2.078125 0.71875 -2.078125 C 0.859375 -2.078125 1 -2.171875 1 -2.359375 C 1 -2.53125 0.875 -2.640625 0.734375 -2.65625 C 0.859375 -2.875 1.140625 -3.015625 1.46875 -3.015625 C 1.9375 -3.015625 2.328125 -2.734375 2.328125 -2.25 C 2.328125 -1.84375 2.046875 -1.546875 1.6875 -1.21875 L 0.5 -0.21875 C 0.453125 -0.171875 0.453125 -0.171875 0.4375 -0.140625 L 0.4375 0 L 2.6875 0 Z M 2.859375 -0.9375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 5.640625 -6.59375 L 0.3125 -6.59375 L 0.3125 -6.28125 L 0.546875 -6.28125 C 1.296875 -6.28125 1.3125 -6.1875 1.3125 -5.828125 L 1.3125 -0.75 C 1.3125 -0.40625 1.296875 -0.296875 0.546875 -0.296875 L 0.3125 -0.296875 L 0.3125 0 C 0.65625 -0.03125 1.421875 -0.03125 1.796875 -0.03125 C 2.1875 -0.03125 3.078125 -0.03125 3.421875 0 L 3.421875 -0.296875 L 3.09375 -0.296875 C 2.171875 -0.296875 2.171875 -0.421875 2.171875 -0.765625 L 2.171875 -3.140625 L 3.015625 -3.140625 C 3.9375 -3.140625 4.046875 -2.84375 4.046875 -2.015625 L 4.28125 -2.015625 L 4.28125 -4.578125 L 4.046875 -4.578125 C 4.046875 -3.765625 3.9375 -3.453125 3.015625 -3.453125 L 2.171875 -3.453125 L 2.171875 -5.90625 C 2.171875 -6.21875 2.203125 -6.28125 2.65625 -6.28125 L 3.8125 -6.28125 C 5.265625 -6.28125 5.515625 -5.75 5.671875 -4.40625 L 5.90625 -4.40625 Z M 5.640625 -6.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 1.71875 -4.28125 L 0.359375 -4.171875 L 0.359375 -3.875 C 0.984375 -3.875 1.078125 -3.8125 1.078125 -3.34375 L 1.078125 -0.734375 C 1.078125 -0.296875 0.96875 -0.296875 0.3125 -0.296875 L 0.3125 0 C 0.625 -0.015625 1.15625 -0.03125 1.390625 -0.03125 C 1.71875 -0.03125 2.0625 -0.015625 2.390625 0 L 2.390625 -0.296875 C 1.75 -0.296875 1.71875 -0.34375 1.71875 -0.71875 Z M 1.75 -5.96875 C 1.75 -6.28125 1.515625 -6.484375 1.234375 -6.484375 C 0.9375 -6.484375 0.71875 -6.21875 0.71875 -5.96875 C 0.71875 -5.703125 0.9375 -5.453125 1.234375 -5.453125 C 1.515625 -5.453125 1.75 -5.65625 1.75 -5.96875 Z M 1.75 -5.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 2.15625 -1.671875 C 1.3125 -1.671875 1.3125 -2.640625 1.3125 -2.859375 C 1.3125 -3.125 1.3125 -3.421875 1.46875 -3.671875 C 1.546875 -3.78125 1.765625 -4.0625 2.15625 -4.0625 C 3 -4.0625 3 -3.09375 3 -2.875 C 3 -2.609375 2.984375 -2.296875 2.84375 -2.046875 C 2.765625 -1.9375 2.53125 -1.671875 2.15625 -1.671875 Z M 1.03125 -1.28125 C 1.03125 -1.328125 1.03125 -1.546875 1.1875 -1.75 C 1.5625 -1.46875 1.96875 -1.4375 2.15625 -1.4375 C 3.046875 -1.4375 3.71875 -2.109375 3.71875 -2.859375 C 3.71875 -3.21875 3.5625 -3.578125 3.328125 -3.796875 C 3.671875 -4.125 4.015625 -4.171875 4.1875 -4.171875 C 4.21875 -4.171875 4.265625 -4.171875 4.296875 -4.171875 C 4.1875 -4.125 4.140625 -4.015625 4.140625 -3.90625 C 4.140625 -3.734375 4.265625 -3.625 4.421875 -3.625 C 4.515625 -3.625 4.703125 -3.6875 4.703125 -3.90625 C 4.703125 -4.078125 4.578125 -4.390625 4.203125 -4.390625 C 4.015625 -4.390625 3.578125 -4.328125 3.171875 -3.9375 C 2.765625 -4.25 2.359375 -4.28125 2.15625 -4.28125 C 1.25 -4.28125 0.578125 -3.609375 0.578125 -2.875 C 0.578125 -2.4375 0.796875 -2.078125 1.03125 -1.875 C 0.90625 -1.71875 0.734375 -1.40625 0.734375 -1.0625 C 0.734375 -0.765625 0.859375 -0.390625 1.15625 -0.203125 C 0.578125 -0.03125 0.265625 0.375 0.265625 0.765625 C 0.265625 1.46875 1.234375 2 2.40625 2 C 3.5625 2 4.5625 1.5 4.5625 0.75 C 4.5625 0.40625 4.421875 -0.09375 3.9375 -0.359375 C 3.421875 -0.625 2.859375 -0.625 2.265625 -0.625 C 2.03125 -0.625 1.609375 -0.625 1.546875 -0.640625 C 1.234375 -0.671875 1.03125 -0.984375 1.03125 -1.28125 Z M 2.421875 1.765625 C 1.4375 1.765625 0.78125 1.28125 0.78125 0.765625 C 0.78125 0.3125 1.140625 -0.03125 1.5625 -0.0625 L 2.140625 -0.0625 C 2.96875 -0.0625 4.0625 -0.0625 4.0625 0.765625 C 4.0625 1.28125 3.375 1.765625 2.421875 1.765625 Z M 2.421875 1.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-4">
<path style="stroke:none;" d="M 3.78125 -0.765625 L 3.78125 0.109375 L 5.1875 0 L 5.1875 -0.296875 C 4.5 -0.296875 4.421875 -0.375 4.421875 -0.84375 L 4.421875 -4.28125 L 3 -4.171875 L 3 -3.875 C 3.6875 -3.875 3.765625 -3.8125 3.765625 -3.328125 L 3.765625 -1.609375 C 3.765625 -0.765625 3.296875 -0.109375 2.59375 -0.109375 C 1.765625 -0.109375 1.734375 -0.5625 1.734375 -1.0625 L 1.734375 -4.28125 L 0.3125 -4.171875 L 0.3125 -3.875 C 1.0625 -3.875 1.0625 -3.84375 1.0625 -2.984375 L 1.0625 -1.53125 C 1.0625 -0.78125 1.0625 0.109375 2.53125 0.109375 C 3.078125 0.109375 3.5 -0.171875 3.78125 -0.765625 Z M 3.78125 -0.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 1.625 -3.21875 L 1.625 -4.28125 L 0.265625 -4.171875 L 0.265625 -3.875 C 0.953125 -3.875 1.03125 -3.8125 1.03125 -3.328125 L 1.03125 -0.734375 C 1.03125 -0.296875 0.921875 -0.296875 0.265625 -0.296875 L 0.265625 0 C 0.65625 -0.015625 1.109375 -0.03125 1.375 -0.03125 C 1.765625 -0.03125 2.21875 -0.03125 2.609375 0 L 2.609375 -0.296875 L 2.40625 -0.296875 C 1.6875 -0.296875 1.671875 -0.40625 1.671875 -0.75 L 1.671875 -2.25 C 1.671875 -3.203125 2.078125 -4.0625 2.8125 -4.0625 C 2.875 -4.0625 2.890625 -4.0625 2.921875 -4.0625 C 2.890625 -4.046875 2.6875 -3.9375 2.6875 -3.6875 C 2.6875 -3.40625 2.890625 -3.265625 3.109375 -3.265625 C 3.28125 -3.265625 3.53125 -3.375 3.53125 -3.6875 C 3.53125 -4 3.21875 -4.28125 2.8125 -4.28125 C 2.109375 -4.28125 1.75 -3.625 1.625 -3.21875 Z M 1.625 -3.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-6">
<path style="stroke:none;" d="M 1.078125 -2.4375 C 1.140625 -3.890625 1.953125 -4.125 2.28125 -4.125 C 3.28125 -4.125 3.375 -2.8125 3.375 -2.4375 Z M 1.078125 -2.234375 L 3.78125 -2.234375 C 3.984375 -2.234375 4.015625 -2.234375 4.015625 -2.4375 C 4.015625 -3.40625 3.5 -4.34375 2.28125 -4.34375 C 1.15625 -4.34375 0.265625 -3.34375 0.265625 -2.125 C 0.265625 -0.828125 1.28125 0.109375 2.40625 0.109375 C 3.578125 0.109375 4.015625 -0.96875 4.015625 -1.15625 C 4.015625 -1.25 3.9375 -1.265625 3.890625 -1.265625 C 3.8125 -1.265625 3.78125 -1.203125 3.765625 -1.140625 C 3.421875 -0.140625 2.5625 -0.140625 2.453125 -0.140625 C 1.96875 -0.140625 1.59375 -0.421875 1.359375 -0.78125 C 1.078125 -1.25 1.078125 -1.890625 1.078125 -2.234375 Z M 1.078125 -2.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-7">
<path style="stroke:none;" d="M 1.234375 -0.75 L 2.25 -1.75 C 3.765625 -3.078125 4.34375 -3.609375 4.34375 -4.578125 C 4.34375 -5.671875 3.484375 -6.453125 2.296875 -6.453125 C 1.203125 -6.453125 0.484375 -5.5625 0.484375 -4.703125 C 0.484375 -4.15625 0.96875 -4.15625 1 -4.15625 C 1.15625 -4.15625 1.5 -4.265625 1.5 -4.671875 C 1.5 -4.921875 1.328125 -5.171875 0.984375 -5.171875 C 0.90625 -5.171875 0.890625 -5.171875 0.859375 -5.15625 C 1.078125 -5.796875 1.609375 -6.15625 2.171875 -6.15625 C 3.046875 -6.15625 3.46875 -5.359375 3.46875 -4.578125 C 3.46875 -3.796875 2.984375 -3.03125 2.453125 -2.4375 L 0.59375 -0.359375 C 0.484375 -0.25 0.484375 -0.234375 0.484375 0 L 4.078125 0 L 4.34375 -1.6875 L 4.109375 -1.6875 C 4.0625 -1.390625 3.984375 -0.96875 3.890625 -0.828125 C 3.828125 -0.75 3.1875 -0.75 2.96875 -0.75 Z M 1.234375 -0.75 "/>
</symbol>
<symbol overflow="visible" id="glyph1-8">
<path style="stroke:none;" d="M 1.859375 -3.65625 C 1.859375 -3.9375 1.625 -4.171875 1.34375 -4.171875 C 1.0625 -4.171875 0.828125 -3.9375 0.828125 -3.65625 C 0.828125 -3.375 1.0625 -3.140625 1.34375 -3.140625 C 1.625 -3.140625 1.859375 -3.375 1.859375 -3.65625 Z M 1.859375 -0.515625 C 1.859375 -0.796875 1.625 -1.03125 1.34375 -1.03125 C 1.0625 -1.03125 0.828125 -0.796875 0.828125 -0.515625 C 0.828125 -0.234375 1.0625 0 1.34375 0 C 1.625 0 1.859375 -0.234375 1.859375 -0.515625 Z M 1.859375 -0.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-9">
<path style="stroke:none;" d="M 0.546875 -3.3125 C 0.546875 -1.3125 2.109375 0.21875 3.90625 0.21875 C 5.5 0.21875 6.4375 -1.140625 6.4375 -2.25 C 6.4375 -2.359375 6.4375 -2.421875 6.3125 -2.421875 C 6.203125 -2.421875 6.203125 -2.359375 6.203125 -2.265625 C 6.125 -0.875 5.078125 -0.09375 4.03125 -0.09375 C 3.4375 -0.09375 1.546875 -0.421875 1.546875 -3.296875 C 1.546875 -6.203125 3.421875 -6.53125 4.015625 -6.53125 C 5.078125 -6.53125 5.9375 -5.640625 6.125 -4.234375 C 6.15625 -4.09375 6.15625 -4.0625 6.28125 -4.0625 C 6.4375 -4.0625 6.4375 -4.09375 6.4375 -4.296875 L 6.4375 -6.59375 C 6.4375 -6.765625 6.4375 -6.828125 6.328125 -6.828125 C 6.296875 -6.828125 6.265625 -6.828125 6.1875 -6.71875 L 5.703125 -6 C 5.34375 -6.34375 4.84375 -6.828125 3.90625 -6.828125 C 2.109375 -6.828125 0.546875 -5.296875 0.546875 -3.3125 Z M 0.546875 -3.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-10">
<path style="stroke:none;" d="M 3.859375 -6.75 C 3.8125 -6.875 3.78125 -6.9375 3.625 -6.9375 C 3.484375 -6.9375 3.453125 -6.875 3.40625 -6.75 L 1.390625 -0.953125 C 1.21875 -0.453125 0.828125 -0.3125 0.3125 -0.296875 L 0.3125 0 C 0.53125 -0.015625 0.953125 -0.03125 1.296875 -0.03125 C 1.59375 -0.03125 2.109375 -0.015625 2.40625 0 L 2.40625 -0.296875 C 1.921875 -0.296875 1.6875 -0.546875 1.6875 -0.796875 C 1.6875 -0.828125 1.6875 -0.921875 1.703125 -0.9375 L 2.15625 -2.203125 L 4.546875 -2.203125 L 5.0625 -0.71875 C 5.0625 -0.6875 5.078125 -0.625 5.078125 -0.59375 C 5.078125 -0.296875 4.546875 -0.296875 4.28125 -0.296875 L 4.28125 0 C 4.625 -0.03125 5.3125 -0.03125 5.671875 -0.03125 C 6.09375 -0.03125 6.53125 -0.015625 6.953125 0 L 6.953125 -0.296875 L 6.765625 -0.296875 C 6.1875 -0.296875 6.046875 -0.375 5.953125 -0.6875 Z M 3.34375 -5.65625 L 4.4375 -2.515625 L 2.25 -2.515625 Z M 3.34375 -5.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-11">
<path style="stroke:none;" d="M 2.25 -6.484375 C 2.15625 -6.609375 2.15625 -6.609375 1.96875 -6.609375 L 0.3125 -6.609375 L 0.3125 -6.3125 L 0.59375 -6.3125 C 0.75 -6.3125 0.9375 -6.3125 1.078125 -6.296875 C 1.3125 -6.265625 1.3125 -6.265625 1.3125 -6.078125 L 1.3125 -1.015625 C 1.3125 -0.75 1.3125 -0.296875 0.3125 -0.296875 L 0.3125 0 C 0.65625 -0.015625 1.140625 -0.03125 1.453125 -0.03125 C 1.765625 -0.03125 2.25 -0.015625 2.59375 0 L 2.59375 -0.296875 C 1.59375 -0.296875 1.59375 -0.75 1.59375 -1.015625 L 1.59375 -6.046875 C 1.640625 -6 1.640625 -6 1.6875 -5.9375 L 5.640625 -0.125 C 5.71875 -0.015625 5.734375 0 5.796875 0 C 5.9375 0 5.9375 -0.0625 5.9375 -0.25 L 5.9375 -5.59375 C 5.9375 -5.859375 5.9375 -6.3125 6.9375 -6.3125 L 6.9375 -6.609375 C 6.59375 -6.609375 6.125 -6.59375 5.796875 -6.59375 C 5.484375 -6.59375 5.015625 -6.609375 4.671875 -6.609375 L 4.671875 -6.3125 C 5.671875 -6.3125 5.671875 -5.859375 5.671875 -5.59375 L 5.671875 -1.46875 Z M 2.25 -6.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-12">
<path style="stroke:none;" d="M 6.453125 -6.5625 L 0.53125 -6.5625 L 0.34375 -4.375 L 0.59375 -4.375 C 0.71875 -5.9375 0.875 -6.265625 2.328125 -6.265625 C 2.515625 -6.265625 2.765625 -6.265625 2.859375 -6.234375 C 3.0625 -6.203125 3.0625 -6.09375 3.0625 -5.875 L 3.0625 -0.765625 C 3.0625 -0.4375 3.0625 -0.296875 2.046875 -0.296875 L 1.65625 -0.296875 L 1.65625 0 C 2.046875 -0.03125 3.046875 -0.03125 3.484375 -0.03125 C 3.9375 -0.03125 4.9375 -0.03125 5.328125 0 L 5.328125 -0.296875 L 4.9375 -0.296875 C 3.921875 -0.296875 3.921875 -0.4375 3.921875 -0.765625 L 3.921875 -5.875 C 3.921875 -6.0625 3.921875 -6.203125 4.09375 -6.234375 C 4.203125 -6.265625 4.46875 -6.265625 4.65625 -6.265625 C 6.109375 -6.265625 6.265625 -5.9375 6.390625 -4.375 L 6.640625 -4.375 Z M 6.453125 -6.5625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-13">
<path style="stroke:none;" d="M 1.0625 -3.328125 L 1.0625 -0.734375 C 1.0625 -0.296875 0.953125 -0.296875 0.3125 -0.296875 L 0.3125 0 C 0.65625 -0.015625 1.140625 -0.03125 1.40625 -0.03125 C 1.65625 -0.03125 2.15625 -0.015625 2.484375 0 L 2.484375 -0.296875 C 1.84375 -0.296875 1.734375 -0.296875 1.734375 -0.734375 L 1.734375 -2.515625 C 1.734375 -3.53125 2.421875 -4.0625 3.046875 -4.0625 C 3.65625 -4.0625 3.765625 -3.546875 3.765625 -3 L 3.765625 -0.734375 C 3.765625 -0.296875 3.65625 -0.296875 3 -0.296875 L 3 0 C 3.34375 -0.015625 3.84375 -0.03125 4.09375 -0.03125 C 4.34375 -0.03125 4.859375 -0.015625 5.1875 0 L 5.1875 -0.296875 C 4.53125 -0.296875 4.421875 -0.296875 4.421875 -0.734375 L 4.421875 -2.515625 C 4.421875 -3.53125 5.109375 -4.0625 5.734375 -4.0625 C 6.34375 -4.0625 6.453125 -3.546875 6.453125 -3 L 6.453125 -0.734375 C 6.453125 -0.296875 6.34375 -0.296875 5.703125 -0.296875 L 5.703125 0 C 6.03125 -0.015625 6.53125 -0.03125 6.796875 -0.03125 C 7.046875 -0.03125 7.546875 -0.015625 7.875 0 L 7.875 -0.296875 C 7.375 -0.296875 7.125 -0.296875 7.125 -0.59375 L 7.125 -2.4375 C 7.125 -3.28125 7.125 -3.578125 6.8125 -3.921875 C 6.6875 -4.09375 6.359375 -4.28125 5.796875 -4.28125 C 4.984375 -4.28125 4.5625 -3.703125 4.390625 -3.328125 C 4.265625 -4.171875 3.546875 -4.28125 3.109375 -4.28125 C 2.40625 -4.28125 1.953125 -3.859375 1.671875 -3.265625 L 1.671875 -4.28125 L 0.3125 -4.171875 L 0.3125 -3.875 C 0.984375 -3.875 1.0625 -3.8125 1.0625 -3.328125 Z M 1.0625 -3.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-14">
<path style="stroke:none;" d="M 1.0625 -3.328125 L 1.0625 -0.734375 C 1.0625 -0.296875 0.953125 -0.296875 0.3125 -0.296875 L 0.3125 0 C 0.65625 -0.015625 1.140625 -0.03125 1.40625 -0.03125 C 1.65625 -0.03125 2.15625 -0.015625 2.484375 0 L 2.484375 -0.296875 C 1.84375 -0.296875 1.734375 -0.296875 1.734375 -0.734375 L 1.734375 -2.515625 C 1.734375 -3.53125 2.421875 -4.0625 3.046875 -4.0625 C 3.65625 -4.0625 3.765625 -3.546875 3.765625 -3 L 3.765625 -0.734375 C 3.765625 -0.296875 3.65625 -0.296875 3 -0.296875 L 3 0 C 3.34375 -0.015625 3.84375 -0.03125 4.09375 -0.03125 C 4.34375 -0.03125 4.859375 -0.015625 5.1875 0 L 5.1875 -0.296875 C 4.671875 -0.296875 4.4375 -0.296875 4.421875 -0.59375 L 4.421875 -2.4375 C 4.421875 -3.28125 4.421875 -3.578125 4.125 -3.921875 C 3.984375 -4.09375 3.671875 -4.28125 3.109375 -4.28125 C 2.40625 -4.28125 1.953125 -3.859375 1.671875 -3.265625 L 1.671875 -4.28125 L 0.3125 -4.171875 L 0.3125 -3.875 C 0.984375 -3.875 1.0625 -3.8125 1.0625 -3.328125 Z M 1.0625 -3.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-15">
<path style="stroke:none;" d="M 1.859375 -0.515625 C 1.859375 -0.796875 1.625 -1.03125 1.34375 -1.03125 C 1.0625 -1.03125 0.828125 -0.796875 0.828125 -0.515625 C 0.828125 -0.234375 1.0625 0 1.34375 0 C 1.625 0 1.859375 -0.234375 1.859375 -0.515625 Z M 1.859375 -0.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-16">
<path style="stroke:none;" d="M 1.140625 -2.109375 C 1.140625 -3.6875 1.921875 -4.09375 2.4375 -4.09375 C 2.53125 -4.09375 3.140625 -4.09375 3.484375 -3.734375 C 3.078125 -3.703125 3.015625 -3.421875 3.015625 -3.296875 C 3.015625 -3.046875 3.203125 -2.84375 3.46875 -2.84375 C 3.71875 -2.84375 3.90625 -3.015625 3.90625 -3.296875 C 3.90625 -3.96875 3.171875 -4.34375 2.4375 -4.34375 C 1.21875 -4.34375 0.328125 -3.296875 0.328125 -2.09375 C 0.328125 -0.859375 1.28125 0.109375 2.40625 0.109375 C 3.703125 0.109375 4.015625 -1.0625 4.015625 -1.15625 C 4.015625 -1.25 3.921875 -1.25 3.890625 -1.25 C 3.8125 -1.25 3.78125 -1.203125 3.765625 -1.15625 C 3.484375 -0.25 2.859375 -0.140625 2.5 -0.140625 C 1.984375 -0.140625 1.140625 -0.546875 1.140625 -2.109375 Z M 1.140625 -2.109375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-17">
<path style="stroke:none;" d="M 1.71875 -6.71875 L 0.3125 -6.609375 L 0.3125 -6.3125 C 1 -6.3125 1.078125 -6.25 1.078125 -5.78125 L 1.078125 -0.734375 C 1.078125 -0.296875 0.96875 -0.296875 0.3125 -0.296875 L 0.3125 0 C 0.640625 -0.015625 1.15625 -0.03125 1.390625 -0.03125 C 1.640625 -0.03125 2.109375 -0.015625 2.46875 0 L 2.46875 -0.296875 C 1.828125 -0.296875 1.71875 -0.296875 1.71875 -0.734375 Z M 1.71875 -6.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-18">
<path style="stroke:none;" d="M 2.78125 -2.28125 C 3.078125 -2.640625 3.4375 -3.125 3.671875 -3.375 C 3.96875 -3.71875 4.375 -3.859375 4.828125 -3.875 L 4.828125 -4.171875 C 4.578125 -4.15625 4.28125 -4.140625 4.03125 -4.140625 C 3.734375 -4.140625 3.21875 -4.171875 3.09375 -4.171875 L 3.09375 -3.875 C 3.296875 -3.859375 3.375 -3.734375 3.375 -3.578125 C 3.375 -3.421875 3.28125 -3.296875 3.234375 -3.234375 L 2.640625 -2.484375 L 1.875 -3.453125 C 1.796875 -3.5625 1.796875 -3.578125 1.796875 -3.625 C 1.796875 -3.78125 1.9375 -3.859375 2.125 -3.875 L 2.125 -4.171875 C 1.875 -4.171875 1.234375 -4.140625 1.078125 -4.140625 C 0.875 -4.140625 0.421875 -4.15625 0.171875 -4.171875 L 0.171875 -3.875 C 0.84375 -3.875 0.859375 -3.859375 1.3125 -3.28125 L 2.265625 -2.03125 L 1.359375 -0.875 C 0.890625 -0.3125 0.3125 -0.296875 0.109375 -0.296875 L 0.109375 0 C 0.375 -0.015625 0.671875 -0.03125 0.921875 -0.03125 C 1.203125 -0.03125 1.609375 -0.015625 1.84375 0 L 1.84375 -0.296875 C 1.625 -0.328125 1.5625 -0.453125 1.5625 -0.59375 C 1.5625 -0.8125 1.84375 -1.140625 2.4375 -1.828125 L 3.171875 -0.859375 C 3.25 -0.75 3.375 -0.59375 3.375 -0.546875 C 3.375 -0.453125 3.28125 -0.3125 3.015625 -0.296875 L 3.015625 0 C 3.3125 -0.015625 3.859375 -0.03125 4.0625 -0.03125 C 4.328125 -0.03125 4.703125 -0.015625 5 0 L 5 -0.296875 C 4.46875 -0.296875 4.296875 -0.3125 4.078125 -0.59375 Z M 2.78125 -2.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-19">
<path style="stroke:none;" d="M 3.21875 -0.734375 C 3.265625 -0.34375 3.53125 0.0625 3.984375 0.0625 C 4.1875 0.0625 4.78125 -0.078125 4.78125 -0.859375 L 4.78125 -1.40625 L 4.53125 -1.40625 L 4.53125 -0.859375 C 4.53125 -0.296875 4.296875 -0.234375 4.1875 -0.234375 C 3.859375 -0.234375 3.828125 -0.671875 3.828125 -0.71875 L 3.828125 -2.65625 C 3.828125 -3.078125 3.828125 -3.453125 3.484375 -3.8125 C 3.09375 -4.1875 2.609375 -4.34375 2.15625 -4.34375 C 1.359375 -4.34375 0.6875 -3.890625 0.6875 -3.25 C 0.6875 -2.953125 0.875 -2.796875 1.140625 -2.796875 C 1.40625 -2.796875 1.578125 -2.984375 1.578125 -3.234375 C 1.578125 -3.359375 1.53125 -3.671875 1.078125 -3.6875 C 1.34375 -4.015625 1.828125 -4.125 2.125 -4.125 C 2.609375 -4.125 3.15625 -3.75 3.15625 -2.890625 L 3.15625 -2.53125 C 2.65625 -2.5 1.984375 -2.46875 1.375 -2.171875 C 0.65625 -1.84375 0.40625 -1.34375 0.40625 -0.921875 C 0.40625 -0.140625 1.34375 0.109375 1.953125 0.109375 C 2.59375 0.109375 3.046875 -0.28125 3.21875 -0.734375 Z M 3.15625 -2.328125 L 3.15625 -1.359375 C 3.15625 -0.4375 2.453125 -0.109375 2.03125 -0.109375 C 1.546875 -0.109375 1.15625 -0.453125 1.15625 -0.9375 C 1.15625 -1.46875 1.5625 -2.265625 3.15625 -2.328125 Z M 3.15625 -2.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-20">
<path style="stroke:none;" d="M 3.6875 -0.53125 L 3.6875 0.109375 L 5.109375 0 L 5.109375 -0.296875 C 4.421875 -0.296875 4.34375 -0.375 4.34375 -0.84375 L 4.34375 -6.71875 L 2.953125 -6.609375 L 2.953125 -6.3125 C 3.625 -6.3125 3.703125 -6.25 3.703125 -5.78125 L 3.703125 -3.6875 C 3.421875 -4.03125 3.015625 -4.28125 2.484375 -4.28125 C 1.34375 -4.28125 0.328125 -3.328125 0.328125 -2.078125 C 0.328125 -0.859375 1.28125 0.109375 2.390625 0.109375 C 3 0.109375 3.4375 -0.21875 3.6875 -0.53125 Z M 3.6875 -3.125 L 3.6875 -1.140625 C 3.6875 -0.96875 3.6875 -0.953125 3.578125 -0.78125 C 3.28125 -0.3125 2.84375 -0.109375 2.4375 -0.109375 C 2 -0.109375 1.640625 -0.359375 1.421875 -0.71875 C 1.15625 -1.125 1.140625 -1.671875 1.140625 -2.078125 C 1.140625 -2.4375 1.15625 -3.015625 1.4375 -3.453125 C 1.640625 -3.75 2 -4.0625 2.53125 -4.0625 C 2.875 -4.0625 3.28125 -3.921875 3.578125 -3.484375 C 3.6875 -3.328125 3.6875 -3.296875 3.6875 -3.125 Z M 3.6875 -3.125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-21">
<path style="stroke:none;" d="M 8.8125 -5.671875 C 8.984375 -6.21875 9.390625 -6.3125 9.78125 -6.3125 L 9.78125 -6.609375 C 9.484375 -6.59375 9.1875 -6.59375 8.890625 -6.59375 C 8.609375 -6.59375 7.984375 -6.609375 7.734375 -6.609375 L 7.734375 -6.3125 C 8.390625 -6.3125 8.578125 -5.984375 8.578125 -5.796875 C 8.578125 -5.75 8.546875 -5.671875 8.53125 -5.609375 L 7.078125 -1.140625 L 5.53125 -5.875 C 5.515625 -5.921875 5.5 -5.984375 5.5 -6.03125 C 5.5 -6.3125 6.0625 -6.3125 6.3125 -6.3125 L 6.3125 -6.609375 C 5.96875 -6.59375 5.3125 -6.59375 4.9375 -6.59375 C 4.578125 -6.59375 4.15625 -6.609375 3.765625 -6.609375 L 3.765625 -6.3125 C 4.3125 -6.3125 4.515625 -6.3125 4.625 -5.96875 L 4.84375 -5.296875 L 3.5 -1.140625 L 1.9375 -5.90625 C 1.921875 -5.921875 1.921875 -6 1.921875 -6.03125 C 1.921875 -6.3125 2.484375 -6.3125 2.734375 -6.3125 L 2.734375 -6.609375 C 2.390625 -6.59375 1.71875 -6.59375 1.359375 -6.59375 C 0.984375 -6.59375 0.578125 -6.609375 0.171875 -6.609375 L 0.171875 -6.3125 C 0.90625 -6.3125 0.9375 -6.265625 1.0625 -5.90625 L 3 0.03125 C 3.015625 0.109375 3.046875 0.21875 3.171875 0.21875 C 3.3125 0.21875 3.328125 0.140625 3.375 0.015625 L 4.96875 -4.90625 L 6.578125 0.03125 C 6.609375 0.109375 6.640625 0.21875 6.765625 0.21875 C 6.890625 0.21875 6.921875 0.140625 6.953125 0.015625 Z M 8.8125 -5.671875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-22">
<path style="stroke:none;" d="M 1.0625 -0.734375 C 1.0625 -0.296875 0.953125 -0.296875 0.3125 -0.296875 L 0.3125 0 C 0.65625 -0.015625 1.140625 -0.03125 1.40625 -0.03125 C 1.65625 -0.03125 2.15625 -0.015625 2.484375 0 L 2.484375 -0.296875 C 1.84375 -0.296875 1.734375 -0.296875 1.734375 -0.734375 L 1.734375 -2.515625 C 1.734375 -3.53125 2.421875 -4.0625 3.046875 -4.0625 C 3.65625 -4.0625 3.765625 -3.546875 3.765625 -3 L 3.765625 -0.734375 C 3.765625 -0.296875 3.65625 -0.296875 3 -0.296875 L 3 0 C 3.34375 -0.015625 3.84375 -0.03125 4.09375 -0.03125 C 4.34375 -0.03125 4.859375 -0.015625 5.1875 0 L 5.1875 -0.296875 C 4.671875 -0.296875 4.4375 -0.296875 4.421875 -0.59375 L 4.421875 -2.4375 C 4.421875 -3.28125 4.421875 -3.578125 4.125 -3.921875 C 3.984375 -4.09375 3.671875 -4.28125 3.109375 -4.28125 C 2.296875 -4.28125 1.875 -3.703125 1.703125 -3.328125 L 1.703125 -6.71875 L 0.3125 -6.609375 L 0.3125 -6.3125 C 0.984375 -6.3125 1.0625 -6.25 1.0625 -5.78125 Z M 1.0625 -0.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-23">
<path style="stroke:none;" d="M 1.671875 -3.875 L 3.0625 -3.875 L 3.0625 -4.171875 L 1.671875 -4.171875 L 1.671875 -5.953125 L 1.4375 -5.953125 C 1.421875 -5.15625 1.140625 -4.125 0.1875 -4.09375 L 0.1875 -3.875 L 1 -3.875 L 1 -1.203125 C 1 -0.015625 1.90625 0.109375 2.25 0.109375 C 2.9375 0.109375 3.21875 -0.578125 3.21875 -1.203125 L 3.21875 -1.75 L 2.96875 -1.75 L 2.96875 -1.21875 C 2.96875 -0.5 2.6875 -0.140625 2.328125 -0.140625 C 1.671875 -0.140625 1.671875 -1.015625 1.671875 -1.1875 Z M 1.671875 -3.875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 9.140625 -2.421875 C 9.140625 -4.953125 7.1875 -6.9375 4.84375 -6.9375 C 2.46875 -6.9375 0.53125 -4.9375 0.53125 -2.421875 C 0.53125 0.109375 2.484375 2.09375 4.828125 2.09375 C 7.203125 2.09375 9.140625 0.09375 9.140625 -2.421875 Z M 4.84375 1.703125 C 2.671875 1.703125 0.921875 -0.140625 0.921875 -2.421875 C 0.921875 -4.734375 2.6875 -6.546875 4.828125 -6.546875 C 7 -6.546875 8.75 -4.703125 8.75 -2.421875 C 8.75 -0.109375 6.984375 1.703125 4.84375 1.703125 Z M 4.84375 1.703125 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<path style="fill:none;stroke-width:3.8743;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1718.320312 4361.132812 L 1718.320312 4465.898438 " transform="matrix(0.1,0,0,-0.1,-166,468)"/>
<path style="fill:none;stroke-width:3.8743;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1718.320312 4465.898438 L 2137.226562 4465.898438 " transform="matrix(0.1,0,0,-0.1,-166,468)"/>
<path style="fill:none;stroke-width:3.8743;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1718.320312 4361.132812 L 2137.226562 4361.132812 " transform="matrix(0.1,0,0,-0.1,-166,468)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="13.802" y="27.28"/>
<use xlink:href="#glyph0-2" x="17.434198" y="27.28"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="20.898345" y="27.28"/>
<use xlink:href="#glyph0-4" x="24.530543" y="27.28"/>
</g>
<path style="fill:none;stroke-width:3.86944;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1938.867188 4409.140625 L 1958.632812 4409.140625 " transform="matrix(0.1,0,0,-0.1,-166,468)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="29.863" y="27.28"/>
<use xlink:href="#glyph0-5" x="33.495197" y="27.28"/>
<use xlink:href="#glyph0-6" x="36.454228" y="27.28"/>
</g>
<path style="fill:none;stroke-width:3.8743;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2137.226562 4361.132812 L 2137.226562 4465.898438 " transform="matrix(0.1,0,0,-0.1,-166,468)"/>
<path style="fill:none;stroke-width:3.8743;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2137.226562 4465.898438 L 2556.09375 4465.898438 " transform="matrix(0.1,0,0,-0.1,-166,468)"/>
<path style="fill:none;stroke-width:3.8743;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2137.226562 4361.132812 L 2556.09375 4361.132812 " transform="matrix(0.1,0,0,-0.1,-166,468)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="55.58" y="27.28"/>
<use xlink:href="#glyph0-8" x="59.938637" y="27.28"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="62.562056" y="27.28"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="65.858153" y="27.28"/>
</g>
<path style="fill:none;stroke-width:3.86944;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2358.867188 4409.140625 L 2378.632812 4409.140625 " transform="matrix(0.1,0,0,-0.1,-166,468)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="71.864" y="27.28"/>
<use xlink:href="#glyph0-5" x="75.496197" y="27.28"/>
<use xlink:href="#glyph0-6" x="78.455228" y="27.28"/>
</g>
<path style="fill:none;stroke-width:3.8743;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2556.09375 4361.132812 L 2556.09375 4465.898438 " transform="matrix(0.1,0,0,-0.1,-166,468)"/>
<path style="fill:none;stroke-width:3.8743;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2556.09375 4465.898438 L 3393.90625 4465.898438 " transform="matrix(0.1,0,0,-0.1,-166,468)"/>
<path style="fill:none;stroke-width:3.8743;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2556.09375 4361.132812 L 3393.90625 4361.132812 " transform="matrix(0.1,0,0,-0.1,-166,468)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="115.27" y="27.28"/>
<use xlink:href="#glyph0-11" x="119.628637" y="27.28"/>
<use xlink:href="#glyph0-12" x="123.260834" y="27.28"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="126.556932" y="27.28"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="129.213739" y="27.28"/>
</g>
<path style="fill:none;stroke-width:3.86944;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2985.664062 4409.140625 L 3005.46875 4409.140625 " transform="matrix(0.1,0,0,-0.1,-166,468)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="134.546" y="27.28"/>
<use xlink:href="#glyph0-5" x="138.178198" y="27.28"/>
<use xlink:href="#glyph0-6" x="141.137228" y="27.28"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-14" x="144.43335" y="27.28"/>
</g>
<path style="fill:none;stroke-width:3.8743;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3393.90625 4470.3125 L 3393.90625 4570.585938 " transform="matrix(0.1,0,0,-0.1,-166,468)"/>
<path style="fill:none;stroke-width:3.09935;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3409.414062 4481.953125 C 3403.59375 4480.976562 3394.882812 4470.3125 3393.90625 4467.421875 C 3392.96875 4470.3125 3384.21875 4480.976562 3378.4375 4481.953125 " transform="matrix(0.1,0,0,-0.1,-166,468)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="154.091" y="6.577"/>
<use xlink:href="#glyph0-12" x="157.723197" y="6.577"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="161.019295" y="6.577"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="166.332966" y="6.577"/>
<use xlink:href="#glyph0-16" x="169.965163" y="6.577"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="171.915903" y="6.577"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="177.160845" y="6.577"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="181.35498" y="6.577"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-17" x="184.64639" y="6.577"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="186.597129" y="6.577"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-18" x="190.064752" y="6.577"/>
</g>
<path style="fill:none;stroke-width:3.8743;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3393.90625 4361.132812 L 3393.90625 4465.898438 " transform="matrix(0.1,0,0,-0.1,-166,468)"/>
<path style="fill:none;stroke-width:3.8743;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3393.90625 4465.898438 L 4231.71875 4465.898438 " transform="matrix(0.1,0,0,-0.1,-166,468)"/>
<path style="fill:none;stroke-width:3.8743;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3393.90625 4361.132812 L 4231.71875 4361.132812 " transform="matrix(0.1,0,0,-0.1,-166,468)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="199.049" y="27.28"/>
<use xlink:href="#glyph0-11" x="203.407637" y="27.28"/>
<use xlink:href="#glyph0-12" x="207.039835" y="27.28"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="210.335932" y="27.28"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="212.992739" y="27.28"/>
</g>
<path style="fill:none;stroke-width:3.86944;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3823.476562 4409.140625 L 3843.242188 4409.140625 " transform="matrix(0.1,0,0,-0.1,-166,468)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="218.325" y="27.28"/>
<use xlink:href="#glyph0-5" x="221.957198" y="27.28"/>
<use xlink:href="#glyph0-6" x="224.916228" y="27.28"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-19" x="228.21235" y="27.28"/>
</g>
<path style="fill:none;stroke-width:3.8743;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4231.71875 4361.132812 L 4231.71875 4465.898438 " transform="matrix(0.1,0,0,-0.1,-166,468)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="33.591" y="63.074"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="39.91392" y="63.074"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="42.604642" y="63.074"/>
<use xlink:href="#glyph1-4" x="47.447572" y="63.074"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="52.829035" y="63.074"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="56.622994" y="63.074"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-7" x="64.152713" y="63.074"/>
<use xlink:href="#glyph1-8" x="68.995643" y="63.074"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-9" x="75.996477" y="63.074"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-10" x="82.991596" y="63.074"/>
<use xlink:href="#glyph1-11" x="90.255991" y="63.074"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="100.745681" y="63.074"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="107.7408" y="63.074"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-13" x="110.431547" y="63.074"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="118.502774" y="63.074"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-14" x="121.193521" y="63.074"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="126.574959" y="63.074"/>
<use xlink:href="#glyph1-15" x="131.417889" y="63.074"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-16" x="141.105" y="62.782203"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="138.41398" y="63.074"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-10" x="148.10031" y="63.074"/>
<use xlink:href="#glyph1-17" x="155.364705" y="63.074"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="158.055427" y="63.074"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-18" x="162.359831" y="63.074"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-19" x="167.472019" y="63.074"/>
<use xlink:href="#glyph1-14" x="172.314949" y="63.074"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-20" x="177.696411" y="63.074"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="183.07785" y="63.074"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="187.382254" y="63.074"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-21" x="194.40148" y="63.074"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-19" x="203.552642" y="63.074"/>
<use xlink:href="#glyph1-16" x="208.395572" y="63.074"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-22" x="212.428833" y="63.074"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-23" x="217.538982" y="63.074"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="221.305812" y="63.074"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="225.610215" y="63.074"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 53 KiB

View file

@ -0,0 +1,781 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="466pt" height="289pt" viewBox="0 0 466 289" 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 4.28125 -3.375 C 4.28125 -3.453125 4.28125 -3.515625 4.203125 -3.515625 C 4.15625 -3.515625 4.140625 -3.5 4.109375 -3.453125 L 3.8125 -3.078125 C 3.515625 -3.328125 3.125 -3.515625 2.640625 -3.515625 C 1.4375 -3.515625 0.484375 -2.6875 0.484375 -1.703125 C 0.484375 -0.71875 1.4375 0.109375 2.640625 0.109375 C 3.609375 0.109375 4.28125 -0.5 4.28125 -1.171875 C 4.28125 -1.25 4.265625 -1.265625 4.1875 -1.265625 C 4.125 -1.265625 4.078125 -1.265625 4.078125 -1.1875 C 4.03125 -0.421875 3.3125 -0.109375 2.734375 -0.109375 C 2.03125 -0.109375 1.0625 -0.5 1.0625 -1.703125 C 1.0625 -2.890625 2 -3.296875 2.71875 -3.296875 C 3.171875 -3.296875 3.90625 -3.0625 4.0625 -2.125 C 4.078125 -2.0625 4.140625 -2.0625 4.171875 -2.0625 C 4.28125 -2.0625 4.28125 -2.109375 4.28125 -2.203125 Z M 4.28125 -3.375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 2.609375 -3.4375 C 2.578125 -3.53125 2.5625 -3.5625 2.4375 -3.5625 C 2.359375 -3.5625 2.3125 -3.546875 2.265625 -3.453125 L 0.984375 -0.515625 C 0.875 -0.265625 0.609375 -0.21875 0.359375 -0.21875 L 0.359375 0 C 0.53125 -0.015625 0.75 -0.015625 0.9375 -0.015625 C 1 -0.015625 1.34375 -0.015625 1.578125 0 L 1.578125 -0.21875 C 1.296875 -0.21875 1.203125 -0.34375 1.203125 -0.4375 C 1.203125 -0.46875 1.21875 -0.484375 1.21875 -0.515625 L 1.484375 -1.109375 L 3.078125 -1.109375 L 3.390625 -0.40625 C 3.421875 -0.359375 3.421875 -0.34375 3.421875 -0.34375 C 3.421875 -0.21875 3.140625 -0.21875 2.984375 -0.21875 L 2.984375 0 C 3.1875 0 3.5625 -0.015625 3.796875 -0.015625 C 4.046875 -0.015625 4.328125 -0.015625 4.53125 0 L 4.53125 -0.21875 L 4.40625 -0.21875 C 4.09375 -0.21875 4.015625 -0.25 3.953125 -0.390625 Z M 2.28125 -2.9375 L 2.984375 -1.328125 L 1.578125 -1.328125 Z M 2.28125 -2.9375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 1.546875 -3.34375 C 1.484375 -3.40625 1.484375 -3.40625 1.375 -3.40625 L 0.40625 -3.40625 L 0.40625 -3.1875 L 0.609375 -3.1875 C 0.671875 -3.1875 0.890625 -3.1875 0.953125 -3.171875 C 0.96875 -3.15625 0.96875 -3.15625 0.96875 -3.078125 L 0.96875 -0.546875 C 0.96875 -0.421875 0.96875 -0.21875 0.40625 -0.21875 L 0.40625 0 C 0.640625 -0.015625 0.859375 -0.015625 1.078125 -0.015625 C 1.21875 -0.015625 1.546875 -0.015625 1.75 0 L 1.75 -0.21875 C 1.203125 -0.21875 1.203125 -0.421875 1.203125 -0.546875 L 1.203125 -3.015625 L 3.671875 -0.0625 C 3.734375 0 3.75 0 3.796875 0 C 3.921875 0 3.921875 -0.046875 3.921875 -0.15625 L 3.921875 -2.84375 C 3.921875 -2.984375 3.921875 -3.1875 4.46875 -3.1875 L 4.46875 -3.40625 C 4.25 -3.390625 4.03125 -3.390625 3.796875 -3.390625 C 3.65625 -3.390625 3.34375 -3.390625 3.140625 -3.40625 L 3.140625 -3.1875 C 3.6875 -3.1875 3.6875 -2.984375 3.6875 -2.84375 L 3.6875 -0.78125 Z M 1.546875 -3.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 3.734375 -1.34375 L 3.53125 -1.34375 C 3.453125 -0.765625 3.328125 -0.21875 2.359375 -0.21875 L 1.734375 -0.21875 C 1.5 -0.21875 1.5 -0.25 1.5 -0.40625 L 1.5 -2.96875 C 1.5 -3.125 1.5 -3.1875 1.96875 -3.1875 L 2.1875 -3.1875 L 2.1875 -3.40625 C 1.90625 -3.390625 1.546875 -3.390625 1.25 -3.390625 C 0.953125 -3.390625 0.671875 -3.390625 0.40625 -3.40625 L 0.40625 -3.1875 L 0.5625 -3.1875 C 0.96875 -3.1875 0.96875 -3.140625 0.96875 -2.984375 L 0.96875 -0.421875 C 0.96875 -0.265625 0.96875 -0.21875 0.5625 -0.21875 L 0.40625 -0.21875 L 0.40625 0 L 3.578125 0 Z M 3.734375 -1.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 3.921875 -2.984375 C 3.921875 -3.140625 3.921875 -3.1875 4.328125 -3.1875 L 4.46875 -3.1875 L 4.46875 -3.40625 C 4.25 -3.390625 3.9375 -3.390625 3.65625 -3.390625 C 3.375 -3.390625 3.0625 -3.390625 2.84375 -3.40625 L 2.84375 -3.1875 L 2.984375 -3.1875 C 3.390625 -3.1875 3.390625 -3.140625 3.390625 -2.984375 L 3.390625 -1.875 L 1.5 -1.875 L 1.5 -2.984375 C 1.5 -3.140625 1.5 -3.1875 1.90625 -3.1875 L 2.046875 -3.1875 L 2.046875 -3.40625 C 1.828125 -3.390625 1.515625 -3.390625 1.234375 -3.390625 C 0.953125 -3.390625 0.640625 -3.390625 0.40625 -3.40625 L 0.40625 -3.1875 L 0.5625 -3.1875 C 0.96875 -3.1875 0.96875 -3.140625 0.96875 -2.984375 L 0.96875 -0.421875 C 0.96875 -0.265625 0.96875 -0.21875 0.5625 -0.21875 L 0.40625 -0.21875 L 0.40625 0 C 0.640625 -0.015625 0.953125 -0.015625 1.234375 -0.015625 C 1.515625 -0.015625 1.828125 -0.015625 2.046875 0 L 2.046875 -0.21875 L 1.90625 -0.21875 C 1.5 -0.21875 1.5 -0.265625 1.5 -0.421875 L 1.5 -1.65625 L 3.390625 -1.65625 L 3.390625 -0.421875 C 3.390625 -0.265625 3.390625 -0.21875 2.984375 -0.21875 L 2.84375 -0.21875 L 2.84375 0 C 3.0625 -0.015625 3.375 -0.015625 3.65625 -0.015625 C 3.9375 -0.015625 4.25 -0.015625 4.46875 0 L 4.46875 -0.21875 L 4.328125 -0.21875 C 3.921875 -0.21875 3.921875 -0.265625 3.921875 -0.421875 Z M 3.921875 -2.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 4.296875 -3.359375 L 0.484375 -3.359375 L 0.359375 -2.171875 L 0.578125 -2.171875 C 0.65625 -3.078125 0.84375 -3.140625 1.65625 -3.140625 C 1.765625 -3.140625 1.9375 -3.140625 1.96875 -3.140625 C 2.109375 -3.125 2.125 -3.109375 2.125 -2.953125 L 2.125 -0.421875 C 2.125 -0.265625 2.125 -0.21875 1.59375 -0.21875 L 1.34375 -0.21875 L 1.34375 0 C 1.59375 -0.015625 2.109375 -0.015625 2.390625 -0.015625 C 2.65625 -0.015625 3.1875 -0.015625 3.4375 0 L 3.4375 -0.21875 L 3.1875 -0.21875 C 2.65625 -0.21875 2.65625 -0.265625 2.65625 -0.421875 L 2.65625 -2.953125 C 2.65625 -3.09375 2.65625 -3.125 2.796875 -3.140625 C 2.84375 -3.140625 3 -3.140625 3.109375 -3.140625 C 3.921875 -3.140625 4.109375 -3.09375 4.203125 -2.171875 L 4.40625 -2.171875 Z M 4.296875 -3.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 1.265625 -3.078125 C 1.265625 -3.234375 1.125 -3.375 0.953125 -3.375 C 0.796875 -3.375 0.65625 -3.25 0.65625 -3.078125 C 0.65625 -2.890625 0.796875 -2.765625 0.953125 -2.765625 C 1.125 -2.765625 1.265625 -2.90625 1.265625 -3.078125 Z M 0.4375 -2.140625 L 0.4375 -1.921875 C 0.78125 -1.921875 0.828125 -1.890625 0.828125 -1.65625 L 0.828125 -0.421875 C 0.828125 -0.265625 0.828125 -0.21875 0.5 -0.21875 L 0.40625 -0.21875 L 0.40625 0 C 0.625 -0.015625 0.828125 -0.015625 1.03125 -0.015625 C 1.21875 -0.015625 1.4375 -0.015625 1.625 0 L 1.625 -0.21875 C 1.296875 -0.21875 1.25 -0.21875 1.25 -0.421875 L 1.25 -2.203125 Z M 0.4375 -2.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 4.71875 -1.5 C 4.71875 -2.125 4.25 -2.203125 3.890625 -2.203125 C 3.390625 -2.203125 3.109375 -1.953125 2.96875 -1.734375 C 2.84375 -2.203125 2.34375 -2.203125 2.15625 -2.203125 C 1.640625 -2.203125 1.34375 -1.921875 1.21875 -1.71875 L 1.21875 -2.203125 L 0.40625 -2.140625 L 0.40625 -1.921875 C 0.78125 -1.921875 0.828125 -1.890625 0.828125 -1.65625 L 0.828125 -0.421875 C 0.828125 -0.265625 0.828125 -0.21875 0.5 -0.21875 L 0.40625 -0.21875 L 0.40625 0 C 0.625 -0.015625 0.828125 -0.015625 1.046875 -0.015625 C 1.25 -0.015625 1.46875 -0.015625 1.6875 0 L 1.6875 -0.21875 L 1.59375 -0.21875 C 1.265625 -0.21875 1.265625 -0.265625 1.265625 -0.421875 L 1.265625 -1.28125 C 1.265625 -1.84375 1.78125 -2.03125 2.09375 -2.03125 C 2.46875 -2.03125 2.546875 -1.828125 2.546875 -1.515625 L 2.546875 -0.421875 C 2.546875 -0.265625 2.546875 -0.21875 2.234375 -0.21875 L 2.140625 -0.21875 L 2.140625 0 C 2.359375 -0.015625 2.5625 -0.015625 2.78125 -0.015625 C 2.984375 -0.015625 3.203125 -0.015625 3.40625 0 L 3.40625 -0.21875 L 3.3125 -0.21875 C 3 -0.21875 3 -0.265625 3 -0.421875 L 3 -1.28125 C 3 -1.84375 3.5 -2.03125 3.828125 -2.03125 C 4.1875 -2.03125 4.28125 -1.828125 4.28125 -1.515625 L 4.28125 -0.421875 C 4.28125 -0.265625 4.28125 -0.21875 3.953125 -0.21875 L 3.875 -0.21875 L 3.875 0 C 4.078125 -0.015625 4.296875 -0.015625 4.5 -0.015625 C 4.71875 -0.015625 4.921875 -0.015625 5.140625 0 L 5.140625 -0.21875 L 5.046875 -0.21875 C 4.71875 -0.21875 4.71875 -0.265625 4.71875 -0.421875 Z M 4.71875 -1.5 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 2.578125 -1.125 C 2.6875 -1.125 2.71875 -1.125 2.71875 -1.234375 C 2.71875 -1.578125 2.546875 -2.234375 1.609375 -2.234375 C 0.859375 -2.234375 0.328125 -1.6875 0.328125 -1.09375 C 0.328125 -0.46875 0.9375 0.0625 1.6875 0.0625 C 2.484375 0.0625 2.71875 -0.5 2.71875 -0.59375 C 2.71875 -0.671875 2.640625 -0.671875 2.625 -0.671875 C 2.546875 -0.671875 2.53125 -0.65625 2.5 -0.59375 C 2.375 -0.25 2 -0.125 1.71875 -0.125 C 1.3125 -0.125 1.09375 -0.34375 1.015625 -0.4375 C 0.828125 -0.671875 0.828125 -0.984375 0.828125 -1.125 Z M 0.828125 -1.28125 C 0.890625 -1.9375 1.375 -2.0625 1.609375 -2.0625 C 2.296875 -2.0625 2.34375 -1.421875 2.34375 -1.28125 Z M 0.828125 -1.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 2.625 -1.90625 L 3.484375 -2.90625 C 3.671875 -3.109375 3.953125 -3.1875 4.296875 -3.1875 L 4.296875 -3.40625 C 4.0625 -3.390625 3.90625 -3.390625 3.671875 -3.390625 C 3.40625 -3.390625 3.125 -3.390625 2.953125 -3.40625 L 2.953125 -3.1875 C 3.171875 -3.1875 3.234375 -3.0625 3.234375 -3 C 3.234375 -2.953125 3.203125 -2.921875 3.171875 -2.875 L 2.484375 -2.078125 L 1.71875 -3 C 1.671875 -3.046875 1.671875 -3.0625 1.671875 -3.078125 C 1.671875 -3.125 1.78125 -3.1875 1.96875 -3.1875 L 1.96875 -3.40625 C 1.78125 -3.40625 1.40625 -3.390625 1.140625 -3.390625 C 0.859375 -3.390625 0.640625 -3.390625 0.40625 -3.40625 L 0.40625 -3.1875 L 0.546875 -3.1875 C 0.84375 -3.1875 0.9375 -3.15625 1.03125 -3.046875 L 2.171875 -1.703125 L 1.140625 -0.5 C 0.9375 -0.265625 0.578125 -0.21875 0.328125 -0.21875 L 0.328125 0 C 0.5625 -0.015625 0.71875 -0.015625 0.953125 -0.015625 C 1.21875 -0.015625 1.5 -0.015625 1.671875 0 L 1.671875 -0.21875 C 1.453125 -0.21875 1.390625 -0.328125 1.390625 -0.40625 C 1.390625 -0.453125 1.421875 -0.5 1.453125 -0.53125 L 2.3125 -1.53125 L 3.265625 -0.40625 C 3.296875 -0.359375 3.296875 -0.34375 3.296875 -0.34375 C 3.296875 -0.28125 3.1875 -0.21875 3 -0.21875 L 3 0 C 3.234375 -0.015625 3.578125 -0.015625 3.828125 -0.015625 C 4.03125 -0.015625 4.3125 -0.015625 4.5625 0 L 4.5625 -0.21875 L 4.4375 -0.21875 C 4.0625 -0.21875 4.015625 -0.265625 3.921875 -0.390625 Z M 2.625 -1.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 2.96875 -1.703125 C 3.296875 -1.78125 3.90625 -2.03125 3.90625 -2.484375 C 3.90625 -3 3.140625 -3.40625 2.3125 -3.40625 L 0.421875 -3.40625 L 0.421875 -3.1875 L 0.578125 -3.1875 C 0.984375 -3.1875 0.984375 -3.140625 0.984375 -2.984375 L 0.984375 -0.421875 C 0.984375 -0.265625 0.984375 -0.21875 0.578125 -0.21875 L 0.421875 -0.21875 L 0.421875 0 C 0.65625 -0.015625 0.953125 -0.015625 1.234375 -0.015625 C 1.5 -0.015625 1.796875 -0.015625 2.03125 0 L 2.03125 -0.21875 L 1.890625 -0.21875 C 1.484375 -0.21875 1.484375 -0.265625 1.484375 -0.421875 L 1.484375 -1.625 L 2.25 -1.625 C 2.515625 -1.625 2.75 -1.546875 2.90625 -1.421875 C 3.09375 -1.265625 3.09375 -1.15625 3.09375 -0.859375 C 3.09375 -0.46875 3.09375 -0.28125 3.359375 -0.078125 C 3.546875 0.0625 3.84375 0.109375 4.0625 0.109375 C 4.546875 0.109375 4.671875 -0.296875 4.671875 -0.46875 C 4.671875 -0.5625 4.625 -0.5625 4.5625 -0.5625 C 4.484375 -0.5625 4.46875 -0.53125 4.46875 -0.46875 C 4.4375 -0.1875 4.25 -0.0625 4.09375 -0.0625 C 3.75 -0.0625 3.703125 -0.4375 3.65625 -0.75 C 3.65625 -0.890625 3.625 -1.09375 3.609375 -1.15625 C 3.53125 -1.453125 3.28125 -1.625 2.96875 -1.703125 Z M 2.25 -1.78125 L 1.484375 -1.78125 L 1.484375 -3 C 1.484375 -3.140625 1.5 -3.171875 1.640625 -3.1875 L 2 -3.1875 C 2.5625 -3.1875 3.328125 -3.1875 3.328125 -2.484375 C 3.328125 -1.90625 2.75 -1.78125 2.25 -1.78125 Z M 2.25 -1.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 1.21875 -1.109375 C 1.21875 -1.578125 1.484375 -2.03125 1.953125 -2.03125 C 1.953125 -2.03125 1.890625 -1.96875 1.890625 -1.859375 C 1.890625 -1.6875 2.03125 -1.609375 2.140625 -1.609375 C 2.265625 -1.609375 2.390625 -1.6875 2.390625 -1.859375 C 2.390625 -2.046875 2.203125 -2.203125 1.9375 -2.203125 C 1.6875 -2.203125 1.375 -2.078125 1.1875 -1.65625 L 1.171875 -1.65625 L 1.171875 -2.203125 L 0.375 -2.140625 L 0.375 -1.921875 C 0.75 -1.921875 0.796875 -1.890625 0.796875 -1.65625 L 0.796875 -0.421875 C 0.796875 -0.265625 0.796875 -0.21875 0.46875 -0.21875 L 0.375 -0.21875 L 0.375 0 C 0.59375 -0.015625 0.8125 -0.015625 1.015625 -0.015625 C 1.28125 -0.015625 1.53125 -0.015625 1.734375 0 L 1.734375 -0.21875 L 1.59375 -0.21875 C 1.21875 -0.21875 1.21875 -0.265625 1.21875 -0.421875 Z M 1.21875 -1.109375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 2.234375 -2.015625 C 2.171875 -1.953125 2.125 -1.875 2.125 -1.796875 C 2.125 -1.625 2.25 -1.53125 2.390625 -1.53125 C 2.515625 -1.53125 2.65625 -1.609375 2.65625 -1.796875 C 2.65625 -2.21875 2.109375 -2.234375 1.75 -2.234375 C 0.78125 -2.234375 0.359375 -1.578125 0.359375 -1.078125 C 0.359375 -0.453125 0.9375 0.0625 1.6875 0.0625 C 2.5625 0.0625 2.71875 -0.546875 2.71875 -0.59375 C 2.71875 -0.671875 2.65625 -0.671875 2.625 -0.671875 C 2.546875 -0.671875 2.53125 -0.65625 2.515625 -0.59375 C 2.34375 -0.171875 1.984375 -0.125 1.765625 -0.125 C 1.328125 -0.125 0.859375 -0.40625 0.859375 -1.078125 C 0.859375 -1.296875 0.90625 -1.578125 1.09375 -1.78125 C 1.328125 -2.046875 1.625 -2.046875 1.78125 -2.046875 C 1.921875 -2.046875 2.0625 -2.046875 2.234375 -2.015625 Z M 2.234375 -2.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 2.234375 -2.09375 C 2.234375 -2.171875 2.234375 -2.234375 2.140625 -2.234375 C 2.125 -2.234375 2.109375 -2.234375 2.0625 -2.203125 C 2.046875 -2.171875 1.953125 -2.09375 1.9375 -2.09375 C 1.921875 -2.09375 1.921875 -2.09375 1.890625 -2.125 C 1.78125 -2.1875 1.59375 -2.234375 1.34375 -2.234375 C 0.515625 -2.234375 0.34375 -1.859375 0.34375 -1.625 C 0.34375 -1.15625 0.921875 -1.0625 1.390625 -1 C 1.671875 -0.953125 2.140625 -0.875 2.140625 -0.546875 C 2.140625 -0.375 1.984375 -0.109375 1.390625 -0.109375 C 1.046875 -0.109375 0.71875 -0.234375 0.5625 -0.765625 C 0.546875 -0.859375 0.53125 -0.875 0.453125 -0.875 C 0.34375 -0.875 0.34375 -0.828125 0.34375 -0.71875 L 0.34375 -0.078125 C 0.34375 0 0.34375 0.0625 0.421875 0.0625 C 0.46875 0.0625 0.46875 0.046875 0.5625 -0.046875 L 0.703125 -0.171875 C 0.953125 0.046875 1.265625 0.0625 1.390625 0.0625 C 2.21875 0.0625 2.375 -0.375 2.375 -0.625 C 2.375 -0.859375 2.265625 -1.015625 2.0625 -1.140625 C 1.875 -1.265625 1.71875 -1.28125 1.296875 -1.34375 C 0.984375 -1.390625 0.59375 -1.453125 0.59375 -1.71875 C 0.59375 -1.890625 0.796875 -2.078125 1.328125 -2.078125 C 1.75 -2.078125 1.984375 -1.921875 2.015625 -1.578125 C 2.03125 -1.5 2.03125 -1.46875 2.125 -1.46875 C 2.234375 -1.46875 2.234375 -1.5 2.234375 -1.609375 Z M 2.234375 -2.09375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 2.75 -1.625 C 2.84375 -1.796875 2.96875 -1.921875 3.28125 -1.921875 L 3.28125 -2.140625 C 3.15625 -2.140625 3.015625 -2.125 2.84375 -2.125 C 2.84375 -2.125 2.515625 -2.140625 2.34375 -2.140625 L 2.34375 -1.921875 C 2.46875 -1.921875 2.5625 -1.859375 2.5625 -1.75 C 2.5625 -1.703125 2.53125 -1.65625 2.53125 -1.65625 L 1.90625 -0.40625 L 1.21875 -1.75 C 1.203125 -1.765625 1.1875 -1.796875 1.1875 -1.828125 C 1.1875 -1.921875 1.359375 -1.921875 1.453125 -1.921875 L 1.453125 -2.140625 C 1.234375 -2.140625 0.875 -2.125 0.84375 -2.125 C 0.640625 -2.125 0.484375 -2.125 0.28125 -2.140625 L 0.28125 -1.921875 C 0.578125 -1.921875 0.640625 -1.921875 0.71875 -1.78125 L 1.609375 -0.0625 C 1.640625 0.015625 1.671875 0.0625 1.78125 0.0625 C 1.890625 0.0625 1.921875 0 1.953125 -0.0625 Z M 2.75 -1.625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 2.109375 -3.40625 L 2.109375 -3.1875 C 2.46875 -3.1875 2.515625 -3.15625 2.515625 -2.90625 L 2.515625 -1.9375 C 2.40625 -2.03125 2.140625 -2.203125 1.71875 -2.203125 C 0.984375 -2.203125 0.359375 -1.703125 0.359375 -1.078125 C 0.359375 -0.46875 0.921875 0.0625 1.671875 0.0625 C 2.078125 0.0625 2.359375 -0.125 2.5 -0.25 L 2.5 0.0625 L 3.359375 0 L 3.359375 -0.21875 C 2.984375 -0.21875 2.9375 -0.25 2.9375 -0.5 L 2.9375 -3.453125 Z M 2.5 -0.546875 C 2.265625 -0.171875 1.890625 -0.109375 1.6875 -0.109375 C 1.453125 -0.109375 1.203125 -0.203125 1.03125 -0.421875 C 0.875 -0.640625 0.859375 -0.921875 0.859375 -1.078125 C 0.859375 -1.203125 0.875 -1.53125 1.078125 -1.765625 C 1.25 -1.9375 1.515625 -2.03125 1.765625 -2.03125 C 1.90625 -2.03125 2.265625 -2.015625 2.5 -1.671875 Z M 2.5 -0.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 3.0625 -1.0625 C 3.0625 -1.6875 2.484375 -2.234375 1.6875 -2.234375 C 0.90625 -2.234375 0.328125 -1.6875 0.328125 -1.0625 C 0.328125 -0.46875 0.921875 0.0625 1.6875 0.0625 C 2.484375 0.0625 3.0625 -0.46875 3.0625 -1.0625 Z M 1.6875 -0.125 C 0.828125 -0.125 0.828125 -0.875 0.828125 -1.109375 C 0.828125 -1.328125 0.828125 -2.0625 1.6875 -2.0625 C 2.5625 -2.0625 2.5625 -1.328125 2.5625 -1.109375 C 2.5625 -0.875 2.5625 -0.125 1.6875 -0.125 Z M 1.6875 -0.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-18">
<path style="stroke:none;" d="M 2.984375 -1.5 C 2.984375 -2.046875 2.609375 -2.203125 2.15625 -2.203125 C 1.625 -2.203125 1.34375 -1.90625 1.21875 -1.71875 L 1.21875 -2.203125 L 0.40625 -2.140625 L 0.40625 -1.921875 C 0.78125 -1.921875 0.828125 -1.890625 0.828125 -1.65625 L 0.828125 -0.421875 C 0.828125 -0.265625 0.828125 -0.21875 0.5 -0.21875 L 0.40625 -0.21875 L 0.40625 0 C 0.625 -0.015625 0.828125 -0.015625 1.046875 -0.015625 C 1.25 -0.015625 1.46875 -0.015625 1.6875 0 L 1.6875 -0.21875 L 1.59375 -0.21875 C 1.265625 -0.21875 1.265625 -0.265625 1.265625 -0.421875 L 1.265625 -1.28125 C 1.265625 -1.84375 1.78125 -2.03125 2.09375 -2.03125 C 2.46875 -2.03125 2.546875 -1.828125 2.546875 -1.515625 L 2.546875 -0.421875 C 2.546875 -0.265625 2.546875 -0.21875 2.21875 -0.21875 L 2.140625 -0.21875 L 2.140625 0 C 2.34375 -0.015625 2.5625 -0.015625 2.765625 -0.015625 C 2.984375 -0.015625 3.1875 -0.015625 3.40625 0 L 3.40625 -0.21875 L 3.3125 -0.21875 C 2.984375 -0.21875 2.984375 -0.265625 2.984375 -0.421875 Z M 2.984375 -1.5 "/>
</symbol>
<symbol overflow="visible" id="glyph0-19">
<path style="stroke:none;" d="M 2.609375 -1.484375 C 2.609375 -1.953125 2.109375 -2.234375 1.484375 -2.234375 C 1.1875 -2.234375 0.609375 -2.21875 0.609375 -1.796875 C 0.609375 -1.609375 0.75 -1.53125 0.875 -1.53125 C 1 -1.53125 1.125 -1.625 1.125 -1.796875 C 1.125 -1.90625 1.0625 -1.984375 1.015625 -2.015625 C 1.1875 -2.0625 1.421875 -2.0625 1.46875 -2.0625 C 1.90625 -2.0625 2.15625 -1.828125 2.15625 -1.46875 L 2.15625 -1.34375 C 1.6875 -1.328125 1.40625 -1.3125 1.03125 -1.171875 C 0.703125 -1.0625 0.40625 -0.84375 0.40625 -0.515625 C 0.40625 -0.0625 0.984375 0.0625 1.390625 0.0625 C 1.765625 0.0625 2.0625 -0.09375 2.21875 -0.359375 C 2.25 -0.171875 2.359375 0.03125 2.609375 0.03125 C 2.640625 0.03125 3.21875 0.03125 3.21875 -0.453125 L 3.21875 -0.71875 L 3 -0.71875 L 3 -0.453125 C 3 -0.40625 3 -0.1875 2.8125 -0.1875 C 2.609375 -0.1875 2.609375 -0.40625 2.609375 -0.453125 Z M 2.15625 -0.703125 C 2.15625 -0.15625 1.5625 -0.109375 1.4375 -0.109375 C 1.140625 -0.109375 0.875 -0.265625 0.875 -0.515625 C 0.875 -0.6875 0.96875 -1.140625 2.15625 -1.203125 Z M 2.15625 -0.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-20">
<path style="stroke:none;" d="M 1.21875 -1.921875 L 2.109375 -1.921875 L 2.109375 -2.140625 L 1.21875 -2.140625 L 1.21875 -3.0625 L 1.015625 -3.0625 C 1.015625 -2.59375 0.765625 -2.109375 0.25 -2.09375 L 0.25 -1.921875 L 0.78125 -1.921875 L 0.78125 -0.625 C 0.78125 -0.0625 1.25 0.0625 1.5625 0.0625 C 1.9375 0.0625 2.21875 -0.21875 2.21875 -0.625 L 2.21875 -0.90625 L 2 -0.90625 L 2 -0.640625 C 2 -0.265625 1.78125 -0.125 1.609375 -0.125 C 1.21875 -0.125 1.21875 -0.515625 1.21875 -0.625 Z M 1.21875 -1.921875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M -5.734375 -2.71875 C -5.953125 -2.71875 -5.96875 -2.71875 -5.96875 -2.5 C -5.40625 -1.9375 -5.40625 -1.109375 -5.40625 -0.828125 L -5.125 -0.828125 C -5.125 -1 -5.125 -1.546875 -5.359375 -2.03125 L -0.71875 -2.03125 C -0.390625 -2.03125 -0.28125 -2.015625 -0.28125 -1.171875 L -0.28125 -0.890625 L 0 -0.890625 C -0.03125 -1.203125 -0.03125 -2.015625 -0.03125 -2.375 C -0.03125 -2.75 -0.03125 -3.546875 0 -3.875 L -0.28125 -3.875 L -0.28125 -3.59375 C -0.28125 -2.75 -0.390625 -2.71875 -0.71875 -2.71875 Z M -5.734375 -2.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M -1.59375 -4.140625 L -1.59375 -3.890625 C -1.46875 -3.875 -0.9375 -3.796875 -0.796875 -3.6875 C -0.71875 -3.625 -0.71875 -3.015625 -0.71875 -2.828125 L -0.71875 -1.234375 L -1.5625 -2.125 C -2.828125 -3.59375 -3.3125 -4.140625 -4.21875 -4.140625 C -5.25 -4.140625 -5.96875 -3.296875 -5.96875 -2.1875 C -5.96875 -1.15625 -5.15625 -0.453125 -4.34375 -0.453125 C -3.890625 -0.453125 -3.84375 -0.84375 -3.84375 -0.921875 C -3.84375 -1.125 -3.984375 -1.390625 -4.3125 -1.390625 C -4.578125 -1.390625 -4.78125 -1.203125 -4.78125 -0.921875 C -4.78125 -0.875 -4.78125 -0.859375 -4.765625 -0.8125 C -5.40625 -1.03125 -5.6875 -1.609375 -5.6875 -2.09375 C -5.6875 -3 -4.84375 -3.3125 -4.21875 -3.3125 C -3.3125 -3.3125 -2.5625 -2.625 -2.09375 -2.203125 L -0.328125 -0.5625 C -0.21875 -0.453125 -0.203125 -0.453125 0 -0.453125 L 0 -3.890625 Z M -1.59375 -4.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M -2.875 -4.25 C -3.46875 -4.25 -4.25 -4.21875 -4.921875 -3.90625 C -5.765625 -3.5 -5.96875 -2.828125 -5.96875 -2.3125 C -5.96875 -1.765625 -5.765625 -1.078125 -4.890625 -0.6875 C -4.28125 -0.40625 -3.546875 -0.359375 -2.875 -0.359375 C -2.28125 -0.359375 -1.421875 -0.375 -0.703125 -0.765625 C 0.046875 -1.1875 0.203125 -1.890625 0.203125 -2.296875 C 0.203125 -2.875 -0.046875 -3.546875 -0.875 -3.921875 C -1.484375 -4.1875 -2.15625 -4.25 -2.875 -4.25 Z M -0.03125 -2.3125 C -0.03125 -2.03125 -0.15625 -1.390625 -1.171875 -1.21875 C -1.6875 -1.125 -2.46875 -1.125 -2.984375 -1.125 C -3.59375 -1.125 -4.296875 -1.125 -4.796875 -1.234375 C -5.59375 -1.421875 -5.75 -1.984375 -5.75 -2.296875 C -5.75 -2.640625 -5.5625 -3.203125 -4.734375 -3.375 C -4.25 -3.46875 -3.546875 -3.46875 -2.984375 -3.46875 C -2.421875 -3.46875 -1.671875 -3.46875 -1.140625 -3.375 C -0.109375 -3.1875 -0.03125 -2.53125 -0.03125 -2.3125 Z M -0.03125 -2.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 0.5625 -3.40625 C 0.5625 -1.34375 2.171875 0.21875 4.03125 0.21875 C 5.65625 0.21875 6.625 -1.171875 6.625 -2.328125 C 6.625 -2.421875 6.625 -2.5 6.5 -2.5 C 6.390625 -2.5 6.390625 -2.4375 6.375 -2.328125 C 6.296875 -0.90625 5.234375 -0.09375 4.140625 -0.09375 C 3.53125 -0.09375 1.578125 -0.421875 1.578125 -3.40625 C 1.578125 -6.375 3.53125 -6.71875 4.140625 -6.71875 C 5.21875 -6.71875 6.109375 -5.8125 6.3125 -4.359375 C 6.328125 -4.21875 6.328125 -4.1875 6.46875 -4.1875 C 6.625 -4.1875 6.625 -4.21875 6.625 -4.421875 L 6.625 -6.78125 C 6.625 -6.953125 6.625 -7.03125 6.515625 -7.03125 C 6.484375 -7.03125 6.4375 -7.03125 6.359375 -6.90625 L 5.859375 -6.171875 C 5.5 -6.53125 4.984375 -7.03125 4.03125 -7.03125 C 2.15625 -7.03125 0.5625 -5.4375 0.5625 -3.40625 Z M 0.5625 -3.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 3.96875 -6.9375 C 3.921875 -7.0625 3.890625 -7.140625 3.734375 -7.140625 C 3.578125 -7.140625 3.546875 -7.078125 3.5 -6.9375 L 1.4375 -0.984375 C 1.25 -0.46875 0.859375 -0.3125 0.3125 -0.3125 L 0.3125 0 C 0.546875 -0.015625 0.984375 -0.03125 1.328125 -0.03125 C 1.640625 -0.03125 2.15625 -0.015625 2.484375 0 L 2.484375 -0.3125 C 1.984375 -0.3125 1.734375 -0.5625 1.734375 -0.8125 C 1.734375 -0.84375 1.75 -0.953125 1.75 -0.96875 L 2.21875 -2.265625 L 4.671875 -2.265625 L 5.203125 -0.75 C 5.21875 -0.703125 5.234375 -0.640625 5.234375 -0.609375 C 5.234375 -0.3125 4.671875 -0.3125 4.40625 -0.3125 L 4.40625 0 C 4.765625 -0.03125 5.46875 -0.03125 5.84375 -0.03125 C 6.265625 -0.03125 6.734375 -0.015625 7.140625 0 L 7.140625 -0.3125 L 6.96875 -0.3125 C 6.375 -0.3125 6.234375 -0.375 6.125 -0.703125 Z M 3.4375 -5.828125 L 4.5625 -2.578125 L 2.328125 -2.578125 Z M 3.4375 -5.828125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 2.3125 -6.671875 C 2.21875 -6.796875 2.21875 -6.8125 2.03125 -6.8125 L 0.328125 -6.8125 L 0.328125 -6.5 L 0.625 -6.5 C 0.765625 -6.5 0.96875 -6.484375 1.109375 -6.484375 C 1.34375 -6.453125 1.359375 -6.4375 1.359375 -6.25 L 1.359375 -1.046875 C 1.359375 -0.78125 1.359375 -0.3125 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.015625 1.171875 -0.03125 1.5 -0.03125 C 1.828125 -0.03125 2.3125 -0.015625 2.65625 0 L 2.65625 -0.3125 C 1.640625 -0.3125 1.640625 -0.78125 1.640625 -1.046875 L 1.640625 -6.234375 C 1.6875 -6.1875 1.6875 -6.171875 1.734375 -6.109375 L 5.796875 -0.125 C 5.890625 -0.015625 5.90625 0 5.96875 0 C 6.109375 0 6.109375 -0.0625 6.109375 -0.265625 L 6.109375 -5.765625 C 6.109375 -6.03125 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.640625 -6.78125 5.15625 -6.796875 4.8125 -6.8125 L 4.8125 -6.5 C 5.828125 -6.5 5.828125 -6.03125 5.828125 -5.765625 L 5.828125 -1.5 Z M 2.3125 -6.671875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 Z M 2.5 -0.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d="M 3.78125 -0.546875 L 3.78125 0.109375 L 5.25 0 L 5.25 -0.3125 C 4.5625 -0.3125 4.46875 -0.375 4.46875 -0.875 L 4.46875 -6.921875 L 3.046875 -6.8125 L 3.046875 -6.5 C 3.734375 -6.5 3.8125 -6.4375 3.8125 -5.9375 L 3.8125 -3.78125 C 3.53125 -4.140625 3.09375 -4.40625 2.5625 -4.40625 C 1.390625 -4.40625 0.34375 -3.421875 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.453125 0.109375 C 3.09375 0.109375 3.53125 -0.234375 3.78125 -0.546875 Z M 3.78125 -3.21875 L 3.78125 -1.171875 C 3.78125 -1 3.78125 -0.984375 3.671875 -0.8125 C 3.375 -0.328125 2.9375 -0.109375 2.5 -0.109375 C 2.046875 -0.109375 1.6875 -0.375 1.453125 -0.75 C 1.203125 -1.15625 1.171875 -1.71875 1.171875 -2.140625 C 1.171875 -2.5 1.1875 -3.09375 1.46875 -3.546875 C 1.6875 -3.859375 2.0625 -4.1875 2.609375 -4.1875 C 2.953125 -4.1875 3.375 -4.03125 3.671875 -3.59375 C 3.78125 -3.421875 3.78125 -3.40625 3.78125 -3.21875 Z M 3.78125 -3.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-6">
<path style="stroke:none;" d="M 1.109375 -2.515625 C 1.171875 -4 2.015625 -4.25 2.359375 -4.25 C 3.375 -4.25 3.484375 -2.90625 3.484375 -2.515625 Z M 1.109375 -2.296875 L 3.890625 -2.296875 C 4.109375 -2.296875 4.140625 -2.296875 4.140625 -2.515625 C 4.140625 -3.5 3.59375 -4.46875 2.359375 -4.46875 C 1.203125 -4.46875 0.28125 -3.4375 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.6875 0.109375 4.140625 -1 4.140625 -1.1875 C 4.140625 -1.28125 4.0625 -1.3125 4 -1.3125 C 3.921875 -1.3125 3.890625 -1.25 3.875 -1.171875 C 3.53125 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.640625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 Z M 1.109375 -2.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-7">
<path style="stroke:none;" d="M 2.9375 -6.375 C 2.9375 -6.625 2.9375 -6.640625 2.703125 -6.640625 C 2.078125 -6 1.203125 -6 0.890625 -6 L 0.890625 -5.6875 C 1.09375 -5.6875 1.671875 -5.6875 2.1875 -5.953125 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.953125 -0.3125 L 0.953125 0 C 1.296875 -0.03125 2.15625 -0.03125 2.5625 -0.03125 C 2.953125 -0.03125 3.828125 -0.03125 4.171875 0 L 4.171875 -0.3125 L 3.859375 -0.3125 C 2.953125 -0.3125 2.9375 -0.421875 2.9375 -0.78125 Z M 2.9375 -6.375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-8">
<path style="stroke:none;" d="M 1.265625 -0.765625 L 2.328125 -1.796875 C 3.875 -3.171875 4.46875 -3.703125 4.46875 -4.703125 C 4.46875 -5.84375 3.578125 -6.640625 2.359375 -6.640625 C 1.234375 -6.640625 0.5 -5.71875 0.5 -4.828125 C 0.5 -4.28125 1 -4.28125 1.03125 -4.28125 C 1.203125 -4.28125 1.546875 -4.390625 1.546875 -4.8125 C 1.546875 -5.0625 1.359375 -5.328125 1.015625 -5.328125 C 0.9375 -5.328125 0.921875 -5.328125 0.890625 -5.3125 C 1.109375 -5.96875 1.65625 -6.328125 2.234375 -6.328125 C 3.140625 -6.328125 3.5625 -5.515625 3.5625 -4.703125 C 3.5625 -3.90625 3.078125 -3.125 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.203125 0 L 4.46875 -1.734375 L 4.234375 -1.734375 C 4.171875 -1.4375 4.109375 -1 4 -0.84375 C 3.9375 -0.765625 3.28125 -0.765625 3.0625 -0.765625 Z M 1.265625 -0.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-9">
<path style="stroke:none;" d="M 2.890625 -3.515625 C 3.703125 -3.78125 4.28125 -4.46875 4.28125 -5.265625 C 4.28125 -6.078125 3.40625 -6.640625 2.453125 -6.640625 C 1.453125 -6.640625 0.6875 -6.046875 0.6875 -5.28125 C 0.6875 -4.953125 0.90625 -4.765625 1.203125 -4.765625 C 1.5 -4.765625 1.703125 -4.984375 1.703125 -5.28125 C 1.703125 -5.765625 1.234375 -5.765625 1.09375 -5.765625 C 1.390625 -6.265625 2.046875 -6.390625 2.40625 -6.390625 C 2.828125 -6.390625 3.375 -6.171875 3.375 -5.28125 C 3.375 -5.15625 3.34375 -4.578125 3.09375 -4.140625 C 2.796875 -3.65625 2.453125 -3.625 2.203125 -3.625 C 2.125 -3.609375 1.890625 -3.59375 1.8125 -3.59375 C 1.734375 -3.578125 1.671875 -3.5625 1.671875 -3.46875 C 1.671875 -3.359375 1.734375 -3.359375 1.90625 -3.359375 L 2.34375 -3.359375 C 3.15625 -3.359375 3.53125 -2.6875 3.53125 -1.703125 C 3.53125 -0.34375 2.84375 -0.0625 2.40625 -0.0625 C 1.96875 -0.0625 1.21875 -0.234375 0.875 -0.8125 C 1.21875 -0.765625 1.53125 -0.984375 1.53125 -1.359375 C 1.53125 -1.71875 1.265625 -1.921875 0.984375 -1.921875 C 0.734375 -1.921875 0.421875 -1.78125 0.421875 -1.34375 C 0.421875 -0.4375 1.34375 0.21875 2.4375 0.21875 C 3.65625 0.21875 4.5625 -0.6875 4.5625 -1.703125 C 4.5625 -2.515625 3.921875 -3.296875 2.890625 -3.515625 Z M 2.890625 -3.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-10">
<path style="stroke:none;" d="M 5.796875 -6.78125 L 0.328125 -6.78125 L 0.328125 -6.46875 L 0.5625 -6.46875 C 1.328125 -6.46875 1.359375 -6.359375 1.359375 -6 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.453125 -0.03125 1.84375 -0.03125 C 2.25 -0.03125 3.15625 -0.03125 3.515625 0 L 3.515625 -0.3125 L 3.1875 -0.3125 C 2.25 -0.3125 2.25 -0.4375 2.25 -0.78125 L 2.25 -3.234375 L 3.09375 -3.234375 C 4.0625 -3.234375 4.15625 -2.921875 4.15625 -2.078125 L 4.40625 -2.078125 L 4.40625 -4.71875 L 4.15625 -4.71875 C 4.15625 -3.875 4.0625 -3.546875 3.09375 -3.546875 L 2.25 -3.546875 L 2.25 -6.078125 C 2.25 -6.40625 2.265625 -6.46875 2.734375 -6.46875 L 3.921875 -6.46875 C 5.421875 -6.46875 5.671875 -5.90625 5.828125 -4.53125 L 6.078125 -4.53125 Z M 5.796875 -6.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-11">
<path style="stroke:none;" d="M 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 C 0.640625 -0.015625 1.1875 -0.03125 1.421875 -0.03125 C 1.78125 -0.03125 2.125 -0.015625 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 Z M 1.796875 -6.140625 C 1.796875 -6.453125 1.5625 -6.671875 1.28125 -6.671875 C 0.96875 -6.671875 0.75 -6.40625 0.75 -6.140625 C 0.75 -5.875 0.96875 -5.609375 1.28125 -5.609375 C 1.5625 -5.609375 1.796875 -5.828125 1.796875 -6.140625 Z M 1.796875 -6.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-12">
<path style="stroke:none;" d="M 2.21875 -1.71875 C 1.34375 -1.71875 1.34375 -2.71875 1.34375 -2.9375 C 1.34375 -3.203125 1.359375 -3.53125 1.5 -3.78125 C 1.578125 -3.890625 1.8125 -4.171875 2.21875 -4.171875 C 3.078125 -4.171875 3.078125 -3.1875 3.078125 -2.953125 C 3.078125 -2.6875 3.078125 -2.359375 2.921875 -2.109375 C 2.84375 -2 2.609375 -1.71875 2.21875 -1.71875 Z M 1.0625 -1.328125 C 1.0625 -1.359375 1.0625 -1.59375 1.21875 -1.796875 C 1.609375 -1.515625 2.03125 -1.484375 2.21875 -1.484375 C 3.140625 -1.484375 3.828125 -2.171875 3.828125 -2.9375 C 3.828125 -3.3125 3.671875 -3.671875 3.421875 -3.90625 C 3.78125 -4.25 4.140625 -4.296875 4.3125 -4.296875 C 4.34375 -4.296875 4.390625 -4.296875 4.421875 -4.28125 C 4.3125 -4.25 4.25 -4.140625 4.25 -4.015625 C 4.25 -3.84375 4.390625 -3.734375 4.546875 -3.734375 C 4.640625 -3.734375 4.828125 -3.796875 4.828125 -4.03125 C 4.828125 -4.203125 4.71875 -4.515625 4.328125 -4.515625 C 4.125 -4.515625 3.6875 -4.453125 3.265625 -4.046875 C 2.84375 -4.375 2.4375 -4.40625 2.21875 -4.40625 C 1.28125 -4.40625 0.59375 -3.71875 0.59375 -2.953125 C 0.59375 -2.515625 0.8125 -2.140625 1.0625 -1.921875 C 0.9375 -1.78125 0.75 -1.453125 0.75 -1.09375 C 0.75 -0.78125 0.890625 -0.40625 1.203125 -0.203125 C 0.59375 -0.046875 0.28125 0.390625 0.28125 0.78125 C 0.28125 1.5 1.265625 2.046875 2.484375 2.046875 C 3.65625 2.046875 4.6875 1.546875 4.6875 0.765625 C 4.6875 0.421875 4.5625 -0.09375 4.046875 -0.375 C 3.515625 -0.640625 2.9375 -0.640625 2.328125 -0.640625 C 2.078125 -0.640625 1.65625 -0.640625 1.578125 -0.65625 C 1.265625 -0.703125 1.0625 -1 1.0625 -1.328125 Z M 2.5 1.828125 C 1.484375 1.828125 0.796875 1.3125 0.796875 0.78125 C 0.796875 0.328125 1.171875 -0.046875 1.609375 -0.0625 L 2.203125 -0.0625 C 3.0625 -0.0625 4.171875 -0.0625 4.171875 0.78125 C 4.171875 1.328125 3.46875 1.828125 2.5 1.828125 Z M 2.5 1.828125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-13">
<path style="stroke:none;" d="M 3.890625 -0.78125 L 3.890625 0.109375 L 5.328125 0 L 5.328125 -0.3125 C 4.640625 -0.3125 4.5625 -0.375 4.5625 -0.875 L 4.5625 -4.40625 L 3.09375 -4.296875 L 3.09375 -3.984375 C 3.78125 -3.984375 3.875 -3.921875 3.875 -3.421875 L 3.875 -1.65625 C 3.875 -0.78125 3.390625 -0.109375 2.65625 -0.109375 C 1.828125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.09375 -3.984375 1.09375 -3.953125 1.09375 -3.078125 L 1.09375 -1.578125 C 1.09375 -0.796875 1.09375 0.109375 2.609375 0.109375 C 3.171875 0.109375 3.609375 -0.171875 3.890625 -0.78125 Z M 3.890625 -0.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-14">
<path style="stroke:none;" d="M 1.671875 -3.3125 L 1.671875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.421875 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 C 0.671875 -0.015625 1.140625 -0.03125 1.421875 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.6875 0 L 2.6875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.71875 -0.421875 1.71875 -0.78125 L 1.71875 -2.3125 C 1.71875 -3.296875 2.140625 -4.1875 2.890625 -4.1875 C 2.953125 -4.1875 2.984375 -4.1875 3 -4.171875 C 2.96875 -4.171875 2.765625 -4.046875 2.765625 -3.78125 C 2.765625 -3.515625 2.984375 -3.359375 3.203125 -3.359375 C 3.375 -3.359375 3.625 -3.484375 3.625 -3.796875 C 3.625 -4.109375 3.3125 -4.40625 2.890625 -4.40625 C 2.15625 -4.40625 1.796875 -3.734375 1.671875 -3.3125 Z M 1.671875 -3.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-15">
<path style="stroke:none;" d="M 1.90625 -3.765625 C 1.90625 -4.0625 1.671875 -4.296875 1.390625 -4.296875 C 1.09375 -4.296875 0.859375 -4.0625 0.859375 -3.765625 C 0.859375 -3.484375 1.09375 -3.234375 1.390625 -3.234375 C 1.671875 -3.234375 1.90625 -3.484375 1.90625 -3.765625 Z M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.0625 1.390625 -1.0625 C 1.09375 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.390625 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-16">
<path style="stroke:none;" d="M 6.640625 -6.75 L 0.546875 -6.75 L 0.359375 -4.5 L 0.609375 -4.5 C 0.75 -6.109375 0.890625 -6.4375 2.40625 -6.4375 C 2.578125 -6.4375 2.84375 -6.4375 2.9375 -6.421875 C 3.15625 -6.375 3.15625 -6.265625 3.15625 -6.046875 L 3.15625 -0.78125 C 3.15625 -0.453125 3.15625 -0.3125 2.109375 -0.3125 L 1.703125 -0.3125 L 1.703125 0 C 2.109375 -0.03125 3.125 -0.03125 3.59375 -0.03125 C 4.046875 -0.03125 5.078125 -0.03125 5.484375 0 L 5.484375 -0.3125 L 5.078125 -0.3125 C 4.03125 -0.3125 4.03125 -0.453125 4.03125 -0.78125 L 4.03125 -6.046875 C 4.03125 -6.234375 4.03125 -6.375 4.21875 -6.421875 C 4.328125 -6.4375 4.59375 -6.4375 4.78125 -6.4375 C 6.296875 -6.4375 6.4375 -6.109375 6.578125 -4.5 L 6.828125 -4.5 Z M 6.640625 -6.75 "/>
</symbol>
<symbol overflow="visible" id="glyph2-17">
<path style="stroke:none;" d="M 3.3125 -0.75 C 3.359375 -0.359375 3.625 0.0625 4.09375 0.0625 C 4.3125 0.0625 4.921875 -0.078125 4.921875 -0.890625 L 4.921875 -1.453125 L 4.671875 -1.453125 L 4.671875 -0.890625 C 4.671875 -0.3125 4.421875 -0.25 4.3125 -0.25 C 3.984375 -0.25 3.9375 -0.703125 3.9375 -0.75 L 3.9375 -2.734375 C 3.9375 -3.15625 3.9375 -3.546875 3.578125 -3.921875 C 3.1875 -4.3125 2.6875 -4.46875 2.21875 -4.46875 C 1.390625 -4.46875 0.703125 -4 0.703125 -3.34375 C 0.703125 -3.046875 0.90625 -2.875 1.171875 -2.875 C 1.453125 -2.875 1.625 -3.078125 1.625 -3.328125 C 1.625 -3.453125 1.578125 -3.78125 1.109375 -3.78125 C 1.390625 -4.140625 1.875 -4.25 2.1875 -4.25 C 2.6875 -4.25 3.25 -3.859375 3.25 -2.96875 L 3.25 -2.609375 C 2.734375 -2.578125 2.046875 -2.546875 1.421875 -2.25 C 0.671875 -1.90625 0.421875 -1.390625 0.421875 -0.953125 C 0.421875 -0.140625 1.390625 0.109375 2.015625 0.109375 C 2.671875 0.109375 3.125 -0.296875 3.3125 -0.75 Z M 3.25 -2.390625 L 3.25 -1.390625 C 3.25 -0.453125 2.53125 -0.109375 2.078125 -0.109375 C 1.59375 -0.109375 1.1875 -0.453125 1.1875 -0.953125 C 1.1875 -1.5 1.609375 -2.328125 3.25 -2.390625 Z M 3.25 -2.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-18">
<path style="stroke:none;" d="M 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 C 0.671875 -0.015625 1.171875 -0.03125 1.453125 -0.03125 C 1.703125 -0.03125 2.21875 -0.015625 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 C 3.4375 -0.015625 3.953125 -0.03125 4.21875 -0.03125 C 4.46875 -0.03125 5 -0.015625 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 Z M 1.09375 -3.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-19">
<path style="stroke:none;" d="M 2.078125 -1.9375 C 2.296875 -1.890625 3.109375 -1.734375 3.109375 -1.015625 C 3.109375 -0.515625 2.765625 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.53125 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.453125 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.78125 0.109375 1.984375 0.109375 C 3.125 0.109375 3.59375 -0.5625 3.59375 -1.28125 C 3.59375 -1.796875 3.296875 -2.109375 3.171875 -2.21875 C 2.84375 -2.546875 2.453125 -2.625 2.03125 -2.703125 C 1.46875 -2.8125 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.875 1.0625 -4.28125 1.921875 -4.28125 C 3.015625 -4.28125 3.078125 -3.375 3.09375 -3.078125 C 3.09375 -2.984375 3.1875 -2.984375 3.203125 -2.984375 C 3.34375 -2.984375 3.34375 -3.03125 3.34375 -3.21875 L 3.34375 -4.234375 C 3.34375 -4.390625 3.34375 -4.46875 3.234375 -4.46875 C 3.1875 -4.46875 3.15625 -4.46875 3.03125 -4.34375 C 3 -4.3125 2.90625 -4.21875 2.859375 -4.1875 C 2.484375 -4.46875 2.078125 -4.46875 1.921875 -4.46875 C 0.703125 -4.46875 0.328125 -3.796875 0.328125 -3.234375 C 0.328125 -2.890625 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.140625 1.359375 -2.078125 2.078125 -1.9375 Z M 2.078125 -1.9375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-20">
<path style="stroke:none;" d="M 1.171875 -2.171875 C 1.171875 -3.796875 1.984375 -4.21875 2.515625 -4.21875 C 2.609375 -4.21875 3.234375 -4.203125 3.578125 -3.84375 C 3.171875 -3.8125 3.109375 -3.515625 3.109375 -3.390625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.828125 -2.9375 4.03125 -3.09375 4.03125 -3.40625 C 4.03125 -4.078125 3.265625 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.34375 -3.390625 0.34375 -2.15625 C 0.34375 -0.875 1.328125 0.109375 2.484375 0.109375 C 3.8125 0.109375 4.140625 -1.09375 4.140625 -1.1875 C 4.140625 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.921875 -1.28125 3.890625 -1.25 3.875 -1.1875 C 3.59375 -0.265625 2.9375 -0.140625 2.578125 -0.140625 C 2.046875 -0.140625 1.171875 -0.5625 1.171875 -2.171875 Z M 1.171875 -2.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-21">
<path style="stroke:none;" d="M 4.140625 -3.3125 C 4.234375 -3.546875 4.40625 -3.984375 5.0625 -3.984375 L 5.0625 -4.296875 C 4.828125 -4.28125 4.546875 -4.265625 4.3125 -4.265625 C 4.078125 -4.265625 3.625 -4.28125 3.453125 -4.296875 L 3.453125 -3.984375 C 3.8125 -3.984375 3.921875 -3.75 3.921875 -3.5625 C 3.921875 -3.46875 3.90625 -3.421875 3.875 -3.3125 L 2.84375 -0.78125 L 1.734375 -3.5625 C 1.671875 -3.6875 1.671875 -3.703125 1.671875 -3.734375 C 1.671875 -3.984375 2.0625 -3.984375 2.25 -3.984375 L 2.25 -4.296875 C 1.9375 -4.28125 1.390625 -4.265625 1.15625 -4.265625 C 0.890625 -4.265625 0.484375 -4.28125 0.1875 -4.296875 L 0.1875 -3.984375 C 0.8125 -3.984375 0.859375 -3.921875 0.984375 -3.625 L 2.421875 -0.078125 C 2.484375 0.0625 2.5 0.109375 2.625 0.109375 C 2.765625 0.109375 2.796875 0.015625 2.84375 -0.078125 Z M 4.140625 -3.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-22">
<path style="stroke:none;" d="M 2.03125 -0.015625 C 2.03125 -0.640625 1.78125 -1.0625 1.390625 -1.0625 C 1.03125 -1.0625 0.859375 -0.78125 0.859375 -0.53125 C 0.859375 -0.265625 1.03125 0 1.390625 0 C 1.546875 0 1.671875 -0.0625 1.765625 -0.140625 L 1.78125 -0.15625 C 1.796875 -0.15625 1.796875 -0.15625 1.796875 -0.015625 C 1.796875 0.625 1.53125 1.234375 1.09375 1.703125 C 1.03125 1.765625 1.015625 1.78125 1.015625 1.8125 C 1.015625 1.890625 1.0625 1.921875 1.109375 1.921875 C 1.234375 1.921875 2.03125 1.140625 2.03125 -0.015625 Z M 2.03125 -0.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-23">
<path style="stroke:none;" d="M 1.75 -4.296875 L 1.75 -5.453125 C 1.75 -6.328125 2.21875 -6.8125 2.65625 -6.8125 C 2.6875 -6.8125 2.84375 -6.8125 2.984375 -6.734375 C 2.875 -6.703125 2.6875 -6.5625 2.6875 -6.3125 C 2.6875 -6.09375 2.84375 -5.890625 3.125 -5.890625 C 3.40625 -5.890625 3.5625 -6.09375 3.5625 -6.328125 C 3.5625 -6.703125 3.1875 -7.03125 2.65625 -7.03125 C 1.96875 -7.03125 1.109375 -6.5 1.109375 -5.4375 L 1.109375 -4.296875 L 0.328125 -4.296875 L 0.328125 -3.984375 L 1.109375 -3.984375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.34375 -0.3125 L 0.34375 0 C 0.734375 -0.015625 1.203125 -0.03125 1.46875 -0.03125 C 1.875 -0.03125 2.34375 -0.03125 2.734375 0 L 2.734375 -0.3125 L 2.53125 -0.3125 C 1.796875 -0.3125 1.78125 -0.421875 1.78125 -0.78125 L 1.78125 -3.984375 L 2.90625 -3.984375 L 2.90625 -4.296875 Z M 1.75 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-24">
<path style="stroke:none;" d="M 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 C 0.671875 -0.015625 1.171875 -0.03125 1.453125 -0.03125 C 1.703125 -0.03125 2.21875 -0.015625 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 C 3.4375 -0.015625 3.953125 -0.03125 4.21875 -0.03125 C 4.46875 -0.03125 5 -0.015625 5.328125 0 L 5.328125 -0.3125 C 4.671875 -0.3125 4.5625 -0.3125 4.5625 -0.75 L 4.5625 -2.59375 C 4.5625 -3.625 5.265625 -4.1875 5.90625 -4.1875 C 6.53125 -4.1875 6.640625 -3.65625 6.640625 -3.078125 L 6.640625 -0.75 C 6.640625 -0.3125 6.53125 -0.3125 5.859375 -0.3125 L 5.859375 0 C 6.203125 -0.015625 6.71875 -0.03125 6.984375 -0.03125 C 7.25 -0.03125 7.765625 -0.015625 8.109375 0 L 8.109375 -0.3125 C 7.59375 -0.3125 7.34375 -0.3125 7.328125 -0.609375 L 7.328125 -2.515625 C 7.328125 -3.375 7.328125 -3.671875 7.015625 -4.03125 C 6.875 -4.203125 6.546875 -4.40625 5.96875 -4.40625 C 5.140625 -4.40625 4.6875 -3.8125 4.53125 -3.421875 C 4.390625 -4.296875 3.65625 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 Z M 1.09375 -3.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-25">
<path style="stroke:none;" d="M 5.796875 -2.578125 L 5.546875 -2.578125 C 5.4375 -1.5625 5.296875 -0.3125 3.546875 -0.3125 L 2.734375 -0.3125 C 2.265625 -0.3125 2.25 -0.375 2.25 -0.703125 L 2.25 -6.015625 C 2.25 -6.359375 2.25 -6.5 3.1875 -6.5 L 3.515625 -6.5 L 3.515625 -6.8125 C 3.15625 -6.78125 2.25 -6.78125 1.84375 -6.78125 C 1.453125 -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 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 L 5.515625 0 Z M 5.796875 -2.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-26">
<path style="stroke:none;" d="M 1.765625 -6.921875 L 0.328125 -6.8125 L 0.328125 -6.5 C 1.03125 -6.5 1.109375 -6.4375 1.109375 -5.9375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 C 0.65625 -0.015625 1.1875 -0.03125 1.4375 -0.03125 C 1.6875 -0.03125 2.171875 -0.015625 2.546875 0 L 2.546875 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 Z M 1.765625 -6.921875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-27">
<path style="stroke:none;" d="M 1.71875 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.71875 -4.296875 L 1.71875 -6.125 L 1.46875 -6.125 C 1.46875 -5.3125 1.171875 -4.25 0.1875 -4.203125 L 0.1875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.234375 C 1.03125 -0.015625 1.96875 0.109375 2.328125 0.109375 C 3.03125 0.109375 3.3125 -0.59375 3.3125 -1.234375 L 3.3125 -1.796875 L 3.0625 -1.796875 L 3.0625 -1.25 C 3.0625 -0.515625 2.765625 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 Z M 1.71875 -3.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-28">
<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>
<symbol overflow="visible" id="glyph2-29">
<path style="stroke:none;" d="M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.0625 1.390625 -1.0625 C 1.09375 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.390625 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-30">
<path style="stroke:none;" d="M 2.859375 -2.34375 C 3.15625 -2.71875 3.53125 -3.203125 3.78125 -3.46875 C 4.09375 -3.828125 4.5 -3.984375 4.96875 -3.984375 L 4.96875 -4.296875 C 4.703125 -4.28125 4.40625 -4.265625 4.140625 -4.265625 C 3.84375 -4.265625 3.3125 -4.28125 3.1875 -4.296875 L 3.1875 -3.984375 C 3.40625 -3.96875 3.484375 -3.84375 3.484375 -3.671875 C 3.484375 -3.515625 3.375 -3.390625 3.328125 -3.328125 L 2.71875 -2.546875 L 1.9375 -3.5625 C 1.84375 -3.65625 1.84375 -3.671875 1.84375 -3.734375 C 1.84375 -3.890625 2 -3.984375 2.1875 -3.984375 L 2.1875 -4.296875 C 1.9375 -4.28125 1.28125 -4.265625 1.109375 -4.265625 C 0.90625 -4.265625 0.4375 -4.28125 0.171875 -4.296875 L 0.171875 -3.984375 C 0.875 -3.984375 0.875 -3.984375 1.34375 -3.375 L 2.328125 -2.09375 L 1.390625 -0.90625 C 0.921875 -0.328125 0.328125 -0.3125 0.125 -0.3125 L 0.125 0 C 0.375 -0.015625 0.6875 -0.03125 0.953125 -0.03125 C 1.234375 -0.03125 1.65625 -0.015625 1.890625 0 L 1.890625 -0.3125 C 1.671875 -0.34375 1.609375 -0.46875 1.609375 -0.625 C 1.609375 -0.84375 1.890625 -1.171875 2.5 -1.890625 L 3.265625 -0.890625 C 3.34375 -0.78125 3.46875 -0.625 3.46875 -0.5625 C 3.46875 -0.46875 3.375 -0.3125 3.109375 -0.3125 L 3.109375 0 C 3.40625 -0.015625 3.96875 -0.03125 4.1875 -0.03125 C 4.453125 -0.03125 4.84375 -0.015625 5.140625 0 L 5.140625 -0.3125 C 4.609375 -0.3125 4.421875 -0.328125 4.203125 -0.625 Z M 2.859375 -2.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-31">
<path style="stroke:none;" d="M 9.0625 -5.828125 C 9.234375 -6.40625 9.671875 -6.5 10.0625 -6.5 L 10.0625 -6.8125 C 9.765625 -6.78125 9.453125 -6.78125 9.15625 -6.78125 C 8.859375 -6.78125 8.21875 -6.796875 7.96875 -6.8125 L 7.96875 -6.5 C 8.640625 -6.484375 8.828125 -6.15625 8.828125 -5.96875 C 8.828125 -5.90625 8.796875 -5.828125 8.78125 -5.765625 L 7.28125 -1.171875 L 5.6875 -6.046875 C 5.6875 -6.09375 5.65625 -6.15625 5.65625 -6.203125 C 5.65625 -6.5 6.234375 -6.5 6.5 -6.5 L 6.5 -6.8125 C 6.140625 -6.78125 5.46875 -6.78125 5.078125 -6.78125 C 4.703125 -6.78125 4.28125 -6.796875 3.875 -6.8125 L 3.875 -6.5 C 4.4375 -6.5 4.640625 -6.5 4.765625 -6.140625 L 4.984375 -5.4375 L 3.59375 -1.171875 L 2 -6.078125 C 1.984375 -6.09375 1.96875 -6.171875 1.96875 -6.203125 C 1.96875 -6.5 2.546875 -6.5 2.8125 -6.5 L 2.8125 -6.8125 C 2.453125 -6.78125 1.78125 -6.78125 1.390625 -6.78125 C 1.015625 -6.78125 0.59375 -6.796875 0.171875 -6.8125 L 0.171875 -6.5 C 0.921875 -6.5 0.96875 -6.453125 1.09375 -6.078125 L 3.078125 0.03125 C 3.109375 0.125 3.140625 0.21875 3.265625 0.21875 C 3.40625 0.21875 3.421875 0.15625 3.46875 0.015625 L 5.109375 -5.046875 L 6.765625 0.03125 C 6.796875 0.125 6.828125 0.21875 6.953125 0.21875 C 7.09375 0.21875 7.125 0.15625 7.15625 0.015625 Z M 9.0625 -5.828125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-32">
<path style="stroke:none;" d="M 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 C 0.671875 -0.015625 1.171875 -0.03125 1.453125 -0.03125 C 1.703125 -0.03125 2.21875 -0.015625 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 C 3.4375 -0.015625 3.953125 -0.03125 4.21875 -0.03125 C 4.46875 -0.03125 5 -0.015625 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.359375 -4.40625 1.921875 -3.8125 1.75 -3.421875 L 1.75 -6.921875 L 0.3125 -6.8125 L 0.3125 -6.5 C 1.015625 -6.5 1.09375 -6.4375 1.09375 -5.9375 Z M 1.09375 -0.75 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M -1.34375 -3.734375 L -1.34375 -3.53125 C -0.765625 -3.453125 -0.21875 -3.328125 -0.21875 -2.359375 L -0.21875 -1.734375 C -0.21875 -1.5 -0.25 -1.5 -0.40625 -1.5 L -2.96875 -1.5 C -3.125 -1.5 -3.1875 -1.5 -3.1875 -1.96875 L -3.1875 -2.1875 L -3.40625 -2.1875 C -3.390625 -1.90625 -3.390625 -1.546875 -3.390625 -1.25 C -3.390625 -0.953125 -3.390625 -0.671875 -3.40625 -0.40625 L -3.1875 -0.40625 L -3.1875 -0.5625 C -3.1875 -0.96875 -3.140625 -0.96875 -2.984375 -0.96875 L -0.421875 -0.96875 C -0.265625 -0.96875 -0.21875 -0.96875 -0.21875 -0.5625 L -0.21875 -0.40625 L 0 -0.40625 L 0 -3.578125 Z M -1.34375 -3.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M -1.0625 -3.0625 C -1.6875 -3.0625 -2.234375 -2.484375 -2.234375 -1.6875 C -2.234375 -0.90625 -1.6875 -0.328125 -1.0625 -0.328125 C -0.46875 -0.328125 0.0625 -0.921875 0.0625 -1.6875 C 0.0625 -2.484375 -0.46875 -3.0625 -1.0625 -3.0625 Z M -0.125 -1.6875 C -0.125 -0.828125 -0.875 -0.828125 -1.109375 -0.828125 C -1.328125 -0.828125 -2.0625 -0.828125 -2.0625 -1.6875 C -2.0625 -2.5625 -1.328125 -2.5625 -1.109375 -2.5625 C -0.875 -2.5625 -0.125 -2.5625 -0.125 -1.6875 Z M -0.125 -1.6875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M -1.9375 -2.296875 C -2.078125 -2.53125 -2.09375 -2.75 -2.09375 -2.84375 C -2.078125 -2.828125 -2.046875 -2.796875 -1.96875 -2.796875 C -1.875 -2.796875 -1.796875 -2.859375 -1.796875 -2.984375 C -1.796875 -3.09375 -1.875 -3.171875 -1.96875 -3.171875 C -2.109375 -3.171875 -2.265625 -3.0625 -2.265625 -2.828125 C -2.265625 -2.703125 -2.234375 -2.4375 -2.03125 -2.171875 C -2.09375 -2.0625 -2.203125 -1.828125 -2.203125 -1.53125 C -2.203125 -0.9375 -1.859375 -0.53125 -1.46875 -0.53125 C -1.21875 -0.53125 -1.03125 -0.71875 -0.96875 -0.78125 C -0.828125 -0.671875 -0.671875 -0.640625 -0.5625 -0.640625 C -0.296875 -0.640625 -0.140625 -0.8125 -0.109375 -0.859375 C -0.046875 -0.609375 0.125 -0.3125 0.390625 -0.3125 C 0.78125 -0.3125 1.03125 -0.96875 1.03125 -1.6875 C 1.03125 -2.359375 0.8125 -3.078125 0.375 -3.078125 C 0.15625 -3.078125 -0.09375 -2.953125 -0.203125 -2.703125 C -0.375 -2.375 -0.375 -2.046875 -0.375 -1.515625 C -0.375 -1.390625 -0.375 -1.171875 -0.375 -1.140625 C -0.40625 -0.90625 -0.609375 -0.859375 -0.703125 -0.859375 C -0.796875 -0.859375 -0.875 -0.90625 -0.875 -0.921875 C -0.875 -0.921875 -0.875 -0.9375 -0.875 -0.953125 C -0.765625 -1.15625 -0.734375 -1.34375 -0.734375 -1.515625 C -0.734375 -2.109375 -1.09375 -2.515625 -1.46875 -2.515625 C -1.703125 -2.515625 -1.890625 -2.359375 -1.9375 -2.296875 Z M -0.90625 -1.53125 C -0.90625 -1.09375 -1.1875 -0.96875 -1.46875 -0.96875 C -1.75 -0.96875 -2.03125 -1.09375 -2.03125 -1.515625 C -2.03125 -1.953125 -1.75 -2.078125 -1.46875 -2.078125 C -1.203125 -2.078125 -0.90625 -1.953125 -0.90625 -1.53125 Z M 0.015625 -1.53125 C 0.015625 -2.03125 0.015625 -2.734375 0.390625 -2.734375 C 0.625 -2.734375 0.859375 -2.28125 0.859375 -1.6875 C 0.859375 -1.125 0.640625 -0.65625 0.375 -0.65625 C 0.21875 -0.65625 0.015625 -0.828125 0.015625 -1.203125 Z M 0.015625 -1.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M -3.078125 -1.265625 C -3.234375 -1.265625 -3.375 -1.125 -3.375 -0.953125 C -3.375 -0.796875 -3.25 -0.65625 -3.078125 -0.65625 C -2.890625 -0.65625 -2.765625 -0.796875 -2.765625 -0.953125 C -2.765625 -1.125 -2.90625 -1.265625 -3.078125 -1.265625 Z M -2.140625 -0.4375 L -1.921875 -0.4375 C -1.921875 -0.78125 -1.890625 -0.828125 -1.65625 -0.828125 L -0.421875 -0.828125 C -0.265625 -0.828125 -0.21875 -0.828125 -0.21875 -0.5 L -0.21875 -0.40625 L 0 -0.40625 C -0.015625 -0.625 -0.015625 -0.828125 -0.015625 -1.03125 C -0.015625 -1.21875 -0.015625 -1.4375 0 -1.625 L -0.21875 -1.625 C -0.21875 -1.296875 -0.21875 -1.25 -0.421875 -1.25 L -2.203125 -1.25 Z M -2.140625 -0.4375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-5">
<path style="stroke:none;" d="M -2.015625 -2.234375 C -1.953125 -2.171875 -1.875 -2.125 -1.796875 -2.125 C -1.625 -2.125 -1.53125 -2.25 -1.53125 -2.390625 C -1.53125 -2.515625 -1.609375 -2.65625 -1.796875 -2.65625 C -2.21875 -2.65625 -2.234375 -2.109375 -2.234375 -1.75 C -2.234375 -0.78125 -1.578125 -0.359375 -1.078125 -0.359375 C -0.453125 -0.359375 0.0625 -0.9375 0.0625 -1.6875 C 0.0625 -2.5625 -0.546875 -2.71875 -0.59375 -2.71875 C -0.671875 -2.71875 -0.671875 -2.65625 -0.671875 -2.625 C -0.671875 -2.546875 -0.65625 -2.53125 -0.59375 -2.515625 C -0.171875 -2.34375 -0.125 -1.984375 -0.125 -1.765625 C -0.125 -1.328125 -0.40625 -0.859375 -1.078125 -0.859375 C -1.296875 -0.859375 -1.578125 -0.90625 -1.78125 -1.09375 C -2.046875 -1.328125 -2.046875 -1.625 -2.046875 -1.78125 C -2.046875 -1.921875 -2.046875 -2.0625 -2.015625 -2.234375 Z M -2.015625 -2.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-6">
<path style="stroke:none;" d="M -1.125 -2.578125 C -1.125 -2.6875 -1.125 -2.71875 -1.234375 -2.71875 C -1.578125 -2.71875 -2.234375 -2.546875 -2.234375 -1.609375 C -2.234375 -0.859375 -1.6875 -0.328125 -1.09375 -0.328125 C -0.46875 -0.328125 0.0625 -0.9375 0.0625 -1.6875 C 0.0625 -2.484375 -0.5 -2.71875 -0.59375 -2.71875 C -0.671875 -2.71875 -0.671875 -2.640625 -0.671875 -2.625 C -0.671875 -2.546875 -0.65625 -2.53125 -0.59375 -2.5 C -0.25 -2.375 -0.125 -2 -0.125 -1.71875 C -0.125 -1.3125 -0.34375 -1.09375 -0.4375 -1.015625 C -0.671875 -0.828125 -0.984375 -0.828125 -1.125 -0.828125 Z M -1.28125 -0.828125 C -1.9375 -0.890625 -2.0625 -1.375 -2.0625 -1.609375 C -2.0625 -2.296875 -1.421875 -2.34375 -1.28125 -2.34375 Z M -1.28125 -0.828125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-7">
<path style="stroke:none;" d="M -1.625 -2.75 C -1.796875 -2.84375 -1.921875 -2.96875 -1.921875 -3.28125 L -2.140625 -3.28125 C -2.140625 -3.15625 -2.125 -3.015625 -2.125 -2.84375 C -2.125 -2.84375 -2.140625 -2.515625 -2.140625 -2.34375 L -1.921875 -2.34375 C -1.921875 -2.46875 -1.859375 -2.5625 -1.75 -2.5625 C -1.703125 -2.5625 -1.65625 -2.53125 -1.65625 -2.53125 L -0.40625 -1.90625 L -1.75 -1.21875 C -1.765625 -1.203125 -1.796875 -1.1875 -1.828125 -1.1875 C -1.921875 -1.1875 -1.921875 -1.359375 -1.921875 -1.453125 L -2.140625 -1.453125 C -2.140625 -1.234375 -2.125 -0.875 -2.125 -0.84375 C -2.125 -0.640625 -2.125 -0.484375 -2.140625 -0.28125 L -1.921875 -0.28125 C -1.921875 -0.578125 -1.921875 -0.640625 -1.78125 -0.71875 L -0.0625 -1.609375 C 0.015625 -1.640625 0.0625 -1.671875 0.0625 -1.78125 C 0.0625 -1.890625 0 -1.921875 -0.0625 -1.953125 Z M -1.625 -2.75 "/>
</symbol>
<symbol overflow="visible" id="glyph3-8">
<path style="stroke:none;" d="M -3.453125 -1.25 L -3.40625 -0.40625 L -3.1875 -0.40625 C -3.1875 -0.78125 -3.15625 -0.828125 -2.90625 -0.828125 L -0.421875 -0.828125 C -0.265625 -0.828125 -0.21875 -0.828125 -0.21875 -0.5 L -0.21875 -0.40625 L 0 -0.40625 C -0.015625 -0.625 -0.015625 -0.828125 -0.015625 -1.03125 C -0.015625 -1.25 -0.015625 -1.453125 0 -1.671875 L -0.21875 -1.671875 L -0.21875 -1.578125 C -0.21875 -1.25 -0.265625 -1.25 -0.421875 -1.25 Z M -3.453125 -1.25 "/>
</symbol>
<symbol overflow="visible" id="glyph3-9">
<path style="stroke:none;" d="M -2.875 -3.984375 C -3.078125 -4.09375 -3.1875 -4.265625 -3.1875 -4.609375 L -3.40625 -4.609375 C -3.390625 -4.4375 -3.390625 -4.234375 -3.390625 -4.0625 C -3.390625 -4 -3.390625 -3.640625 -3.40625 -3.421875 L -3.1875 -3.421875 C -3.1875 -3.65625 -3.078125 -3.78125 -2.96875 -3.78125 C -2.9375 -3.78125 -2.90625 -3.765625 -2.875 -3.75 L -0.484375 -2.609375 L -3 -1.40625 C -3.046875 -1.375 -3.0625 -1.375 -3.078125 -1.375 C -3.1875 -1.375 -3.1875 -1.65625 -3.1875 -1.796875 L -3.40625 -1.796875 C -3.40625 -1.59375 -3.390625 -1.21875 -3.390625 -0.984375 C -3.390625 -0.84375 -3.390625 -0.53125 -3.40625 -0.28125 L -3.1875 -0.28125 L -3.1875 -0.390625 C -3.1875 -0.703125 -3.140625 -0.765625 -3.03125 -0.828125 L -0.015625 -2.265625 C 0.078125 -2.296875 0.109375 -2.328125 0.109375 -2.4375 C 0.109375 -2.546875 0.078125 -2.578125 -0.015625 -2.625 Z M -2.875 -3.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-10">
<path style="stroke:none;" d="M -1.921875 -1.21875 L -1.921875 -2.109375 L -2.140625 -2.109375 L -2.140625 -1.21875 L -3.0625 -1.21875 L -3.0625 -1.015625 C -2.59375 -1.015625 -2.109375 -0.765625 -2.09375 -0.25 L -1.921875 -0.25 L -1.921875 -0.78125 L -0.625 -0.78125 C -0.0625 -0.78125 0.0625 -1.25 0.0625 -1.5625 C 0.0625 -1.9375 -0.21875 -2.21875 -0.625 -2.21875 L -0.90625 -2.21875 L -0.90625 -2 L -0.640625 -2 C -0.265625 -2 -0.125 -1.78125 -0.125 -1.609375 C -0.125 -1.21875 -0.515625 -1.21875 -0.625 -1.21875 Z M -1.921875 -1.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-11">
<path style="stroke:none;" d="M -1.484375 -2.609375 C -1.953125 -2.609375 -2.234375 -2.109375 -2.234375 -1.484375 C -2.234375 -1.1875 -2.21875 -0.609375 -1.796875 -0.609375 C -1.609375 -0.609375 -1.53125 -0.75 -1.53125 -0.875 C -1.53125 -1 -1.625 -1.125 -1.796875 -1.125 C -1.90625 -1.125 -1.984375 -1.0625 -2.015625 -1.015625 C -2.0625 -1.1875 -2.0625 -1.421875 -2.0625 -1.46875 C -2.0625 -1.90625 -1.828125 -2.15625 -1.46875 -2.15625 L -1.34375 -2.15625 C -1.328125 -1.6875 -1.3125 -1.40625 -1.171875 -1.03125 C -1.0625 -0.703125 -0.84375 -0.40625 -0.515625 -0.40625 C -0.0625 -0.40625 0.0625 -0.984375 0.0625 -1.390625 C 0.0625 -1.765625 -0.09375 -2.0625 -0.359375 -2.21875 C -0.171875 -2.25 0.03125 -2.359375 0.03125 -2.609375 C 0.03125 -2.640625 0.03125 -3.21875 -0.453125 -3.21875 L -0.71875 -3.21875 L -0.71875 -3 L -0.453125 -3 C -0.40625 -3 -0.1875 -3 -0.1875 -2.8125 C -0.1875 -2.609375 -0.40625 -2.609375 -0.453125 -2.609375 Z M -0.703125 -2.15625 C -0.15625 -2.15625 -0.109375 -1.5625 -0.109375 -1.4375 C -0.109375 -1.140625 -0.265625 -0.875 -0.515625 -0.875 C -0.6875 -0.875 -1.140625 -0.96875 -1.203125 -2.15625 Z M -0.703125 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M -4.5 1.3125 C -4.59375 1.3125 -4.765625 1.3125 -4.765625 1.5 C -4.765625 1.6875 -4.59375 1.6875 -4.5 1.6875 L -0.84375 1.6875 C -0.75 1.6875 -0.578125 1.6875 -0.578125 1.5 C -0.578125 1.3125 -0.75 1.3125 -0.84375 1.3125 Z M -4.5 1.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M -2.859375 1.3125 L -4.703125 1.3125 C -4.78125 1.3125 -4.96875 1.3125 -4.96875 1.5 C -4.96875 1.6875 -4.78125 1.6875 -4.703125 1.6875 L -2.859375 1.6875 L -2.859375 3.53125 C -2.859375 3.609375 -2.859375 3.78125 -2.671875 3.78125 C -2.484375 3.78125 -2.484375 3.609375 -2.484375 3.53125 L -2.484375 1.6875 L -0.640625 1.6875 C -0.5625 1.6875 -0.390625 1.6875 -0.390625 1.5 C -0.390625 1.3125 -0.5625 1.3125 -0.640625 1.3125 L -2.484375 1.3125 L -2.484375 -0.53125 C -2.484375 -0.609375 -2.484375 -0.796875 -2.671875 -0.796875 C -2.859375 -0.796875 -2.859375 -0.609375 -2.859375 -0.53125 Z M -2.859375 1.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph6-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph6-1">
<path style="stroke:none;" d="M 0.328125 -2.046875 C 0.328125 -0.8125 1.296875 0.125 2.421875 0.125 C 3.390625 0.125 3.984375 -0.703125 3.984375 -1.390625 C 3.984375 -1.453125 3.984375 -1.5 3.90625 -1.5 C 3.84375 -1.5 3.84375 -1.453125 3.828125 -1.40625 C 3.78125 -0.546875 3.140625 -0.046875 2.484375 -0.046875 C 2.125 -0.046875 0.953125 -0.25 0.953125 -2.046875 C 0.953125 -3.828125 2.125 -4.03125 2.484375 -4.03125 C 3.140625 -4.03125 3.671875 -3.484375 3.78125 -2.609375 C 3.796875 -2.53125 3.796875 -2.515625 3.890625 -2.515625 C 3.984375 -2.515625 3.984375 -2.53125 3.984375 -2.65625 L 3.984375 -4.078125 C 3.984375 -4.171875 3.984375 -4.21875 3.90625 -4.21875 C 3.890625 -4.21875 3.859375 -4.21875 3.8125 -4.140625 L 3.515625 -3.703125 C 3.296875 -3.921875 2.984375 -4.21875 2.421875 -4.21875 C 1.296875 -4.21875 0.328125 -3.265625 0.328125 -2.046875 Z M 0.328125 -2.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph6-2">
<path style="stroke:none;" d="M 2.375 -4.171875 C 2.359375 -4.25 2.34375 -4.28125 2.25 -4.28125 C 2.140625 -4.28125 2.125 -4.25 2.09375 -4.171875 L 0.859375 -0.59375 C 0.75 -0.28125 0.515625 -0.1875 0.1875 -0.1875 L 0.1875 0 C 0.328125 0 0.59375 -0.015625 0.796875 -0.015625 C 0.984375 -0.015625 1.296875 0 1.484375 0 L 1.484375 -0.1875 C 1.1875 -0.1875 1.046875 -0.328125 1.046875 -0.484375 C 1.046875 -0.515625 1.046875 -0.5625 1.046875 -0.578125 L 1.328125 -1.359375 L 2.8125 -1.359375 L 3.125 -0.453125 C 3.125 -0.421875 3.140625 -0.390625 3.140625 -0.359375 C 3.140625 -0.1875 2.8125 -0.1875 2.640625 -0.1875 L 2.640625 0 C 2.859375 -0.015625 3.28125 -0.015625 3.5 -0.015625 C 3.765625 -0.015625 4.046875 -0.015625 4.296875 0 L 4.296875 -0.1875 L 4.1875 -0.1875 C 3.828125 -0.1875 3.734375 -0.234375 3.671875 -0.421875 Z M 2.0625 -3.5 L 2.734375 -1.546875 L 1.390625 -1.546875 Z M 2.0625 -3.5 "/>
</symbol>
<symbol overflow="visible" id="glyph6-3">
<path style="stroke:none;" d="M 1.390625 -4.015625 C 1.328125 -4.078125 1.328125 -4.09375 1.21875 -4.09375 L 0.203125 -4.09375 L 0.203125 -3.90625 L 0.375 -3.90625 C 0.453125 -3.90625 0.578125 -3.890625 0.671875 -3.890625 C 0.8125 -3.875 0.8125 -3.859375 0.8125 -3.75 L 0.8125 -0.625 C 0.8125 -0.46875 0.8125 -0.1875 0.203125 -0.1875 L 0.203125 0 C 0.40625 0 0.703125 -0.015625 0.890625 -0.015625 C 1.09375 -0.015625 1.390625 0 1.59375 0 L 1.59375 -0.1875 C 0.984375 -0.1875 0.984375 -0.46875 0.984375 -0.625 L 0.984375 -3.734375 C 1.015625 -3.703125 1.015625 -3.703125 1.046875 -3.671875 L 3.484375 -0.078125 C 3.53125 0 3.546875 0 3.578125 0 C 3.671875 0 3.671875 -0.046875 3.671875 -0.15625 L 3.671875 -3.453125 C 3.671875 -3.625 3.671875 -3.90625 4.28125 -3.90625 L 4.28125 -4.09375 C 4.078125 -4.078125 3.78125 -4.0625 3.578125 -4.0625 C 3.390625 -4.0625 3.09375 -4.078125 2.890625 -4.09375 L 2.890625 -3.90625 C 3.5 -3.90625 3.5 -3.625 3.5 -3.453125 L 3.5 -0.90625 Z M 1.390625 -4.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph6-4">
<path style="stroke:none;" d="M 3.671875 -3.625 C 3.671875 -3.84375 3.6875 -3.90625 4.140625 -3.90625 L 4.28125 -3.90625 L 4.28125 -4.09375 C 4.078125 -4.0625 3.625 -4.0625 3.40625 -4.0625 C 3.171875 -4.0625 2.734375 -4.0625 2.515625 -4.09375 L 2.515625 -3.90625 L 2.65625 -3.90625 C 3.125 -3.90625 3.140625 -3.84375 3.140625 -3.625 L 3.140625 -2.21875 L 1.34375 -2.21875 L 1.34375 -3.625 C 1.34375 -3.84375 1.359375 -3.90625 1.8125 -3.90625 L 1.96875 -3.90625 L 1.96875 -4.09375 C 1.75 -4.0625 1.3125 -4.0625 1.078125 -4.0625 C 0.859375 -4.0625 0.40625 -4.0625 0.203125 -4.09375 L 0.203125 -3.90625 L 0.34375 -3.90625 C 0.796875 -3.90625 0.8125 -3.84375 0.8125 -3.625 L 0.8125 -0.46875 C 0.8125 -0.25 0.796875 -0.1875 0.34375 -0.1875 L 0.203125 -0.1875 L 0.203125 0 C 0.40625 -0.015625 0.84375 -0.015625 1.078125 -0.015625 C 1.296875 -0.015625 1.75 -0.015625 1.96875 0 L 1.96875 -0.1875 L 1.8125 -0.1875 C 1.359375 -0.1875 1.34375 -0.25 1.34375 -0.46875 L 1.34375 -2.03125 L 3.140625 -2.03125 L 3.140625 -0.46875 C 3.140625 -0.25 3.125 -0.1875 2.65625 -0.1875 L 2.515625 -0.1875 L 2.515625 0 C 2.734375 -0.015625 3.171875 -0.015625 3.40625 -0.015625 C 3.625 -0.015625 4.078125 -0.015625 4.28125 0 L 4.28125 -0.1875 L 4.140625 -0.1875 C 3.6875 -0.1875 3.671875 -0.25 3.671875 -0.46875 Z M 3.671875 -3.625 "/>
</symbol>
<symbol overflow="visible" id="glyph6-5">
<path style="stroke:none;" d="M 3.484375 -1.546875 L 3.328125 -1.546875 C 3.265625 -0.9375 3.1875 -0.1875 2.125 -0.1875 L 1.640625 -0.1875 C 1.359375 -0.1875 1.34375 -0.234375 1.34375 -0.421875 L 1.34375 -3.609375 C 1.34375 -3.8125 1.34375 -3.90625 1.921875 -3.90625 L 2.109375 -3.90625 L 2.109375 -4.09375 C 1.890625 -4.0625 1.359375 -4.0625 1.109375 -4.0625 C 0.875 -4.0625 0.40625 -4.0625 0.203125 -4.09375 L 0.203125 -3.90625 L 0.34375 -3.90625 C 0.796875 -3.90625 0.8125 -3.84375 0.8125 -3.625 L 0.8125 -0.46875 C 0.8125 -0.25 0.796875 -0.1875 0.34375 -0.1875 L 0.203125 -0.1875 L 0.203125 0 L 3.3125 0 Z M 3.484375 -1.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph6-6">
<path style="stroke:none;" d="M 1.34375 -2.109375 L 1.34375 -3.65625 C 1.34375 -3.796875 1.34375 -3.875 1.46875 -3.890625 C 1.53125 -3.90625 1.703125 -3.90625 1.828125 -3.90625 C 2.359375 -3.90625 3.03125 -3.875 3.03125 -3.015625 C 3.03125 -2.59375 2.890625 -2.109375 2 -2.109375 Z M 2.609375 -2.03125 C 3.1875 -2.171875 3.65625 -2.546875 3.65625 -3.015625 C 3.65625 -3.578125 2.96875 -4.09375 2.09375 -4.09375 L 0.203125 -4.09375 L 0.203125 -3.90625 L 0.359375 -3.90625 C 0.8125 -3.90625 0.828125 -3.84375 0.828125 -3.625 L 0.828125 -0.46875 C 0.828125 -0.25 0.8125 -0.1875 0.359375 -0.1875 L 0.203125 -0.1875 L 0.203125 0 C 0.421875 -0.015625 0.84375 -0.015625 1.078125 -0.015625 C 1.3125 -0.015625 1.734375 -0.015625 1.953125 0 L 1.953125 -0.1875 L 1.8125 -0.1875 C 1.359375 -0.1875 1.34375 -0.25 1.34375 -0.46875 L 1.34375 -1.984375 L 2.03125 -1.984375 C 2.125 -1.984375 2.375 -1.984375 2.578125 -1.78125 C 2.8125 -1.5625 2.8125 -1.375 2.8125 -0.96875 C 2.8125 -0.59375 2.8125 -0.34375 3.0625 -0.125 C 3.296875 0.09375 3.625 0.125 3.8125 0.125 C 4.28125 0.125 4.375 -0.359375 4.375 -0.53125 C 4.375 -0.5625 4.375 -0.625 4.296875 -0.625 C 4.234375 -0.625 4.234375 -0.578125 4.234375 -0.53125 C 4.1875 -0.109375 3.984375 0 3.84375 0 C 3.546875 0 3.5 -0.3125 3.40625 -0.859375 L 3.328125 -1.34375 C 3.21875 -1.71875 2.9375 -1.921875 2.609375 -2.03125 Z M 2.609375 -2.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph6-7">
<path style="stroke:none;" d="M 2.40625 -2.3125 L 3.21875 -3.515625 C 3.359375 -3.703125 3.5625 -3.890625 4.09375 -3.90625 L 4.09375 -4.09375 C 3.859375 -4.078125 3.578125 -4.0625 3.421875 -4.0625 C 3.1875 -4.0625 2.90625 -4.0625 2.65625 -4.09375 L 2.65625 -3.90625 C 2.90625 -3.890625 3.03125 -3.765625 3.03125 -3.625 C 3.03125 -3.5625 3.015625 -3.546875 2.984375 -3.484375 L 2.296875 -2.484375 L 1.53125 -3.625 C 1.515625 -3.65625 1.484375 -3.703125 1.484375 -3.71875 C 1.484375 -3.796875 1.609375 -3.890625 1.875 -3.90625 L 1.875 -4.09375 C 1.65625 -4.0625 1.234375 -4.0625 1 -4.0625 C 0.8125 -4.0625 0.4375 -4.078125 0.21875 -4.09375 L 0.21875 -3.90625 L 0.328125 -3.90625 C 0.671875 -3.90625 0.78125 -3.859375 0.890625 -3.6875 L 2 -2.03125 L 1.015625 -0.578125 C 0.921875 -0.453125 0.75 -0.1875 0.140625 -0.1875 L 0.140625 0 C 0.359375 0 0.609375 -0.015625 0.8125 -0.015625 C 1.03125 -0.015625 1.359375 -0.015625 1.578125 0 L 1.578125 -0.1875 C 1.296875 -0.1875 1.203125 -0.359375 1.203125 -0.453125 C 1.203125 -0.515625 1.21875 -0.53125 1.25 -0.609375 L 2.109375 -1.859375 L 3.046875 -0.4375 C 3.0625 -0.40625 3.078125 -0.390625 3.078125 -0.359375 C 3.078125 -0.296875 2.953125 -0.1875 2.6875 -0.1875 L 2.6875 0 C 2.90625 -0.015625 3.34375 -0.015625 3.5625 -0.015625 C 3.8125 -0.015625 4.09375 -0.015625 4.34375 0 L 4.34375 -0.1875 L 4.234375 -0.1875 C 3.921875 -0.1875 3.796875 -0.21875 3.671875 -0.40625 Z M 2.40625 -2.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph6-8">
<path style="stroke:none;" d="M 3.984375 -4.046875 L 0.328125 -4.046875 L 0.21875 -2.703125 L 0.359375 -2.703125 C 0.453125 -3.671875 0.53125 -3.859375 1.4375 -3.859375 C 1.546875 -3.859375 1.703125 -3.859375 1.765625 -3.859375 C 1.890625 -3.828125 1.890625 -3.765625 1.890625 -3.625 L 1.890625 -0.46875 C 1.890625 -0.265625 1.890625 -0.1875 1.265625 -0.1875 L 1.015625 -0.1875 L 1.015625 0 C 1.265625 -0.015625 1.875 -0.015625 2.15625 -0.015625 C 2.421875 -0.015625 3.046875 -0.015625 3.296875 0 L 3.296875 -0.1875 L 3.046875 -0.1875 C 2.421875 -0.1875 2.421875 -0.265625 2.421875 -0.46875 L 2.421875 -3.625 C 2.421875 -3.75 2.421875 -3.828125 2.53125 -3.859375 C 2.59375 -3.859375 2.765625 -3.859375 2.875 -3.859375 C 3.78125 -3.859375 3.859375 -3.671875 3.953125 -2.703125 L 4.09375 -2.703125 Z M 3.984375 -4.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph7-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph7-1">
<path style="stroke:none;" d="M 0.578125 -0.265625 C 0.578125 -0.1875 0.578125 -0.140625 0.484375 -0.140625 C 0.421875 -0.125 0.3125 -0.125 0.25 -0.125 L 0.25 0 L 1.5625 0 C 2.203125 0 2.703125 -0.453125 2.703125 -1 C 2.703125 -1.5625 2.203125 -2.03125 1.5625 -2.03125 L 0.25 -2.03125 L 0.25 -1.90625 C 0.328125 -1.90625 0.421875 -1.90625 0.484375 -1.90625 C 0.578125 -1.890625 0.578125 -1.859375 0.578125 -1.78125 Z M 1.046875 -0.125 C 0.890625 -0.125 0.890625 -0.15625 0.890625 -0.25 L 0.890625 -1.78125 C 0.890625 -1.890625 0.890625 -1.90625 1.046875 -1.90625 L 1.484375 -1.90625 C 1.828125 -1.90625 2.046875 -1.75 2.125 -1.6875 C 2.234375 -1.5625 2.359375 -1.390625 2.359375 -1 C 2.359375 -0.734375 2.3125 -0.515625 2.140625 -0.359375 C 2.03125 -0.265625 1.828125 -0.125 1.484375 -0.125 Z M 1.046875 -0.125 "/>
</symbol>
<symbol overflow="visible" id="glyph7-2">
<path style="stroke:none;" d="M 1.828125 -0.640625 C 1.828125 -1.015625 1.484375 -1.34375 1.015625 -1.34375 C 0.546875 -1.34375 0.1875 -1.015625 0.1875 -0.640625 C 0.1875 -0.28125 0.546875 0.03125 1.015625 0.03125 C 1.484375 0.03125 1.828125 -0.28125 1.828125 -0.640625 Z M 1.015625 -0.078125 C 0.5 -0.078125 0.5 -0.515625 0.5 -0.671875 C 0.5 -0.796875 0.5 -1.234375 1.015625 -1.234375 C 1.53125 -1.234375 1.53125 -0.796875 1.53125 -0.671875 C 1.53125 -0.515625 1.53125 -0.078125 1.015625 -0.078125 Z M 1.015625 -0.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph7-3">
<path style="stroke:none;" d="M 2.828125 -0.90625 C 2.828125 -1.265625 2.546875 -1.3125 2.328125 -1.3125 C 2.03125 -1.3125 1.859375 -1.171875 1.78125 -1.046875 C 1.703125 -1.3125 1.40625 -1.3125 1.296875 -1.3125 C 0.984375 -1.3125 0.8125 -1.15625 0.734375 -1.03125 L 0.734375 -1.3125 L 0.25 -1.28125 L 0.25 -1.15625 C 0.46875 -1.15625 0.5 -1.140625 0.5 -0.984375 L 0.5 -0.25 C 0.5 -0.15625 0.5 -0.125 0.296875 -0.125 L 0.25 -0.125 L 0.25 0 C 0.375 -0.015625 0.5 -0.015625 0.625 -0.015625 C 0.75 -0.015625 0.875 -0.015625 1 0 L 1 -0.125 L 0.953125 -0.125 C 0.765625 -0.125 0.765625 -0.15625 0.765625 -0.25 L 0.765625 -0.765625 C 0.765625 -1.09375 1.0625 -1.21875 1.25 -1.21875 C 1.46875 -1.21875 1.53125 -1.09375 1.53125 -0.90625 L 1.53125 -0.25 C 1.53125 -0.15625 1.53125 -0.125 1.328125 -0.125 L 1.28125 -0.125 L 1.28125 0 C 1.40625 -0.015625 1.53125 -0.015625 1.65625 -0.015625 C 1.78125 -0.015625 1.921875 -0.015625 2.046875 0 L 2.046875 -0.125 L 1.984375 -0.125 C 1.796875 -0.125 1.796875 -0.15625 1.796875 -0.25 L 1.796875 -0.765625 C 1.796875 -1.09375 2.09375 -1.21875 2.296875 -1.21875 C 2.515625 -1.21875 2.5625 -1.09375 2.5625 -0.90625 L 2.5625 -0.25 C 2.5625 -0.15625 2.5625 -0.125 2.375 -0.125 L 2.3125 -0.125 L 2.3125 0 C 2.4375 -0.015625 2.5625 -0.015625 2.703125 -0.015625 C 2.828125 -0.015625 2.953125 -0.015625 3.078125 0 L 3.078125 -0.125 L 3.015625 -0.125 C 2.828125 -0.125 2.828125 -0.15625 2.828125 -0.25 Z M 2.828125 -0.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph7-4">
<path style="stroke:none;" d="M 0.75 -1.84375 C 0.75 -1.9375 0.671875 -2.015625 0.578125 -2.015625 C 0.484375 -2.015625 0.390625 -1.953125 0.390625 -1.84375 C 0.390625 -1.734375 0.484375 -1.65625 0.578125 -1.65625 C 0.671875 -1.65625 0.75 -1.734375 0.75 -1.84375 Z M 0.265625 -1.28125 L 0.265625 -1.15625 C 0.46875 -1.15625 0.5 -1.140625 0.5 -0.984375 L 0.5 -0.25 C 0.5 -0.15625 0.5 -0.125 0.296875 -0.125 L 0.25 -0.125 L 0.25 0 C 0.375 -0.015625 0.5 -0.015625 0.625 -0.015625 C 0.734375 -0.015625 0.859375 -0.015625 0.96875 0 L 0.96875 -0.125 C 0.765625 -0.125 0.75 -0.125 0.75 -0.25 L 0.75 -1.3125 Z M 0.265625 -1.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph7-5">
<path style="stroke:none;" d="M 1.796875 -0.90625 C 1.796875 -1.234375 1.5625 -1.3125 1.296875 -1.3125 C 0.96875 -1.3125 0.796875 -1.140625 0.734375 -1.03125 L 0.734375 -1.3125 L 0.25 -1.28125 L 0.25 -1.15625 C 0.46875 -1.15625 0.5 -1.140625 0.5 -0.984375 L 0.5 -0.25 C 0.5 -0.15625 0.5 -0.125 0.296875 -0.125 L 0.25 -0.125 L 0.25 0 C 0.375 -0.015625 0.5 -0.015625 0.625 -0.015625 C 0.75 -0.015625 0.875 -0.015625 1 0 L 1 -0.125 L 0.953125 -0.125 C 0.765625 -0.125 0.765625 -0.15625 0.765625 -0.25 L 0.765625 -0.765625 C 0.765625 -1.109375 1.0625 -1.21875 1.25 -1.21875 C 1.46875 -1.21875 1.53125 -1.09375 1.53125 -0.90625 L 1.53125 -0.25 C 1.53125 -0.15625 1.53125 -0.125 1.328125 -0.125 L 1.28125 -0.125 L 1.28125 0 C 1.40625 -0.015625 1.53125 -0.015625 1.65625 -0.015625 C 1.78125 -0.015625 1.90625 -0.015625 2.03125 0 L 2.03125 -0.125 L 1.984375 -0.125 C 1.796875 -0.125 1.796875 -0.15625 1.796875 -0.25 Z M 1.796875 -0.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph7-6">
<path style="stroke:none;" d="M 1.5625 -0.890625 C 1.5625 -1.171875 1.265625 -1.34375 0.890625 -1.34375 C 0.703125 -1.34375 0.359375 -1.328125 0.359375 -1.078125 C 0.359375 -0.96875 0.4375 -0.90625 0.515625 -0.90625 C 0.59375 -0.90625 0.671875 -0.96875 0.671875 -1.078125 C 0.671875 -1.140625 0.640625 -1.1875 0.609375 -1.203125 C 0.703125 -1.234375 0.84375 -1.234375 0.890625 -1.234375 C 1.140625 -1.234375 1.296875 -1.09375 1.296875 -0.890625 L 1.296875 -0.8125 C 1 -0.796875 0.84375 -0.78125 0.609375 -0.703125 C 0.421875 -0.625 0.25 -0.5 0.25 -0.3125 C 0.25 -0.03125 0.59375 0.03125 0.828125 0.03125 C 1.0625 0.03125 1.234375 -0.0625 1.328125 -0.21875 C 1.34375 -0.109375 1.40625 0.015625 1.5625 0.015625 C 1.578125 0.015625 1.921875 0.015625 1.921875 -0.265625 L 1.921875 -0.4375 L 1.796875 -0.4375 L 1.796875 -0.28125 C 1.796875 -0.25 1.796875 -0.109375 1.6875 -0.109375 C 1.5625 -0.109375 1.5625 -0.25 1.5625 -0.28125 Z M 1.296875 -0.421875 C 1.296875 -0.09375 0.9375 -0.0625 0.859375 -0.0625 C 0.6875 -0.0625 0.515625 -0.15625 0.515625 -0.3125 C 0.515625 -0.40625 0.578125 -0.6875 1.296875 -0.71875 Z M 1.296875 -0.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph7-7">
<path style="stroke:none;" d="M 0.734375 -1.15625 L 1.265625 -1.15625 L 1.265625 -1.28125 L 0.734375 -1.28125 L 0.734375 -1.828125 L 0.609375 -1.828125 C 0.609375 -1.5625 0.453125 -1.265625 0.15625 -1.25 L 0.15625 -1.15625 L 0.46875 -1.15625 L 0.46875 -0.375 C 0.46875 -0.03125 0.75 0.03125 0.9375 0.03125 C 1.15625 0.03125 1.328125 -0.125 1.328125 -0.375 L 1.328125 -0.546875 L 1.203125 -0.546875 L 1.203125 -0.390625 C 1.203125 -0.15625 1.0625 -0.078125 0.96875 -0.078125 C 0.734375 -0.078125 0.734375 -0.3125 0.734375 -0.375 Z M 0.734375 -1.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph7-8">
<path style="stroke:none;" d="M 2.5625 -2.015625 L 0.28125 -2.015625 L 0.21875 -1.296875 L 0.34375 -1.296875 C 0.390625 -1.84375 0.5 -1.890625 0.984375 -1.890625 C 1.046875 -1.890625 1.15625 -1.890625 1.1875 -1.875 C 1.265625 -1.875 1.265625 -1.859375 1.265625 -1.765625 L 1.265625 -0.25 C 1.265625 -0.15625 1.265625 -0.125 0.953125 -0.125 L 0.796875 -0.125 L 0.796875 0 C 0.953125 -0.015625 1.265625 -0.015625 1.421875 -0.015625 C 1.59375 -0.015625 1.90625 -0.015625 2.0625 0 L 2.0625 -0.125 L 1.90625 -0.125 C 1.59375 -0.125 1.59375 -0.15625 1.59375 -0.25 L 1.59375 -1.765625 C 1.59375 -1.859375 1.59375 -1.875 1.671875 -1.875 C 1.703125 -1.890625 1.796875 -1.890625 1.859375 -1.890625 C 2.34375 -1.890625 2.46875 -1.84375 2.515625 -1.296875 L 2.640625 -1.296875 Z M 2.5625 -2.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph7-9">
<path style="stroke:none;" d="M 1.546875 -0.671875 C 1.609375 -0.671875 1.625 -0.671875 1.625 -0.75 C 1.625 -0.9375 1.53125 -1.34375 0.96875 -1.34375 C 0.515625 -1.34375 0.1875 -1.015625 0.1875 -0.65625 C 0.1875 -0.28125 0.5625 0.03125 1.015625 0.03125 C 1.484375 0.03125 1.625 -0.296875 1.625 -0.359375 C 1.625 -0.40625 1.578125 -0.40625 1.5625 -0.40625 C 1.53125 -0.40625 1.515625 -0.390625 1.5 -0.359375 C 1.421875 -0.140625 1.203125 -0.078125 1.03125 -0.078125 C 0.78125 -0.078125 0.65625 -0.203125 0.609375 -0.265625 C 0.5 -0.40625 0.5 -0.59375 0.5 -0.671875 Z M 0.5 -0.765625 C 0.53125 -1.15625 0.828125 -1.234375 0.96875 -1.234375 C 1.375 -1.234375 1.40625 -0.84375 1.40625 -0.765625 Z M 0.5 -0.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph7-10">
<path style="stroke:none;" d="M 1.28125 -1.28125 L 1.28125 -1.15625 C 1.5 -1.15625 1.53125 -1.140625 1.53125 -0.984375 L 1.53125 -0.5 C 1.53125 -0.234375 1.3125 -0.0625 1.078125 -0.0625 C 0.765625 -0.0625 0.765625 -0.1875 0.765625 -0.34375 L 0.765625 -1.3125 L 0.25 -1.28125 L 0.25 -1.15625 C 0.46875 -1.15625 0.5 -1.125 0.5 -0.984375 L 0.5 -0.328125 C 0.515625 0 0.859375 0.03125 1.046875 0.03125 C 1.296875 0.03125 1.453125 -0.078125 1.53125 -0.21875 L 1.53125 0.03125 L 2.03125 0 L 2.03125 -0.125 C 1.8125 -0.125 1.796875 -0.15625 1.796875 -0.296875 L 1.796875 -1.3125 Z M 1.28125 -1.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph8-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph8-1">
<path style="stroke:none;" d="M 0.34375 -3.5 C 0.75 -3.5 0.765625 -3.453125 0.765625 -3.25 L 0.765625 -0.421875 C 0.765625 -0.21875 0.75 -0.171875 0.34375 -0.171875 L 0.21875 -0.171875 L 0.21875 0 L 2.21875 0 C 3.140625 0 3.90625 -0.796875 3.90625 -1.8125 C 3.90625 -2.828125 3.15625 -3.671875 2.21875 -3.671875 L 0.21875 -3.671875 L 0.21875 -3.5 Z M 1.5 -0.171875 C 1.234375 -0.171875 1.234375 -0.203125 1.234375 -0.390625 L 1.234375 -3.28125 C 1.234375 -3.46875 1.234375 -3.5 1.5 -3.5 L 2.0625 -3.5 C 2.59375 -3.5 2.90625 -3.234375 3.0625 -3.03125 C 3.296875 -2.71875 3.375 -2.34375 3.375 -1.8125 C 3.375 -1.578125 3.375 -1.015625 3.078125 -0.640625 C 2.796875 -0.28125 2.40625 -0.171875 2.078125 -0.171875 Z M 1.5 -0.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph8-2">
<path style="stroke:none;" d="M 0.953125 -1.234375 C 0.953125 -1.453125 1.015625 -2.234375 1.625 -2.234375 C 1.625 -2.234375 1.53125 -2.171875 1.53125 -2.03125 C 1.53125 -1.890625 1.640625 -1.796875 1.765625 -1.796875 C 1.875 -1.796875 2 -1.875 2 -2.046875 C 2 -2.21875 1.84375 -2.375 1.609375 -2.375 C 1.28125 -2.375 1.046875 -2.15625 0.9375 -1.8125 L 0.921875 -1.8125 L 0.921875 -2.375 L 0.15625 -2.3125 L 0.15625 -2.15625 C 0.53125 -2.15625 0.578125 -2.109375 0.578125 -1.84375 L 0.578125 -0.40625 C 0.578125 -0.171875 0.515625 -0.171875 0.15625 -0.171875 L 0.15625 0 C 0.453125 -0.015625 0.515625 -0.015625 0.796875 -0.015625 C 1 -0.015625 1.140625 -0.015625 1.46875 0 L 1.46875 -0.171875 L 1.359375 -0.171875 C 0.96875 -0.171875 0.953125 -0.21875 0.953125 -0.421875 Z M 0.953125 -1.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph8-3">
<path style="stroke:none;" d="M 0.984375 -2.375 L 0.21875 -2.3125 L 0.21875 -2.15625 C 0.5625 -2.15625 0.609375 -2.125 0.609375 -1.859375 L 0.609375 -0.40625 C 0.609375 -0.171875 0.546875 -0.171875 0.1875 -0.171875 L 0.1875 0 C 0.4375 -0.015625 0.546875 -0.015625 0.78125 -0.015625 C 0.875 -0.015625 1.09375 -0.015625 1.359375 0 L 1.359375 -0.171875 C 1.015625 -0.171875 0.984375 -0.1875 0.984375 -0.40625 Z M 1 -3.3125 C 1 -3.46875 0.875 -3.59375 0.71875 -3.59375 C 0.546875 -3.59375 0.421875 -3.46875 0.421875 -3.3125 C 0.421875 -3.15625 0.546875 -3.015625 0.71875 -3.015625 C 0.875 -3.015625 1 -3.15625 1 -3.3125 Z M 1 -3.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph8-4">
<path style="stroke:none;" d="M 0.96875 -1.90625 C 0.953125 -1.9375 0.9375 -1.96875 0.9375 -2.015625 C 0.9375 -2.15625 1.140625 -2.15625 1.234375 -2.15625 L 1.234375 -2.3125 C 1 -2.3125 0.875 -2.296875 0.640625 -2.296875 C 0.453125 -2.296875 0.296875 -2.296875 0.109375 -2.3125 L 0.109375 -2.15625 C 0.359375 -2.15625 0.46875 -2.15625 0.546875 -1.953125 L 1.328125 -0.046875 C 1.359375 0.046875 1.40625 0.0625 1.453125 0.0625 C 1.5 0.0625 1.546875 0.046875 1.578125 -0.046875 L 2.3125 -1.8125 C 2.421875 -2.078125 2.609375 -2.140625 2.796875 -2.15625 L 2.796875 -2.3125 C 2.640625 -2.296875 2.390625 -2.296875 2.390625 -2.296875 C 2.234375 -2.296875 2.0625 -2.3125 1.921875 -2.3125 L 1.921875 -2.15625 C 2.078125 -2.140625 2.171875 -2.0625 2.171875 -1.921875 C 2.171875 -1.859375 2.15625 -1.859375 2.140625 -1.796875 L 1.578125 -0.4375 Z M 0.96875 -1.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph8-5">
<path style="stroke:none;" d="M 2.15625 -1.234375 C 2.265625 -1.234375 2.296875 -1.234375 2.296875 -1.34375 C 2.296875 -1.890625 2 -2.40625 1.3125 -2.40625 C 0.65625 -2.40625 0.15625 -1.84375 0.15625 -1.1875 C 0.15625 -0.484375 0.71875 0.0625 1.375 0.0625 C 2.03125 0.0625 2.296875 -0.515625 2.296875 -0.640625 C 2.296875 -0.671875 2.265625 -0.703125 2.21875 -0.703125 C 2.171875 -0.703125 2.15625 -0.671875 2.140625 -0.65625 C 1.96875 -0.109375 1.484375 -0.09375 1.40625 -0.09375 C 1.140625 -0.09375 0.921875 -0.234375 0.796875 -0.421875 C 0.625 -0.6875 0.625 -1 0.625 -1.234375 Z M 0.625 -1.359375 C 0.671875 -2.1875 1.15625 -2.28125 1.3125 -2.28125 C 1.609375 -2.28125 1.921875 -2.046875 1.921875 -1.359375 Z M 0.625 -1.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph9-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph9-1">
<path style="stroke:none;" d="M 9.40625 -2.5 C 9.40625 -5.09375 7.390625 -7.140625 4.984375 -7.140625 C 2.546875 -7.140625 0.546875 -5.078125 0.546875 -2.5 C 0.546875 0.109375 2.5625 2.15625 4.96875 2.15625 C 7.421875 2.15625 9.40625 0.09375 9.40625 -2.5 Z M 4.984375 1.75 C 2.75 1.75 0.953125 -0.140625 0.953125 -2.5 C 0.953125 -4.859375 2.765625 -6.734375 4.96875 -6.734375 C 7.203125 -6.734375 9.015625 -4.84375 9.015625 -2.5 C 9.015625 -0.125 7.1875 1.75 4.984375 1.75 Z M 4.984375 1.75 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00084375 0.000125 L 42.518687 0.000125 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="38.405" y="128.578"/>
<use xlink:href="#glyph0-2" x="43.17858" y="128.578"/>
<use xlink:href="#glyph0-3" x="48.063243" y="128.578"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="55.299079" y="128.578"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00084375 56.695438 L 42.518687 56.695438 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="38.031" y="61.459"/>
<use xlink:href="#glyph0-2" x="42.80458" y="61.459"/>
<use xlink:href="#glyph0-3" x="47.689243" y="61.459"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="54.925079" y="61.459"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 85.042125 0.000125 L 127.561656 0.000125 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 85.042125 56.695438 L 127.561656 56.695438 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.081187 0.000125 L 212.600719 0.000125 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.081187 56.695438 L 212.600719 56.695438 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 255.12025 0.000125 L 297.639781 0.000125 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 255.12025 56.695438 L 297.639781 56.695438 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.163219 0.000125 L 382.68275 0.000125 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.163219 56.695438 L 382.68275 56.695438 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 42.518687 0.000125 L 85.042125 56.695438 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 42.518687 56.695438 L 85.042125 0.000125 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.561656 0.000125 L 170.081187 56.695438 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.561656 56.695438 L 170.081187 0.000125 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.600719 0.000125 L 255.12025 56.695438 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.600719 56.695438 L 255.12025 0.000125 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 297.639781 0.000125 L 340.163219 56.695438 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 297.639781 56.695438 L 340.163219 0.000125 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00084375 0.000125 L -0.00084375 14.172 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -5.668813 14.172 L -5.668813 42.519656 L 5.671031 42.519656 L 5.671031 14.172 Z M -5.668813 14.172 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00084375 56.695438 L -0.00084375 42.519656 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="30.551" y="100.237"/>
<use xlink:href="#glyph1-2" x="30.551" y="95.629167"/>
<use xlink:href="#glyph1-3" x="30.551" y="91.021334"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 382.68275 0.000125 L 382.68275 14.172 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 377.010875 14.172 L 377.010875 42.519656 L 388.350719 42.519656 L 388.350719 14.172 Z M 377.010875 14.172 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 382.68275 56.695438 L 382.68275 42.519656 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="413.228" y="100.237"/>
<use xlink:href="#glyph1-2" x="413.228" y="95.629167"/>
<use xlink:href="#glyph1-3" x="413.228" y="91.021334"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 123.128062 120.472781 L 89.475719 120.472781 C 88.374156 120.472781 87.483531 119.582156 87.483531 118.480594 L 87.483531 79.945438 C 87.483531 78.847781 88.374156 77.95325 89.475719 77.95325 L 123.128062 77.95325 C 124.225719 77.95325 125.12025 78.847781 125.12025 79.945438 L 125.12025 118.480594 C 125.12025 119.582156 124.225719 120.472781 123.128062 120.472781 Z M 123.128062 120.472781 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="118.463" y="19.885"/>
<use xlink:href="#glyph2-2" x="125.65799" y="19.885"/>
<use xlink:href="#glyph2-3" x="133.12994" y="19.885"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="118.463" y="31.841"/>
<use xlink:href="#glyph2-4" x="125.93495" y="31.841"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-5" x="131.195203" y="31.841"/>
<use xlink:href="#glyph2-6" x="136.730423" y="31.841"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-7" x="144.475349" y="31.841"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 99.214 56.695438 L 99.214 77.95325 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 113.385875 0.000125 L 113.385875 77.95325 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.167125 120.472781 L 174.514781 120.472781 C 173.413219 120.472781 172.522594 119.582156 172.522594 118.480594 L 172.522594 79.945438 C 172.522594 78.847781 173.413219 77.95325 174.514781 77.95325 L 208.167125 77.95325 C 209.268687 77.95325 210.159312 78.847781 210.159312 79.945438 L 210.159312 118.480594 C 210.159312 119.582156 209.268687 120.472781 208.167125 120.472781 Z M 208.167125 120.472781 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="203.502" y="19.885"/>
<use xlink:href="#glyph2-2" x="210.69699" y="19.885"/>
<use xlink:href="#glyph2-3" x="218.16894" y="19.885"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="203.502" y="31.841"/>
<use xlink:href="#glyph2-4" x="210.97395" y="31.841"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-5" x="216.234203" y="31.841"/>
<use xlink:href="#glyph2-6" x="221.769423" y="31.841"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-8" x="229.514349" y="31.841"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 184.253062 0.000125 L 184.253062 77.95325 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 198.428844 56.695438 L 198.428844 77.95325 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 293.206187 120.472781 L 259.55775 120.472781 C 258.456187 120.472781 257.561656 119.582156 257.561656 118.480594 L 257.561656 79.945438 C 257.561656 78.847781 258.456187 77.95325 259.55775 77.95325 L 293.206187 77.95325 C 294.30775 77.95325 295.198375 78.847781 295.198375 79.945438 L 295.198375 118.480594 C 295.198375 119.582156 294.30775 120.472781 293.206187 120.472781 Z M 293.206187 120.472781 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="288.542" y="19.885"/>
<use xlink:href="#glyph2-2" x="295.73699" y="19.885"/>
<use xlink:href="#glyph2-3" x="303.20894" y="19.885"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="288.542" y="31.841"/>
<use xlink:href="#glyph2-4" x="296.01395" y="31.841"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-5" x="301.274203" y="31.841"/>
<use xlink:href="#glyph2-6" x="306.809423" y="31.841"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-9" x="314.554349" y="31.841"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 269.296031 56.695438 L 269.296031 77.95325 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 283.467906 0.000125 L 283.467906 77.95325 " transform="matrix(1,0,0,-1,27.661,121.672)"/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.000125 -0.00025 L 101.343625 -0.00025 " transform="matrix(1,0,0,-1,14.047,235.906)"/>
<path style="fill:none;stroke-width:0.6376;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -1.553242 2.073969 C -1.424336 1.296625 0.001445 0.128656 0.388164 -0.00025 C 0.001445 -0.129156 -1.424336 -1.293219 -1.553242 -2.070562 " transform="matrix(1,0,0,-1,115.38918,235.906)"/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.000125 -0.00025 L -0.000125 67.323969 " transform="matrix(1,0,0,-1,14.047,235.906)"/>
<path style="fill:none;stroke-width:0.6376;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -1.552482 2.070438 C -1.423576 1.297 -0.00170125 0.129031 0.388924 0.000125 C -0.00170125 -0.128781 -1.423576 -1.29675 -1.552482 -2.074094 " transform="matrix(0,-1,-1,0,14.047,168.58033)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="57.429" y="245.647"/>
<use xlink:href="#glyph0-7" x="62.20258" y="245.647"/>
<use xlink:href="#glyph0-8" x="64.209047" y="245.647"/>
<use xlink:href="#glyph0-9" x="69.67453" y="245.647"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="6.724" y="218.86"/>
<use xlink:href="#glyph3-2" x="6.724" y="214.722532"/>
<use xlink:href="#glyph3-3" x="6.724" y="211.332259"/>
<use xlink:href="#glyph3-4" x="6.724" y="207.941987"/>
<use xlink:href="#glyph3-5" x="6.724" y="205.935519"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="6.724" y="200.540273"/>
<use xlink:href="#glyph3-6" x="6.724" y="196.402805"/>
<use xlink:href="#glyph3-7" x="6.724" y="193.358733"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-6" x="6.724" y="189.969954"/>
<use xlink:href="#glyph3-8" x="6.724" y="186.925882"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 55.898312 41.538813 L 102.253781 41.538813 L 102.253781 68.238031 L 55.898312 68.238031 Z M 55.898312 41.538813 " transform="matrix(1,0,0,-1,14.047,235.906)"/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00184375 0.00109375 L 5.670031 0.00109375 " transform="matrix(1,0,0,-1,73.662,176.005)"/>
<g style="fill:rgb(100%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="83.05" y="177.698"/>
<use xlink:href="#glyph0-2" x="87.82358" y="177.698"/>
<use xlink:href="#glyph0-3" x="92.708243" y="177.698"/>
</g>
<g style="fill:rgb(100%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="99.944079" y="177.698"/>
<use xlink:href="#glyph0-10" x="104.717659" y="177.698"/>
</g>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00184375 0.00075 L 5.670031 0.00075 " transform="matrix(1,0,0,-1,73.662,186.032)"/>
<g style="fill:rgb(0%,0%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="83.05" y="187.725"/>
<use xlink:href="#glyph0-2" x="87.82358" y="187.725"/>
<use xlink:href="#glyph0-3" x="92.708243" y="187.725"/>
</g>
<g style="fill:rgb(0%,0%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-11" x="99.944079" y="187.725"/>
<use xlink:href="#glyph0-10" x="104.773449" y="187.725"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.000125 0.851313 L 25.511594 0.851313 L 25.511594 26.363031 L 76.538938 26.363031 L 76.538938 0.851313 L 102.050656 0.851313 " transform="matrix(1,0,0,-1,14.047,235.906)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1.699094 0.851313 L 27.214719 0.851313 L 27.214719 26.363031 L 78.238156 26.363031 L 78.238156 0.851313 L 103.749875 0.851313 " transform="matrix(1,0,0,-1,14.047,235.906)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 105.287188 59.360844 L 105.412188 59.36475 M 105.295 59.36475 L 126.560625 59.368656 M 126.560625 59.368656 L 147.818438 59.36475 M 147.697344 59.36475 L 147.818438 59.36475 M 105.287188 42.692875 L 105.412188 42.696781 M 105.295 42.696781 L 126.560625 42.696781 M 126.560625 42.696781 L 147.818438 42.696781 M 147.697344 42.696781 L 147.818438 42.696781 M 64.806719 51.028813 L 62.935625 51.028813 M 39.123125 51.028813 L 39.005938 51.028813 M 39.123125 51.028813 L 34.873125 51.032719 M 34.873125 51.032719 L 30.619219 51.028813 M 30.740313 51.028813 L 30.619219 51.028813 M 136.072344 98.142094 L 136.072344 102.056156 M 136.072344 71.950688 L 136.080156 71.8335 M 136.080156 71.954594 L 136.091875 65.579594 M 136.091875 65.579594 L 136.080156 59.196781 M 136.080156 59.317875 L 136.080156 59.196781 M 136.072344 30.106938 L 136.080156 30.228031 M 136.080156 30.106938 L 136.091875 36.48975 M 136.091875 36.48975 L 136.080156 42.86475 M 136.080156 42.743656 L 136.080156 42.86475 M 110.552813 85.040531 L 119.404375 85.044438 M 110.552813 76.536625 L 119.056719 76.536625 L 119.056719 17.009281 L 119.404375 17.009281 M 78.662188 80.798344 L 84.927813 80.794438 M 39.970781 80.790531 L 39.853594 80.794438 M 39.970781 80.794438 L 35.720781 80.798344 M 35.720781 80.798344 L 31.466875 80.794438 M 31.587969 80.794438 L 31.466875 80.794438 " transform="matrix(1,0,0,-1,140.205,263.396)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="237.4194" y="219.211"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="237.4194" y="202.544"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:square;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 105.279375 42.688969 L 99.209063 42.688969 M 105.279375 59.356938 L 99.209063 59.356938 M 64.802813 51.024906 L 70.873125 51.024906 " transform="matrix(1,0,0,-1,140.205,263.396)"/>
<path style="fill:none;stroke-width:0.797;stroke-linecap:square;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.873125 51.024906 L 99.209063 34.356938 L 99.209063 67.692875 Z M 70.873125 51.024906 " transform="matrix(1,0,0,-1,140.205,263.396)"/>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.759844 59.360844 C 148.759844 59.888188 148.334063 60.313969 147.806719 60.313969 C 147.283281 60.313969 146.853594 59.888188 146.853594 59.360844 C 146.853594 58.837406 147.283281 58.411625 147.806719 58.411625 C 148.334063 58.411625 148.759844 58.837406 148.759844 59.360844 Z M 148.759844 59.360844 " transform="matrix(1,0,0,-1,140.205,263.396)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-1" x="278.139" y="201.919"/>
<use xlink:href="#glyph6-2" x="282.455994" y="201.919"/>
<use xlink:href="#glyph6-3" x="286.939164" y="201.919"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-4" x="293.412861" y="201.919"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.759844 42.692875 C 148.759844 43.220219 148.334063 43.646 147.806719 43.646 C 147.283281 43.646 146.853594 43.220219 146.853594 42.692875 C 146.853594 42.165531 147.283281 41.73975 147.806719 41.73975 C 148.334063 41.73975 148.759844 42.165531 148.759844 42.692875 Z M 148.759844 42.692875 " transform="matrix(1,0,0,-1,140.205,263.396)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-1" x="278.513" y="226.897"/>
<use xlink:href="#glyph6-2" x="282.829994" y="226.897"/>
<use xlink:href="#glyph6-3" x="287.313164" y="226.897"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-5" x="293.786861" y="226.897"/>
</g>
<path style="fill:none;stroke-width:0.797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 44.474688 51.024906 L 59.3575 41.501469 L 59.3575 60.548344 Z M 44.474688 51.024906 " transform="matrix(1,0,0,-1,140.205,263.396)"/>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 42.689531 51.024906 C 42.689531 50.532719 43.091875 50.130375 43.584063 50.130375 C 44.07625 50.130375 44.474688 50.532719 44.474688 51.024906 C 44.474688 51.517094 44.07625 51.919438 43.584063 51.919438 C 43.091875 51.919438 42.689531 51.517094 42.689531 51.024906 Z M 42.689531 51.024906 " transform="matrix(1,0,0,-1,140.205,263.396)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 62.931719 51.024906 L 59.3575 51.024906 M 39.119219 51.024906 L 42.689531 51.024906 " transform="matrix(1,0,0,-1,140.205,263.396)"/>
<path style="fill:none;stroke-width:0.797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 58.17 53.880375 L 55.787188 53.880375 L 55.787188 48.165531 L 51.619219 48.165531 M 55.787188 53.880375 L 54.002031 53.880375 L 54.002031 48.165531 " transform="matrix(1,0,0,-1,140.205,263.396)"/>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.568438 51.028813 C 31.568438 51.55225 31.142656 51.981938 30.615313 51.981938 C 30.091875 51.981938 29.666094 51.55225 29.666094 51.028813 C 29.666094 50.501469 30.091875 50.075688 30.615313 50.075688 C 31.142656 50.075688 31.568438 50.501469 31.568438 51.028813 Z M 31.568438 51.028813 " transform="matrix(1,0,0,-1,140.205,263.396)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-1" x="144.552" y="214.408"/>
<use xlink:href="#glyph6-2" x="148.868994" y="214.408"/>
<use xlink:href="#glyph6-3" x="153.352164" y="214.408"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-6" x="159.825861" y="214.408"/>
<use xlink:href="#glyph6-7" x="164.225943" y="214.408"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 136.064531 98.337406 L 136.064531 89.626469 L 127.7325 89.626469 " transform="matrix(1,0,0,-1,140.205,263.396)"/>
<path style="fill:none;stroke-width:0.797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.7325 91.591313 L 127.7325 78.493656 M 125.7325 89.626469 L 125.7325 80.4585 " transform="matrix(1,0,0,-1,140.205,263.396)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.7325 80.4585 L 136.064531 80.4585 L 136.064531 71.747563 " transform="matrix(1,0,0,-1,140.205,263.396)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.7325 85.040531 L 119.197344 85.040531 " transform="matrix(1,0,0,-1,140.205,263.396)"/>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.7325 85.040531 C 125.7325 85.567875 125.306719 85.993656 124.779375 85.993656 C 124.252031 85.993656 123.82625 85.567875 123.82625 85.040531 C 123.82625 84.517094 124.252031 84.087406 124.779375 84.087406 C 125.306719 84.087406 125.7325 84.517094 125.7325 85.040531 Z M 125.7325 85.040531 " transform="matrix(1,0,0,-1,140.205,263.396)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 136.064531 30.30225 L 136.064531 21.591313 L 127.7325 21.591313 M 127.7325 12.423344 L 136.064531 12.423344 L 136.064531 3.712406 " transform="matrix(1,0,0,-1,140.205,263.396)"/>
<path style="fill:none;stroke-width:0.797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.7325 23.556156 L 127.7325 10.4585 M 125.7325 21.591313 L 125.7325 12.423344 " transform="matrix(1,0,0,-1,140.205,263.396)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.7325 17.009281 L 119.197344 17.009281 " transform="matrix(1,0,0,-1,140.205,263.396)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 136.064531 8.505375 L 136.064531 2.55225 " transform="matrix(1,0,0,-1,140.205,263.396)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 130.111406 2.55225 L 142.017656 2.55225 " transform="matrix(1,0,0,-1,140.205,263.396)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.302813 1.360844 L 140.830156 1.360844 M 132.494219 0.169438 L 139.63875 0.169438 M 133.685625 -1.021969 L 138.447344 -1.021969 " transform="matrix(1,0,0,-1,140.205,263.396)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 136.064531 102.048344 L 136.064531 109.192875 " transform="matrix(1,0,0,-1,140.205,263.396)"/>
<path style="fill:none;stroke-width:0.797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.447344 105.860844 L 136.064531 109.192875 L 133.685625 105.860844 " transform="matrix(1,0,0,-1,140.205,263.396)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.025469 59.192875 C 137.025469 59.720219 136.599688 60.146 136.072344 60.146 C 135.548906 60.146 135.123125 59.720219 135.123125 59.192875 C 135.123125 58.665531 135.548906 58.23975 136.072344 58.23975 C 136.599688 58.23975 137.025469 58.665531 137.025469 59.192875 Z M 137.025469 59.192875 " transform="matrix(1,0,0,-1,140.205,263.396)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.025469 42.860844 C 137.025469 43.388188 136.599688 43.813969 136.072344 43.813969 C 135.548906 43.813969 135.123125 43.388188 135.123125 42.860844 C 135.123125 42.337406 135.548906 41.911625 136.072344 41.911625 C 136.599688 41.911625 137.025469 42.337406 137.025469 42.860844 Z M 137.025469 42.860844 " transform="matrix(1,0,0,-1,140.205,263.396)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 78.537188 89.294438 L 40.521563 89.294438 L 40.521563 72.286625 L 78.537188 72.286625 Z M 78.537188 89.294438 " transform="matrix(1,0,0,-1,140.205,263.396)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-1" x="182.717" y="183.624"/>
<use xlink:href="#glyph7-2" x="185.718333" y="183.624"/>
<use xlink:href="#glyph7-3" x="187.752497" y="183.624"/>
<use xlink:href="#glyph7-4" x="191.031786" y="183.624"/>
<use xlink:href="#glyph7-5" x="192.235667" y="183.624"/>
<use xlink:href="#glyph7-6" x="194.477252" y="183.624"/>
<use xlink:href="#glyph7-5" x="196.511415" y="183.624"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-7" x="198.648393" y="183.624"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-8" x="201.678119" y="183.624"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-4" x="204.545256" y="183.624"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-3" x="205.746148" y="183.624"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-9" x="209.028426" y="183.624"/>
<use xlink:href="#glyph7-2" x="210.854869" y="183.624"/>
<use xlink:href="#glyph7-10" x="212.889033" y="183.624"/>
<use xlink:href="#glyph7-7" x="215.130618" y="183.624"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.552813 89.294438 L 85.041094 89.294438 L 85.041094 72.286625 L 110.552813 72.286625 Z M 110.552813 89.294438 " transform="matrix(1,0,0,-1,140.205,263.396)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph8-1" x="230.346" y="184.446"/>
<use xlink:href="#glyph8-2" x="234.569174" y="184.446"/>
<use xlink:href="#glyph8-3" x="236.73187" y="184.446"/>
<use xlink:href="#glyph8-4" x="238.267814" y="184.446"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph8-5" x="241.035204" y="184.446"/>
<use xlink:href="#glyph8-2" x="243.494867" y="184.446"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 32.416094 80.790531 C 32.416094 81.313969 31.990313 81.73975 31.466875 81.73975 C 30.939531 81.73975 30.51375 81.313969 30.51375 80.790531 C 30.51375 80.263188 30.939531 79.837406 31.466875 79.837406 C 31.990313 79.837406 32.416094 80.263188 32.416094 80.790531 Z M 32.416094 80.790531 " transform="matrix(1,0,0,-1,140.205,263.396)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-1" x="145.483" y="184.645"/>
<use xlink:href="#glyph6-2" x="149.799994" y="184.645"/>
<use xlink:href="#glyph6-3" x="154.283164" y="184.645"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-8" x="160.756861" y="184.645"/>
<use xlink:href="#glyph6-7" x="165.073855" y="184.645"/>
</g>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.00121875 -0.0019375 L 101.341063 -0.0019375 " transform="matrix(1,0,0,-1,346.073,244.209)"/>
<path style="fill:none;stroke-width:0.6376;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -1.555805 2.072281 C -1.422992 1.294938 -0.0011175 0.130875 0.389508 -0.0019375 C -0.0011175 -0.130844 -1.422992 -1.294906 -1.555805 -2.07225 " transform="matrix(1,0,0,-1,447.41518,244.209)"/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.00121875 -0.0019375 L 0.00121875 67.326188 " transform="matrix(1,0,0,-1,346.073,244.209)"/>
<path style="fill:none;stroke-width:0.6376;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -1.55417 2.073 C -1.425264 1.295656 0.0005175 0.127687 0.387236 -0.00121875 C 0.0005175 -0.130125 -1.425264 -1.294188 -1.55417 -2.071531 " transform="matrix(0,-1,-1,0,346.073,176.88333)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="389.455" y="253.95"/>
<use xlink:href="#glyph0-7" x="394.22858" y="253.95"/>
<use xlink:href="#glyph0-8" x="396.235047" y="253.95"/>
<use xlink:href="#glyph0-9" x="401.70053" y="253.95"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-9" x="338.75" y="230.321"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="338.75" y="225.954392"/>
<use xlink:href="#glyph3-8" x="338.75" y="222.56412"/>
<use xlink:href="#glyph3-10" x="338.75" y="220.557652"/>
<use xlink:href="#glyph3-11" x="338.75" y="217.859282"/>
<use xlink:href="#glyph3-3" x="338.75" y="214.469009"/>
<use xlink:href="#glyph3-6" x="338.75" y="211.078736"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="338.75" y="205.68349"/>
<use xlink:href="#glyph3-6" x="338.75" y="201.546022"/>
<use xlink:href="#glyph3-7" x="338.75" y="198.50195"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-6" x="338.75" y="195.113172"/>
<use xlink:href="#glyph3-8" x="338.75" y="192.069099"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 77.329344 58.1465 L 118.856688 58.1465 L 118.856688 84.841813 L 77.329344 84.841813 Z M 77.329344 58.1465 " transform="matrix(1,0,0,-1,346.073,244.209)"/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.00009375 -0.001125 L 5.668063 -0.001125 " transform="matrix(1,0,0,-1,427.121,167.702)"/>
<g style="fill:rgb(100%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="436.51" y="169.395"/>
<use xlink:href="#glyph0-2" x="441.28358" y="169.395"/>
<use xlink:href="#glyph0-3" x="446.168243" y="169.395"/>
</g>
<g style="fill:rgb(100%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="453.404079" y="169.395"/>
</g>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.00009375 -0.00146875 L 5.668063 -0.00146875 " transform="matrix(1,0,0,-1,427.121,177.729)"/>
<g style="fill:rgb(0%,0%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="436.51" y="179.422"/>
<use xlink:href="#glyph0-2" x="441.28358" y="179.422"/>
<use xlink:href="#glyph0-3" x="446.168243" y="179.422"/>
</g>
<g style="fill:rgb(0%,0%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="453.404079" y="179.422"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.00121875 34.185563 L 25.512938 34.185563 " transform="matrix(1,0,0,-1,346.073,244.209)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.512938 34.185563 L 34.016844 57.826188 " transform="matrix(1,0,0,-1,346.073,244.209)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 34.016844 57.826188 L 68.032469 57.826188 " transform="matrix(1,0,0,-1,346.073,244.209)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 68.032469 57.826188 L 76.536375 34.185563 " transform="matrix(1,0,0,-1,346.073,244.209)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 76.536375 34.185563 L 102.048094 34.185563 " transform="matrix(1,0,0,-1,346.073,244.209)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.00121875 33.845719 L 25.512938 33.845719 " transform="matrix(1,0,0,-1,346.073,244.209)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.512938 33.845719 L 34.016844 10.205094 " transform="matrix(1,0,0,-1,346.073,244.209)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 34.016844 10.205094 L 68.032469 10.205094 " transform="matrix(1,0,0,-1,346.073,244.209)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 68.032469 10.205094 L 76.536375 33.845719 " transform="matrix(1,0,0,-1,346.073,244.209)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 76.536375 33.845719 L 102.048094 33.845719 " transform="matrix(1,0,0,-1,346.073,244.209)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="347.327" y="239.099"/>
<use xlink:href="#glyph0-9" x="350.02537" y="239.099"/>
<use xlink:href="#glyph0-13" x="353.069443" y="239.099"/>
<use xlink:href="#glyph0-9" x="356.113515" y="239.099"/>
<use xlink:href="#glyph0-14" x="359.157588" y="239.099"/>
<use xlink:href="#glyph0-7" x="361.890329" y="239.099"/>
<use xlink:href="#glyph0-15" x="363.896796" y="239.099"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="367.285575" y="239.099"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-16" x="383.105" y="239.135"/>
<use xlink:href="#glyph0-17" x="386.840975" y="239.135"/>
<use xlink:href="#glyph0-8" x="390.231248" y="239.135"/>
<use xlink:href="#glyph0-7" x="395.69673" y="239.135"/>
<use xlink:href="#glyph0-18" x="397.703198" y="239.135"/>
<use xlink:href="#glyph0-19" x="401.439173" y="239.135"/>
<use xlink:href="#glyph0-18" x="404.829446" y="239.135"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-20" x="408.391075" y="239.135"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="428.115" y="239.099"/>
<use xlink:href="#glyph0-9" x="430.81337" y="239.099"/>
<use xlink:href="#glyph0-13" x="433.857443" y="239.099"/>
<use xlink:href="#glyph0-9" x="436.901515" y="239.099"/>
<use xlink:href="#glyph0-14" x="439.945588" y="239.099"/>
<use xlink:href="#glyph0-7" x="442.678329" y="239.099"/>
<use xlink:href="#glyph0-15" x="444.684796" y="239.099"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="448.073575" y="239.099"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-10" x="36.642" y="282.493"/>
<use xlink:href="#glyph2-11" x="43.145585" y="282.493"/>
<use xlink:href="#glyph2-12" x="45.913196" y="282.493"/>
<use xlink:href="#glyph2-13" x="50.894496" y="282.493"/>
<use xlink:href="#glyph2-14" x="56.429716" y="282.493"/>
<use xlink:href="#glyph2-6" x="60.332067" y="282.493"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-7" x="68.076992" y="282.493"/>
<use xlink:href="#glyph2-15" x="73.058292" y="282.493"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="80.259259" y="282.493"/>
<use xlink:href="#glyph2-2" x="87.454249" y="282.493"/>
<use xlink:href="#glyph2-3" x="94.926199" y="282.493"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-16" x="105.715695" y="282.493"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-14" x="112.083789" y="282.493"/>
<use xlink:href="#glyph2-17" x="115.986139" y="282.493"/>
<use xlink:href="#glyph2-18" x="120.967439" y="282.493"/>
<use xlink:href="#glyph2-19" x="126.502659" y="282.493"/>
<use xlink:href="#glyph2-20" x="130.431909" y="282.493"/>
<use xlink:href="#glyph2-6" x="134.859288" y="282.493"/>
<use xlink:href="#glyph2-11" x="139.286668" y="282.493"/>
<use xlink:href="#glyph2-21" x="142.054278" y="282.493"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-6" x="147.033586" y="282.493"/>
<use xlink:href="#glyph2-14" x="151.460965" y="282.493"/>
<use xlink:href="#glyph2-22" x="155.363315" y="282.493"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-23" x="161.448472" y="282.493"/>
<use xlink:href="#glyph2-14" x="164.493042" y="282.493"/>
<use xlink:href="#glyph2-4" x="168.395392" y="282.493"/>
<use xlink:href="#glyph2-24" x="173.376692" y="282.493"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-25" x="185.006035" y="282.493"/>
<use xlink:href="#glyph2-4" x="191.23266" y="282.493"/>
<use xlink:href="#glyph2-12" x="196.21396" y="282.493"/>
<use xlink:href="#glyph2-11" x="201.19526" y="282.493"/>
<use xlink:href="#glyph2-20" x="203.962871" y="282.493"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-25" x="211.707796" y="282.493"/>
<use xlink:href="#glyph2-6" x="217.934421" y="282.493"/>
<use xlink:href="#glyph2-21" x="222.3618" y="282.493"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-6" x="227.341108" y="282.493"/>
<use xlink:href="#glyph2-26" x="231.768487" y="282.493"/>
<use xlink:href="#glyph2-19" x="234.536098" y="282.493"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-27" x="241.792855" y="282.493"/>
<use xlink:href="#glyph2-4" x="245.667311" y="282.493"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-28" x="253.966156" y="282.493"/>
<use xlink:href="#glyph2-13" x="261.022666" y="282.493"/>
<use xlink:href="#glyph2-19" x="266.557887" y="282.493"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-25" x="273.804682" y="282.493"/>
<use xlink:href="#glyph2-6" x="280.031307" y="282.493"/>
<use xlink:href="#glyph2-21" x="284.458686" y="282.493"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-6" x="289.447956" y="282.493"/>
<use xlink:href="#glyph2-26" x="293.875336" y="282.493"/>
<use xlink:href="#glyph2-19" x="296.642946" y="282.493"/>
<use xlink:href="#glyph2-29" x="300.572195" y="282.493"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-20" x="310.532" y="282.193"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph9-1" x="307.765" y="282.493"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="317.727" y="282.493"/>
<use xlink:href="#glyph2-26" x="325.19895" y="282.493"/>
<use xlink:href="#glyph2-6" x="327.96656" y="282.493"/>
<use xlink:href="#glyph2-30" x="332.39394" y="282.493"/>
<use xlink:href="#glyph2-17" x="337.6522" y="282.493"/>
<use xlink:href="#glyph2-18" x="342.6335" y="282.493"/>
<use xlink:href="#glyph2-5" x="348.168721" y="282.493"/>
<use xlink:href="#glyph2-6" x="353.703941" y="282.493"/>
<use xlink:href="#glyph2-14" x="358.131321" y="282.493"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-31" x="365.351217" y="282.493"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-17" x="374.763881" y="282.493"/>
<use xlink:href="#glyph2-20" x="379.745181" y="282.493"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-32" x="383.893608" y="282.493"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-27" x="389.149876" y="282.493"/>
<use xlink:href="#glyph2-6" x="393.024331" y="282.493"/>
<use xlink:href="#glyph2-14" x="397.45171" y="282.493"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 128 KiB

View file

@ -12,3 +12,4 @@ Networking
protocols.rst
system_mgmt.rst
tsn.rst
can.rst

View file

@ -1,13 +0,0 @@
.. _can_interface:
CAN
###
Overview
********
API Reference
*************
.. doxygengroup:: can_interface
:project: Zephyr

View file

@ -7,7 +7,6 @@ Peripherals
:maxdepth: 1
adc.rst
can.rst
counter.rst
dma.rst
entropy.rst