[spi_device] TPM over SPI specification

This commit adds the TPM over SPI section in the SPI_DEVICE HWIP
Technical Specification.

TPM over SPI function is added in previous commits. This commit
describes the overall TPM submodule inside the SPI_DEVICE IP. The
document does not explain the details of the TPM spec.

It is assumed that the readers have enough knowledge in the TPM and the
SPI spec.

Signed-off-by: Eunchan Kim <eunchan@opentitan.org>
diff --git a/hw/ip/spi_device/doc/_index.md b/hw/ip/spi_device/doc/_index.md
index d9009a1..57fdcdd 100644
--- a/hw/ip/spi_device/doc/_index.md
+++ b/hw/ip/spi_device/doc/_index.md
@@ -19,9 +19,23 @@
 - Interrupts for RX/TX SRAM FIFO conditions (empty, full, designated level for
   RX, TX)
 
+### TPM over SPI
+
+- In compliance with [TCG TPM 2.0][TPM over SPI 2.0]
+- up to 64B compile-time configurable read and write data buffer (default: 4B)
+- 1 TPM command (8b) and 1 address (24bit) buffer
+- HW controlled wait state
+- Shared SPI with other SPI Device functionalities. Unique CS# for the TPM
+- HW processed registers for the read requests
+  - TPM_ACCESS_x, TPM_STS_x, TPM_INTF_CAPABILITY, TPM_INT_ENABLE, TPM_INT_STATUS, TPM_INT_VECTOR, TPM_DID_VID, TPM_RID
+  - TPM_HASH_START returns FFh
+- 5 Locality (compile-time parameter)
+
 ## Description
 
-The SPI device module is a serial-to-parallel receive (RX) and
+The SPI device module consists of four functions, the generic mode, SPI Flash mode, SPI passthrough mode, and TPM over SPI mode.
+
+The SPI generic mode is a serial-to-parallel receive (RX) and
 parallel-to-serial transmit (TX) full duplex design (single line mode) used to communicate
 with an outside host. This first version of the module supports operations
 controlled by firmware to dump incoming single-line RX data (SDI) to an
@@ -31,9 +45,16 @@
 interface logic as its primary clock, which has performance benefits, but incurs
 design complications described later.
 
+The SW can receive TPM commands with payload (address and data) and respond to the read commands with the return data using the TPM submodule in the SPI_DEVICE HWIP.
+The submodule provides the command, address, write, and read FIFOs for the SW to communicate with the TPM host system, South Brige (SB).
+The submodule also supports the SW by managing a certain set of the FIFO registers and returning the read request by HW quickly.
+
 ## Compatibility
 
-The SPI device doesn't support emulating an EEPROM as of this initial version.
+The SPI device supports emulating an EEPROM (SPI flash mode in this document).
+The TPM submodule conforms to the [TPM over SPI 2.0][] specification.
+
+[TPM over SPI 2.0]: https://trustedcomputinggroup.org/wp-content/uploads/Trusted-Platform-Module-Library-Family-2.0-Level-00-Revision-1.59_pub.zip
 
 # Theory of Operations
 
@@ -41,7 +62,7 @@
 
 ![Block Diagram](block_diagram.svg)
 
-The block diagram above shows how the SPI Device IP converts incoming
+The block diagram above shows how the SPI Device generic mode converts incoming
 bit-serialized SDI data into a valid byte, where the data bit is valid when the
 chip select signal (CSB) is 0 (active low) and SCK is at positive or negative
 edge (configurable, henceforth called the "active edge"). The bit order within
@@ -71,6 +92,16 @@
 
 {{< incGenFromIpDesc "../data/spi_device.hjson" "hwcfg" >}}
 
+The TPM submodule requires a separate input port for CS#.
+The TPM submodule and other SPI Device modes are able to be active together.
+The SB distinguishes between the TPM transactions and the other SPI transactions using separate CS# ports.
+Even though both submodules are able to be active, the SB cannot issue a TPM command and a SPI transaction at the same time due to the  SPI IO lines being shared.
+
+The TPM has no write FIFO interrupt.
+As TPM transactions are not bigger than 4B in current usage case, the waiting time of the core is not a concern.
+The core takes multiple cycles to pop a byte from the write FIFO due to the slower peripheral clock and multiple CDC paths.
+The gain of having write FIFO interrupt is not great.
+
 ## General Data Transfer on Pins
 
 Data transfers with the SPI device module involve four peripheral SPI pins: SCK,
@@ -246,6 +277,36 @@
 direct reads and writes through the TLUL bus interface, managed by the
 auto-generated register file control logic.
 
+## TPM over SPI
+
+![TPM over SPI block diagram](tpm-blockdiagram.svg)
+
+The TPM over SPI submodule processes the low level data only.
+The TPM submodule parses the incoming SPI MOSI line and stacks the stream up to the SW accessible registers, such as TPM_CMD_ADDR, and TPM_WRITE_FIFO.
+The SW must decode the command and the address.
+Then the SW reads the data from the write FIFO or pushes data into the read FIFO depending on the command.
+
+The TPM submodule returns appropriate data for read commands depending on the current read FIFO status, the received address, and the Locality.
+The module sends bytes from the return-by-HW registers to the parallel-to-serial logic right after the address phase when the received address falls into the HW managed registers.
+
+The TPM specification mandates the TPM module to return the data right after the address phase or send the WAIT at the last bit of the address phase.
+The address of the return-by-HW registers has a 4B boundary.
+The TPM submodule has enough time to determine if the incoming address falls into the return-by-HW registers or not.
+As the logic decides if the HW returns data or waits for the SW response at the address[2] bit phase, the logic always sends `WAIT(0x00)` at the last byte of the incoming address phase.
+The module sends `START(0x01)` at the next byte followed by the actual return-by-HW value if the received address falls into the list of the return-by-HW registers.
+
+The module, by default, returns `WAIT` when the address does not fall into the return-by-HW register address.
+In the wait state, the TPM submodule watches the read FIFO status.
+The module stays in the wait state until the read FIFO is not empty.
+The module sends `START` at the next byte when the logic sees the notempty signal of the read FIFO.
+Then the module pops data from the read FIFO and sends the data over SPI.
+
+The return-by-HW register values come from the SW read-writable CSRs.
+The module latches the CSRs from the SYS_CLK domain into the SPI SCK domain when CSb is asserted.
+The SW is allowed to modify the return-by-HW registers when CSb is not active.
+
+The TPM submodule accepts the payload for the TPM write command without the `WAIT` state if the write FIFO is empty.
+In other case, the TPM submodule sends `WAIT` until the write FIFO becomes available (empty).
 
 # Design Details
 
@@ -412,6 +473,53 @@
 the read pointer outside the range 0x000 -  0x1FF (128*4 = 512Bytes ignoring
 the phase bit, bit 11).
 
+## TPM over SPI
+
+### Initialization
+
+The SW should enable the TPM submodule by writing 1 to the TPM_CFG.en CSR field.
+Other SPI_DEVICE features (Generic, Flash, Passthrough) CSRs do not affect the TPM feature.
+
+Update TPM_ACCESS_0, TPM_ACCESS_1 CSRs.
+The TPM submodule uses TPM_ACCESS_x.activeLocality to determine if the TPM_STS is returned to the SB.
+The SW may configure TPM_CFG.hw_reg_dis and/or TPM_CFG.invalid_locality to fully control the TPM transactions.
+
+### TPM mode: FIFO and CRB
+
+The HW returns the return-by-HW registers for the read request in the TPM FIFO mode.
+In the TPM CRB mode (TPM_CFG.tpm_mode is 1), the logic always upload the command and address to the SW and waits for the read FIFO data even the received address falls into the managed address.
+
+### Return-by-HW register update
+
+The SW manages the retun-by-HW registers.
+The contents are placed inside the SPI_DEVICE CSRs.
+The SW must maintain the other TPM registers outside of the SPI_DEVICE HWIP and use write/read FIFOs to receive the content from/ send the register value to the SB.
+
+When the SW updates the return-by-HW registers, the SW is recommended to read back the register to confirm the value is written.
+Due to the CDC issue, the SW is only permitted to update the registers when the TPM CS# is de-asserted.
+
+### TPM Read
+
+1. The SB sends the TPM read command with the address.
+1. The SW reads a word from TPM_CMD_ADDR CSR (optional cmdaddr_notempty interrupt).
+  1. If the address falls into the return-by-HW registers and TPM_CFG.hw_reg_dis is not set, the HW does not push the command and address bytes into the TPM_CMD_ADDR CSR.
+1. The SW prepares the register value and writes the value into the read FIFO.
+1. The TPM submodule sends `WAIT` until the read FIFO is available. When available, the TPM submodule sends `START` followed by the register value.
+
+### TPM Write
+
+1. The SB sends the TPM write command with the address.
+1. The TPM submodule pushes the command and the address to the TPM_CMD_ADDR CSR.
+1. The TPM submodule checks the write FIFO status.
+1. If not empty, the TPM submodule sends `WAIT` to the SB.
+1. When the FIFO is empty, the TPM sends `START` to the SB, receives the payload, and stores the data into the write FIFO.
+1. The SW, in the meantime, reads TPM_CMD_ADDR then reads the write FIFO data when the FIFO is available.
+
+### TPM Interrupt
+
+The TPM submodule does not process the TPM over SPI interrupt.
+The SW must check TPM_INT_ENABLE, TPM_INT_STATUS and control the GPIO pin that is designated to the TPM over SPI interrupt.
+
 ## Device Interface Functions (DIFs)
 
 {{< dif_listing "sw/device/lib/dif/dif_spi_device.h" >}}
diff --git a/hw/ip/spi_device/doc/tpm-blockdiagram.svg b/hw/ip/spi_device/doc/tpm-blockdiagram.svg
new file mode 100644
index 0000000..d3cd9d7
--- /dev/null
+++ b/hw/ip/spi_device/doc/tpm-blockdiagram.svg
@@ -0,0 +1 @@
+<svg version="1.1" viewBox="0.0 0.0 700.5564304461942 437.1469816272966" fill="none" stroke="none" stroke-linecap="square" stroke-miterlimit="10" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"><clipPath id="p.0"><path d="m0 0l700.55646 0l0 437.14697l-700.55646 0l0 -437.14697z" clip-rule="nonzero"/></clipPath><g clip-path="url(#p.0)"><path fill="#000000" fill-opacity="0.0" d="m0 0l700.55646 0l0 437.14697l-700.55646 0z" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m68.32809 11.209973l0 406.4567" fill-rule="evenodd"/><path stroke="#666666" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" stroke-dasharray="8.0,6.0" d="m68.32809 11.209973l0 406.4567" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m17.026247 48.0l105.039375 0" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m17.026247 48.0l98.185196 0" fill-rule="evenodd"/><path fill="#000000" stroke="#000000" stroke-width="2.0" stroke-linecap="butt" d="m115.21144 48.0l-2.2491608 2.2491684l6.179535 -2.2491684l-6.179535 -2.2491684z" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m17.026247 73.845146l105.039375 0" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m17.026247 73.845146l98.185196 0" fill-rule="evenodd"/><path fill="#000000" stroke="#000000" stroke-width="2.0" stroke-linecap="butt" d="m115.21144 73.845146l-2.2491608 2.2491684l6.179535 -2.2491684l-6.179535 -2.2491684z" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m17.026247 100.51181l105.039375 0" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m17.026247 100.51181l98.185196 0" fill-rule="evenodd"/><path fill="#000000" stroke="#000000" stroke-width="2.0" stroke-linecap="butt" d="m115.21144 100.51181l-2.2491608 2.2491684l6.179535 -2.2491684l-6.179535 -2.2491684z" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m17.026247 277.53806l105.039375 0" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m23.88042 277.53806l98.185196 0" fill-rule="evenodd"/><path fill="#000000" stroke="#000000" stroke-width="2.0" stroke-linecap="butt" d="m23.88042 277.53806l2.2491665 -2.249176l-6.179537 2.249176l6.179537 2.249176z" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m17.026247 19.28084l105.039375 0l0 35.55905l-105.039375 0z" fill-rule="evenodd"/><path fill="#000000" d="m32.307495 34.440212q0 -0.453125 -0.1875 -0.796875q-0.1718731 -0.34375 -0.4843731 -0.5625q-0.3125 -0.234375 -0.71875 -0.359375q-0.390625 -0.125 -0.828125 -0.125q-0.390625 0 -0.734375 0.109375q-0.34375 0.09375 -0.625 0.28125q-0.265625 0.1875 -0.421875 0.46875q-0.15625 0.265625 -0.15625 0.625l0 0.078125q0 0.390625 0.15625 0.671875q0.15625 0.265625 0.46875 0.46875q0.3125 0.1875 0.78125 0.3125q0.46875 0.125 1.09375 0.21875q1.4687481 0.21875 2.156248 0.859375q0.703125 0.625 0.703125 1.703125l0 0.15625q0 0.59375 -0.21875 1.09375q-0.203125 0.5 -0.609375 0.859375q-0.40625 0.359375 -1.0156231 0.5625q-0.59375 0.203125 -1.375 0.203125q-0.890625 0 -1.578125 -0.25q-0.6875 -0.265625 -1.15625 -0.71875q-0.453125 -0.46875 -0.703125 -1.09375q-0.234375 -0.625 -0.234375 -1.34375l0 -0.40625l1.125 0l0 0.3125q0 1.234375 0.671875 1.84375q0.671875 0.609375 1.875 0.609375q1.03125 0 1.5625 -0.453125q0.5312481 -0.453125 0.5312481 -1.21875l0 -0.078125q0 -0.734375 -0.5468731 -1.125q-0.53125 -0.390625 -1.75 -0.5625q-0.703125 -0.09375 -1.28125 -0.28125q-0.5625 -0.1875 -0.96875 -0.5q-0.390625 -0.3125 -0.609375 -0.75q-0.203125 -0.453125 -0.203125 -1.046875l0 -0.15625q0 -0.546875 0.21875 -1.0q0.234375 -0.453125 0.640625 -0.78125q0.40625 -0.3437481 0.96875 -0.5156231q0.578125 -0.1875 1.25 -0.1875q0.78125 0 1.40625 0.234375q0.6249981 0.2187481 1.0468731 0.6093731q0.421875 0.375 0.640625 0.890625q0.21875 0.5 0.21875 1.0625l0 0.5625l-1.109375 0l0 -0.484375zm6.000534 5.78125q0.578125 0 0.984375 -0.1875q0.40625 -0.1875 0.65625 -0.515625q0.265625 -0.328125 0.390625 -0.75q0.140625 -0.421875 0.140625 -0.890625l0 -0.15625l1.109375 0l0 0.15625q0 0.703125 -0.21875 1.328125q-0.203125 0.625 -0.625 1.09375q-0.40625 0.453125 -1.015625 0.71875q-0.609375 0.25 -1.421875 0.25q-1.546875 0 -2.40625 -0.96875q-0.859375 -0.984375 -0.859375 -2.84375l0 -2.078125q0 -1.8125 0.859375 -2.8125q0.859375 -0.9999981 2.40625 -0.9999981q0.8125 0 1.421875 0.265625q0.609375 0.2499981 1.015625 0.7187481q0.421875 0.453125 0.625 1.078125q0.21875 0.609375 0.21875 1.328125l0 0.15625l-1.109375 0l0 -0.15625q-0.015625 -0.453125 -0.140625 -0.875q-0.125 -0.4375 -0.390625 -0.765625q-0.265625 -0.328125 -0.671875 -0.515625q-0.390625 -0.203125 -0.96875 -0.203125q-1.078125 0 -1.625 0.796875q-0.53125 0.78125 -0.53125 2.0625l0 1.921875q0 1.375 0.53125 2.109375q0.546875 0.734375 1.625 0.734375zm6.344284 0.859375l-1.125 0l0 -9.328123l1.125 0l0 4.124998l0.296875 0l3.59375 -4.124998l1.375 0l0 0.078125l-3.859375 4.499998l0 0.171875l4.03125 4.5l0 0.078125l-1.421875 0l-3.71875 -4.15625l-0.296875 0l0 4.15625z" fill-rule="nonzero"/><path fill="#000000" fill-opacity="0.0" d="m17.026247 43.485565l105.039375 0l0 35.55905l-105.039375 0z" fill-rule="evenodd"/><path fill="#000000" d="m31.588747 54.535564l0.9218731 0.296875l-3.874998 11.859371l-0.9375 -0.28125l3.890625 -11.874996zm6.719282 9.890621q0.578125 0 0.984375 -0.1875q0.40625 -0.1875 0.65625 -0.5156212q0.265625 -0.328125 0.390625 -0.75q0.140625 -0.421875 0.140625 -0.890625l0 -0.15625l1.109375 0l0 0.15625q0 0.703125 -0.21875 1.328125q-0.203125 0.6249962 -0.625 1.0937462q-0.40625 0.453125 -1.015625 0.71875q-0.609375 0.25 -1.421875 0.25q-1.546875 0 -2.40625 -0.96875q-0.859375 -0.9843712 -0.859375 -2.8437462l0 -2.078125q0 -1.8125 0.859375 -2.8125q0.859375 -1.0 2.40625 -1.0q0.8125 0 1.421875 0.265625q0.609375 0.25 1.015625 0.71875q0.421875 0.453125 0.625 1.078125q0.21875 0.609375 0.21875 1.328125l0 0.15625l-1.109375 0l0 -0.15625q-0.015625 -0.453125 -0.140625 -0.875q-0.125 -0.4375 -0.390625 -0.765625q-0.265625 -0.328125 -0.671875 -0.515625q-0.390625 -0.203125 -0.96875 -0.203125q-1.078125 0 -1.625 0.796875q-0.53125 0.78125 -0.53125 2.0625l0 1.921875q0 1.375 0.53125 2.109375q0.546875 0.7343712 1.625 0.7343712zm10.313034 -5.781246q0 -0.453125 -0.1875 -0.796875q-0.171875 -0.34375 -0.484375 -0.5625q-0.3125 -0.234375 -0.71875 -0.359375q-0.390625 -0.125 -0.828125 -0.125q-0.390625 0 -0.734375 0.109375q-0.34375 0.09375 -0.625 0.28125q-0.265625 0.1875 -0.421875 0.46875q-0.15625 0.265625 -0.15625 0.625l0 0.078125q0 0.390625 0.15625 0.671875q0.15625 0.265625 0.46875 0.46875q0.3125 0.1875 0.78125 0.3125q0.46875 0.125 1.09375 0.21875q1.46875 0.21875 2.15625 0.859375q0.703125 0.625 0.703125 1.703125l0 0.15625q0 0.59375 -0.21875 1.09375q-0.203125 0.4999962 -0.609375 0.8593712q-0.40625 0.359375 -1.015625 0.5625q-0.59375 0.203125 -1.375 0.203125q-0.890625 0 -1.578125 -0.25q-0.6875 -0.265625 -1.15625 -0.71875q-0.453125 -0.46875 -0.703125 -1.0937462q-0.234375 -0.625 -0.234375 -1.34375l0 -0.40625l1.125 0l0 0.3125q0 1.234375 0.671875 1.84375q0.671875 0.6093712 1.875 0.6093712q1.03125 0 1.5625 -0.4531212q0.53125 -0.453125 0.53125 -1.21875l0 -0.078125q0 -0.734375 -0.546875 -1.125q-0.53125 -0.390625 -1.75 -0.5625q-0.703125 -0.09375 -1.28125 -0.28125q-0.5625 -0.1875 -0.96875 -0.5q-0.390625 -0.3125 -0.609375 -0.75q-0.203125 -0.453125 -0.203125 -1.046875l0 -0.15625q0 -0.546875 0.21875 -1.0q0.234375 -0.453125 0.640625 -0.78125q0.40625 -0.34375 0.96875 -0.515625q0.578125 -0.1875 1.25 -0.1875q0.78125 0 1.40625 0.234375q0.625 0.21875 1.046875 0.609375q0.421875 0.375 0.640625 0.890625q0.21875 0.5 0.21875 1.0625l0 0.5625l-1.109375 0l0 -0.484375z" fill-rule="nonzero"/><path fill="#000000" fill-opacity="0.0" d="m17.026247 68.9895l105.039375 0l0 35.55905l-105.039375 0z" fill-rule="evenodd"/><path fill="#000000" d="m26.635622 81.46137l2.140625 0l1.25 8.84375l0.15625 0l1.25 -8.84375l2.140623 0l0 9.328125l-1.046875 0l0 -8.84375l-0.15625 0l-1.2499981 8.84375l-2.03125 0l-1.25 -8.84375l-0.15625 0l0 8.84375l-1.046875 0l0 -9.328125zm8.344282 3.625q0 -1.8125 0.859375 -2.8125q0.875 -1.0 2.421875 -1.0q1.546875 0 2.40625 1.0q0.875 1.0 0.875 2.8125l0 2.078125q0 1.859375 -0.875 2.84375q-0.859375 0.96875 -2.40625 0.96875q-1.546875 0 -2.421875 -0.96875q-0.859375 -0.984375 -0.859375 -2.84375l0 -2.078125zm3.28125 4.84375q1.078125 0 1.609375 -0.734375q0.546875 -0.734375 0.546875 -2.109375l0 -1.921875q0 -1.28125 -0.546875 -2.0625q-0.53125 -0.796875 -1.609375 -0.796875q-1.078125 0 -1.625 0.796875q-0.53125 0.78125 -0.53125 2.0625l0 1.921875q0 1.375 0.53125 2.109375q0.546875 0.734375 1.625 0.734375zm10.359909 -5.78125q0 -0.453125 -0.1875 -0.796875q-0.171875 -0.34375 -0.484375 -0.5625q-0.3125 -0.234375 -0.71875 -0.359375q-0.390625 -0.125 -0.828125 -0.125q-0.390625 0 -0.734375 0.109375q-0.34375 0.09375 -0.625 0.28125q-0.265625 0.1875 -0.421875 0.46875q-0.15625 0.265625 -0.15625 0.625l0 0.078125q0 0.390625 0.15625 0.671875q0.15625 0.265625 0.46875 0.46875q0.3125 0.1875 0.78125 0.3125q0.46875 0.125 1.09375 0.21875q1.46875 0.21875 2.15625 0.859375q0.703125 0.625 0.703125 1.703125l0 0.15625q0 0.59375 -0.21875 1.09375q-0.203125 0.5 -0.609375 0.859375q-0.40625 0.359375 -1.015625 0.5625q-0.59375 0.203125 -1.375 0.203125q-0.890625 0 -1.578125 -0.25q-0.6875 -0.265625 -1.15625 -0.71875q-0.453125 -0.46875 -0.703125 -1.09375q-0.234375 -0.625 -0.234375 -1.34375l0 -0.40625l1.125 0l0 0.3125q0 1.234375 0.671875 1.84375q0.671875 0.609375 1.875 0.609375q1.03125 0 1.5625 -0.453125q0.53125 -0.453125 0.53125 -1.21875l0 -0.078125q0 -0.734375 -0.546875 -1.125q-0.53125 -0.390625 -1.75 -0.5625q-0.703125 -0.09375 -1.28125 -0.28125q-0.5625 -0.1875 -0.96875 -0.5q-0.390625 -0.3125 -0.609375 -0.75q-0.203125 -0.453125 -0.203125 -1.046875l0 -0.15625q0 -0.546875 0.21875 -1.0q0.234375 -0.453125 0.640625 -0.78125q0.40625 -0.34375 0.96875 -0.515625q0.578125 -0.1875 1.25 -0.1875q0.78125 0 1.40625 0.234375q0.625 0.21875 1.046875 0.609375q0.421875 0.375 0.640625 0.890625q0.21875 0.5 0.21875 1.0625l0 0.5625l-1.109375 0l0 -0.484375zm3.000534 -2.6875l5.90625 0l0 1.03125l-2.390625 0l0 7.25l2.390625 0l0 1.046875l-5.90625 0l0 -1.046875l2.390625 0l0 -7.25l-2.390625 0l0 -1.03125z" fill-rule="nonzero"/><path fill="#000000" fill-opacity="0.0" d="m17.026247 251.69029l105.039375 0l0 35.559036l-105.039375 0z" fill-rule="evenodd"/><path fill="#000000" d="m26.635622 264.16217l2.140625 0l1.25 8.84375l0.15625 0l1.25 -8.84375l2.140623 0l0 9.328125l-1.046875 0l0 -8.84375l-0.15625 0l-1.2499981 8.84375l-2.03125 0l-1.25 -8.84375l-0.15625 0l0 8.84375l-1.046875 0l0 -9.328125zm8.672407 0l5.90625 0l0 1.03125l-2.390625 0l0 7.25l2.390625 0l0 1.046875l-5.90625 0l0 -1.046875l2.390625 0l0 -7.25l-2.390625 0l0 -1.03125zm13.313034 2.6875q0 -0.453125 -0.1875 -0.796875q-0.171875 -0.34375 -0.484375 -0.5625q-0.3125 -0.234375 -0.71875 -0.359375q-0.390625 -0.125 -0.828125 -0.125q-0.390625 0 -0.734375 0.109375q-0.34375 0.09375 -0.625 0.28125q-0.265625 0.1875 -0.421875 0.46875q-0.15625 0.265625 -0.15625 0.625l0 0.078125q0 0.390625 0.15625 0.671875q0.15625 0.265625 0.46875 0.46875q0.3125 0.1875 0.78125 0.3125q0.46875 0.125 1.09375 0.21875q1.46875 0.21875 2.15625 0.859375q0.703125 0.625 0.703125 1.703125l0 0.15625q0 0.59375 -0.21875 1.09375q-0.203125 0.5 -0.609375 0.859375q-0.40625 0.359375 -1.015625 0.5625q-0.59375 0.203125 -1.375 0.203125q-0.890625 0 -1.578125 -0.25q-0.6875 -0.265625 -1.15625 -0.71875q-0.453125 -0.46875 -0.703125 -1.09375q-0.234375 -0.625 -0.234375 -1.34375l0 -0.40625l1.125 0l0 0.3125q0 1.234375 0.671875 1.84375q0.671875 0.609375 1.875 0.609375q1.03125 0 1.5625 -0.453125q0.53125 -0.453125 0.53125 -1.21875l0 -0.078125q0 -0.734375 -0.546875 -1.125q-0.53125 -0.390625 -1.75 -0.5625q-0.703125 -0.09375 -1.28125 -0.28125q-0.5625 -0.1875 -0.96875 -0.5q-0.390625 -0.3125 -0.609375 -0.75q-0.203125 -0.453125 -0.203125 -1.046875l0 -0.15625q0 -0.546875 0.21875 -1.0q0.234375 -0.453125 0.640625 -0.78125q0.40625 -0.34375 0.96875 -0.515625q0.578125 -0.1875 1.25 -0.1875q0.78125 0 1.40625 0.234375q0.625 0.21875 1.046875 0.609375q0.421875 0.375 0.640625 0.890625q0.21875 0.5 0.21875 1.0625l0 0.5625l-1.109375 0l0 -0.484375zm2.672409 0.9375q0 -1.8125 0.859375 -2.8125q0.875 -1.0 2.421875 -1.0q1.546875 0 2.40625 1.0q0.875 1.0 0.875 2.8125l0 2.078125q0 1.859375 -0.875 2.84375q-0.859375 0.96875 -2.40625 0.96875q-1.546875 0 -2.421875 -0.96875q-0.859375 -0.984375 -0.859375 -2.84375l0 -2.078125zm3.28125 4.84375q1.078125 0 1.609375 -0.734375q0.546875 -0.734375 0.546875 -2.109375l0 -1.921875q0 -1.28125 -0.546875 -2.0625q-0.53125 -0.796875 -1.609375 -0.796875q-1.078125 0 -1.625 0.796875q-0.53125 0.78125 -0.53125 2.0625l0 1.921875q0 1.375 0.53125 2.109375q0.546875 0.734375 1.625 0.734375z" fill-rule="nonzero"/><path fill="#000000" fill-opacity="0.0" d="m227.0075 51.28054l61.50522 0l0 30.704002l-61.50522 0" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m227.0075 51.28054l61.50522 0l0 30.704002l-61.50522 0" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m276.2107 51.28054l0 30.704002" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m276.2107 51.28054l0 30.704002" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m263.9099 51.28054l0 30.704002" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m263.9099 51.28054l0 30.704002" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m251.6091 51.28054l0 30.704002" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m251.6091 51.28054l0 30.704002" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m239.3083 51.28054l0 30.704002" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m239.3083 51.28054l0 30.704002" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m202.45407 33.897636l0 123.874016" fill-rule="evenodd"/><path stroke="#000000" stroke-width="4.0" stroke-linejoin="round" stroke-linecap="butt" d="m202.45407 33.897636l0 123.874016" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m300.45407 64.95276l51.02362 0" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m300.45407 64.95276l44.169464 0" fill-rule="evenodd"/><path fill="#000000" stroke="#000000" stroke-width="2.0" stroke-linecap="butt" d="m344.6235 64.95276l-2.2491455 2.2491608l6.179535 -2.2491608l-6.179535 -2.2491684z" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m227.0075 112.40915l61.50522 0l0 30.703995l-61.50522 0" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m227.0075 112.40915l61.50522 0l0 30.703995l-61.50522 0" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m276.2107 112.40915l0 30.703995" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m276.2107 112.40915l0 30.703995" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m263.9099 112.40915l0 30.703995" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m263.9099 112.40915l0 30.703995" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m251.6091 112.40915l0 30.703995" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m251.6091 112.40915l0 30.703995" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m239.3083 112.40915l0 30.703995" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m239.3083 112.40915l0 30.703995" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m300.45407 126.08137l51.02362 0" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m300.45407 126.08137l44.169464 0" fill-rule="evenodd"/><path fill="#000000" stroke="#000000" stroke-width="2.0" stroke-linecap="butt" d="m344.6235 126.08137l-2.2491455 2.2491684l6.179535 -2.2491684l-6.179535 -2.2491684z" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m213.16667 221.53674l32.0 0" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m220.02083 221.53674l25.145844 0" fill-rule="evenodd"/><path fill="#000000" stroke="#000000" stroke-width="2.0" stroke-linecap="butt" d="m220.02084 221.53674l2.2491608 -2.2491608l-6.179535 2.2491608l6.179535 2.249176z" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m319.61453 206.18607l-61.50522 0l0 30.70401l61.50522 0" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m319.61453 206.18607l-61.50522 0l0 30.70401l61.50522 0" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m270.41135 206.18607l0 30.70401" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m270.41135 206.18607l0 30.70401" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m282.71216 206.18607l0 30.70401" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m282.71216 206.18607l0 30.70401" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m295.01294 206.18607l0 30.70401" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m295.01294 206.18607l0 30.70401" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m307.31375 206.18607l0 30.70401" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m307.31375 206.18607l0 30.70401" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m202.57217 195.69029l0 210.64568" fill-rule="evenodd"/><path stroke="#000000" stroke-width="4.0" stroke-linejoin="round" stroke-linecap="butt" d="m202.57217 195.69029l0 210.64568" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m213.16667 263.5525l73.82677 0" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m220.02083 263.5525l66.97261 0" fill-rule="evenodd"/><path fill="#000000" stroke="#000000" stroke-width="2.0" stroke-linecap="butt" d="m220.02084 263.5525l2.2491608 -2.249176l-6.179535 2.249176l6.179535 2.249176z" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m213.16667 303.03806l73.82677 0" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m220.02083 303.03806l66.97261 0" fill-rule="evenodd"/><path fill="#000000" stroke="#000000" stroke-width="2.0" stroke-linecap="butt" d="m220.02084 303.03806l2.2491608 -2.249176l-6.179535 2.249176l6.179535 2.249176z" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m223.47244 237.53806l105.03937 0l0 35.55905l-105.03937 0z" fill-rule="evenodd"/><path fill="#000000" d="m239.53494 259.33804l-2.03125 0l-0.875 -8.843735l-0.15625 0l-0.875 8.843735l-2.03125 0l-0.953125 -9.32811l1.015625 0l0.890625 8.843735l0.171875 0l0.828125 -8.843735l2.0625 0l0.828125 8.843735l0.171875 0l0.890625 -8.843735l1.015625 0l-0.953125 9.32811zm7.172409 -2.3125l-4.0 0l-0.671875 2.3125l-1.203125 0l2.828125 -9.32811l2.09375 0l2.828125 9.32811l-1.203125 0l-0.671875 -2.3125zm-2.078125 -6.5312347l-1.609375 5.484375l3.375 0l-1.609375 -5.484375l-0.15625 0zm5.281784 -0.484375l5.90625 0l0 1.03125l-2.390625 0l0 7.2499847l2.390625 0l0 1.046875l-5.90625 0l0 -1.046875l2.390625 0l0 -7.2499847l-2.390625 0l0 -1.03125zm7.828644 0l6.5625 0l0 1.03125l-2.71875 0l0 8.29686l-1.125 0l0 -8.29686l-2.71875 0l0 -1.03125zm14.641174 10.42186l0 0.984375l-0.484375 0q-0.9375 0 -1.796875 -0.34375q-0.84375 -0.34375 -1.5 -1.015625q-0.640625 -0.65625 -1.03125 -1.578125q-0.390625 -0.9375 -0.390625 -2.125l0 -3.3593597q0 -1.171875 0.390625 -2.109375q0.390625 -0.9375 1.03125 -1.59375q0.65625 -0.671875 1.5 -1.015625q0.859375 -0.34375 1.796875 -0.34375l0.484375 0l0 0.984375l-0.484375 0q-0.71875 0 -1.390625 0.296875q-0.65625 0.28125 -1.171875 0.8125q-0.5 0.53125 -0.8125 1.296875q-0.296875 0.765625 -0.296875 1.71875l0 3.2656097q0 0.953125 0.296875 1.71875q0.3125 0.765625 0.8125 1.296875q0.515625 0.53125 1.171875 0.8125q0.671875 0.296875 1.390625 0.296875l0.484375 0zm1.6723938 -6.7968597q0 -1.8125 0.859375 -2.8125q0.875 -1.0 2.421875 -1.0q1.546875 0 2.40625 1.0q0.875 1.0 0.875 2.8125l0 2.078125q0 1.8593597 -0.875 2.8437347q-0.859375 0.96875 -2.40625 0.96875q-1.546875 0 -2.421875 -0.96875q-0.859375 -0.984375 -0.859375 -2.8437347l0 -2.078125zm3.28125 4.8749847q1.078125 0 1.609375 -0.75q0.546875 -0.75 0.546875 -2.1249847l0 -1.921875q0 -0.640625 -0.140625 -1.15625q-0.125 -0.53125 -0.40625 -0.90625q-0.265625 -0.390625 -0.671875 -0.59375q-0.40625 -0.21875 -0.9375 -0.21875q-0.546875 0 -0.953125 0.21875q-0.390625 0.203125 -0.671875 0.59375q-0.265625 0.375 -0.40625 0.90625q-0.125 0.515625 -0.125 1.15625l0 1.921875q0 1.3749847 0.53125 2.1249847q0.546875 0.75 1.625 0.75zm-0.859375 -3.8437347q0 -0.34375 0.25 -0.59375q0.265625 -0.25 0.609375 -0.25q0.34375 0 0.59375 0.25q0.265625 0.25 0.265625 0.59375q0 0.359375 -0.265625 0.609375q-0.25 0.25 -0.59375 0.25q-0.34375 0 -0.609375 -0.25q-0.25 -0.25 -0.25 -0.609375zm10.797424 -1.9375l1.1875 0l-1.9375 3.140625l0 0.15623474l2.09375 3.3125l-1.203125 0l-1.796875 -2.90625l-0.25 0l-1.796875 2.90625l-1.203125 0l2.09375 -3.3125l0 -0.15623474l-1.9375 -3.140625l1.1875 0l1.65625 2.75l0.25 0l1.65625 -2.75zm3.0942688 0.90625q0 -1.8125 0.859375 -2.8125q0.875 -1.0 2.421875 -1.0q1.546875 0 2.40625 1.0q0.875 1.0 0.875 2.8125l0 2.078125q0 1.8593597 -0.875 2.8437347q-0.859375 0.96875 -2.40625 0.96875q-1.546875 0 -2.421875 -0.96875q-0.859375 -0.984375 -0.859375 -2.8437347l0 -2.078125zm3.28125 4.8749847q1.078125 0 1.609375 -0.75q0.546875 -0.75 0.546875 -2.1249847l0 -1.921875q0 -0.640625 -0.140625 -1.15625q-0.125 -0.53125 -0.40625 -0.90625q-0.265625 -0.390625 -0.671875 -0.59375q-0.40625 -0.21875 -0.9375 -0.21875q-0.546875 0 -0.953125 0.21875q-0.390625 0.203125 -0.671875 0.59375q-0.265625 0.375 -0.40625 0.90625q-0.125 0.515625 -0.125 1.15625l0 1.921875q0 1.3749847 0.53125 2.1249847q0.546875 0.75 1.625 0.75zm-0.859375 -3.8437347q0 -0.34375 0.25 -0.59375q0.265625 -0.25 0.609375 -0.25q0.34375 0 0.59375 0.25q0.265625 0.25 0.265625 0.59375q0 0.359375 -0.265625 0.609375q-0.25 0.25 -0.59375 0.25q-0.34375 0 -0.609375 -0.25q-0.25 -0.25 -0.25 -0.609375zm5.7349243 -1.03125q0 -1.8125 0.859375 -2.8125q0.875 -1.0 2.421875 -1.0q1.546875 0 2.40625 1.0q0.875 1.0 0.875 2.8125l0 2.078125q0 1.8593597 -0.875 2.8437347q-0.859375 0.96875 -2.40625 0.96875q-1.546875 0 -2.421875 -0.96875q-0.859375 -0.984375 -0.859375 -2.8437347l0 -2.078125zm3.28125 4.8749847q1.078125 0 1.609375 -0.75q0.546875 -0.75 0.546875 -2.1249847l0 -1.921875q0 -0.640625 -0.140625 -1.15625q-0.125 -0.53125 -0.40625 -0.90625q-0.265625 -0.390625 -0.671875 -0.59375q-0.40625 -0.21875 -0.9375 -0.21875q-0.546875 0 -0.953125 0.21875q-0.390625 0.203125 -0.671875 0.59375q-0.265625 0.375 -0.40625 0.90625q-0.125 0.515625 -0.125 1.15625l0 1.921875q0 1.3749847 0.53125 2.1249847q0.546875 0.75 1.625 0.75zm-0.859375 -3.8437347q0 -0.34375 0.25 -0.59375q0.265625 -0.25 0.609375 -0.25q0.34375 0 0.59375 0.25q0.265625 0.25 0.265625 0.59375q0 0.359375 -0.265625 0.609375q-0.25 0.25 -0.59375 0.25q-0.34375 0 -0.609375 -0.25q-0.25 -0.25 -0.25 -0.609375zm6.297394 5.7656097q0.71875 0 1.375 -0.296875q0.671875 -0.28125 1.171875 -0.8125q0.515625 -0.53125 0.8125 -1.296875q0.3125 -0.765625 0.3125 -1.71875l0 -3.2656097q0 -0.953125 -0.3125 -1.71875q-0.296875 -0.765625 -0.8125 -1.296875q-0.5 -0.53125 -1.171875 -0.8125q-0.65625 -0.296875 -1.375 -0.296875l-0.484375 0l0 -0.984375l0.484375 0q0.9375 0 1.78125 0.34375q0.859375 0.34375 1.5 1.015625q0.65625 0.65625 1.046875 1.59375q0.390625 0.9375 0.390625 2.109375l0 3.3593597q0 1.1875 -0.390625 2.125q-0.390625 0.921875 -1.046875 1.578125q-0.640625 0.671875 -1.5 1.015625q-0.84375 0.34375 -1.78125 0.34375l-0.484375 0l0 -0.984375l0.484375 0z" fill-rule="nonzero"/><path fill="#000000" fill-opacity="0.0" d="m223.47244 277.14697l127.52756 0l0 35.55905l-127.52756 0z" fill-rule="evenodd"/><path fill="#000000" d="m238.7537 292.30637q0 -0.453125 -0.1875 -0.796875q-0.171875 -0.34375 -0.484375 -0.5625q-0.3125 -0.234375 -0.71875 -0.359375q-0.390625 -0.125 -0.828125 -0.125q-0.390625 0 -0.734375 0.109375q-0.34375 0.09375 -0.625 0.28125q-0.265625 0.1875 -0.421875 0.46875q-0.15625 0.265625 -0.15625 0.625l0 0.078125q0 0.390625 0.15625 0.671875q0.15625 0.265625 0.46875 0.46875q0.3125 0.1875 0.78125 0.3125q0.46875 0.125 1.09375 0.21875q1.46875 0.21875 2.15625 0.859375q0.703125 0.625 0.703125 1.703125l0 0.15625q0 0.59375 -0.21875 1.09375q-0.203125 0.5 -0.609375 0.859375q-0.40625 0.359375 -1.015625 0.5625q-0.59375 0.203125 -1.375 0.203125q-0.890625 0 -1.578125 -0.25q-0.6875 -0.265625 -1.15625 -0.71875q-0.453125 -0.46875 -0.703125 -1.09375q-0.234375 -0.625 -0.234375 -1.34375l0 -0.40625l1.125 0l0 0.3125q0 1.234375 0.671875 1.84375q0.671875 0.609375 1.875 0.609375q1.03125 0 1.5625 -0.453125q0.53125 -0.453125 0.53125 -1.21875l0 -0.078125q0 -0.734375 -0.546875 -1.125q-0.53125 -0.390625 -1.75 -0.5625q-0.703125 -0.09375 -1.28125 -0.28125q-0.5625 -0.1875 -0.96875 -0.5q-0.390625 -0.3125 -0.609375 -0.75q-0.203125 -0.453125 -0.203125 -1.046875l0 -0.15625q0 -0.546875 0.21875 -1.0q0.234375 -0.453125 0.640625 -0.78125q0.40625 -0.34375 0.96875 -0.515625q0.578125 -0.1875 1.25 -0.1875q0.78125 0 1.40625 0.234375q0.625 0.21875 1.046875 0.609375q0.421875 0.375 0.640625 0.890625q0.21875 0.5 0.21875 1.0625l0 0.5625l-1.109375 0l0 -0.484375zm2.672409 -2.6875l6.5625 0l0 1.03125l-2.71875 0l0 8.296875l-1.125 0l0 -8.296875l-2.71875 0l0 -1.03125zm13.438034 7.015625l-4.0 0l-0.671875 2.3125l-1.203125 0l2.828125 -9.328125l2.09375 0l2.828125 9.328125l-1.203125 0l-0.671875 -2.3125zm-2.078125 -6.53125l-1.609375 5.484375l3.375 0l-1.609375 -5.484375l-0.15625 0zm11.156769 8.84375l-1.125 0l0 -3.125q0 -0.34375 -0.15625 -0.53125q-0.15625 -0.1875 -0.5625 -0.1875l-2.90625 0l0 3.84375l-1.109375 0l0 -9.328125l3.328125 0q0.71875 0 1.25 0.203125q0.53125 0.203125 0.875 0.5625q0.359375 0.34375 0.53125 0.8125q0.1875 0.453125 0.1875 0.953125l0 0.40625q0 0.515625 -0.28125 1.03125q-0.28125 0.515625 -0.890625 0.796875l0 0.171875q0.40625 0.0625 0.625 0.3125q0.234375 0.25 0.234375 0.71875l0 3.359375zm-4.75 -4.875l2.078125 0q0.953125 0 1.40625 -0.40625q0.46875 -0.40625 0.46875 -1.203125l0 -0.234375q0 -0.703125 -0.46875 -1.140625q-0.453125 -0.4375 -1.40625 -0.4375l-2.078125 0l0 3.421875zm6.7036743 -4.453125l6.5625 0l0 1.03125l-2.71875 0l0 8.296875l-1.125 0l0 -8.296875l-2.71875 0l0 -1.03125zm14.641144 10.421875l0 0.984375l-0.484375 0q-0.9375 0 -1.796875 -0.34375q-0.84375 -0.34375 -1.5 -1.015625q-0.640625 -0.65625 -1.03125 -1.578125q-0.390625 -0.9375 -0.390625 -2.125l0 -3.359375q0 -1.171875 0.390625 -2.109375q0.390625 -0.9375 1.03125 -1.59375q0.65625 -0.671875 1.5 -1.015625q0.859375 -0.34375 1.796875 -0.34375l0.484375 0l0 0.984375l-0.484375 0q-0.71875 0 -1.390625 0.296875q-0.65625 0.28125 -1.171875 0.8125q-0.5 0.53125 -0.8125 1.296875q-0.296875 0.765625 -0.296875 1.71875l0 3.265625q0 0.953125 0.296875 1.71875q0.3125 0.765625 0.8125 1.296875q0.515625 0.53125 1.171875 0.8125q0.671875 0.296875 1.390625 0.296875l0.484375 0zm1.6724243 -6.796875q0 -1.8125 0.859375 -2.8125q0.875 -1.0 2.421875 -1.0q1.546875 0 2.40625 1.0q0.875 1.0 0.875 2.8125l0 2.078125q0 1.859375 -0.875 2.84375q-0.859375 0.96875 -2.40625 0.96875q-1.546875 0 -2.421875 -0.96875q-0.859375 -0.984375 -0.859375 -2.84375l0 -2.078125zm3.28125 4.875q1.078125 0 1.609375 -0.75q0.546875 -0.75 0.546875 -2.125l0 -1.921875q0 -0.640625 -0.140625 -1.15625q-0.125 -0.53125 -0.40625 -0.90625q-0.265625 -0.390625 -0.671875 -0.59375q-0.40625 -0.21875 -0.9375 -0.21875q-0.546875 0 -0.953125 0.21875q-0.390625 0.203125 -0.671875 0.59375q-0.265625 0.375 -0.40625 0.90625q-0.125 0.515625 -0.125 1.15625l0 1.921875q0 1.375 0.53125 2.125q0.546875 0.75 1.625 0.75zm-0.859375 -3.84375q0 -0.34375 0.25 -0.59375q0.265625 -0.25 0.609375 -0.25q0.34375 0 0.59375 0.25q0.265625 0.25 0.265625 0.59375q0 0.359375 -0.265625 0.609375q-0.25 0.25 -0.59375 0.25q-0.34375 0 -0.609375 -0.25q-0.25 -0.25 -0.25 -0.609375zm10.797394 -1.9375l1.1875 0l-1.9375 3.140625l0 0.15625l2.09375 3.3125l-1.203125 0l-1.796875 -2.90625l-0.25 0l-1.796875 2.90625l-1.203125 0l2.09375 -3.3125l0 -0.15625l-1.9375 -3.140625l1.1875 0l1.65625 2.75l0.25 0l1.65625 -2.75zm3.0942993 0.90625q0 -1.8125 0.859375 -2.8125q0.875 -1.0 2.421875 -1.0q1.546875 0 2.40625 1.0q0.875 1.0 0.875 2.8125l0 2.078125q0 1.859375 -0.875 2.84375q-0.859375 0.96875 -2.40625 0.96875q-1.546875 0 -2.421875 -0.96875q-0.859375 -0.984375 -0.859375 -2.84375l0 -2.078125zm3.28125 4.875q1.078125 0 1.609375 -0.75q0.546875 -0.75 0.546875 -2.125l0 -1.921875q0 -0.640625 -0.140625 -1.15625q-0.125 -0.53125 -0.40625 -0.90625q-0.265625 -0.390625 -0.671875 -0.59375q-0.40625 -0.21875 -0.9375 -0.21875q-0.546875 0 -0.953125 0.21875q-0.390625 0.203125 -0.671875 0.59375q-0.265625 0.375 -0.40625 0.90625q-0.125 0.515625 -0.125 1.15625l0 1.921875q0 1.375 0.53125 2.125q0.546875 0.75 1.625 0.75zm-0.859375 -3.84375q0 -0.34375 0.25 -0.59375q0.265625 -0.25 0.609375 -0.25q0.34375 0 0.59375 0.25q0.265625 0.25 0.265625 0.59375q0 0.359375 -0.265625 0.609375q-0.25 0.25 -0.59375 0.25q-0.34375 0 -0.609375 -0.25q-0.25 -0.25 -0.25 -0.609375zm8.516144 3.625l0 -7.796875l-0.15625 0l-1.53125 3.515625l-1.109375 0l0 -0.078125l1.75 -3.921875l2.171875 0l0 8.28125l2.640625 0l0 1.046875l-6.390625 0l0 -1.046875l2.625 0zm5.9380493 2.140625q0.71875 0 1.375 -0.296875q0.671875 -0.28125 1.171875 -0.8125q0.515625 -0.53125 0.8125 -1.296875q0.3125 -0.765625 0.3125 -1.71875l0 -3.265625q0 -0.953125 -0.3125 -1.71875q-0.296875 -0.765625 -0.8125 -1.296875q-0.5 -0.53125 -1.171875 -0.8125q-0.65625 -0.296875 -1.375 -0.296875l-0.484375 0l0 -0.984375l0.484375 0q0.9375 0 1.78125 0.34375q0.859375 0.34375 1.5 1.015625q0.65625 0.65625 1.046875 1.59375q0.390625 0.9375 0.390625 2.109375l0 3.359375q0 1.1875 -0.390625 2.125q-0.390625 0.921875 -1.046875 1.578125q-0.640625 0.671875 -1.5 1.015625q-0.84375 0.34375 -1.78125 0.34375l-0.484375 0l0 -0.984375l0.484375 0z" fill-rule="nonzero"/><path fill="#000000" fill-opacity="0.0" d="m213.16667 342.64697l73.82677 0" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m220.02083 342.64697l66.97261 0" fill-rule="evenodd"/><path fill="#000000" stroke="#000000" stroke-width="2.0" stroke-linecap="butt" d="m220.02084 342.64697l2.2491608 -2.2491455l-6.179535 2.2491455l6.179535 2.249176z" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m223.47244 316.75592l141.29135 0l0 35.55905l-141.29135 0z" fill-rule="evenodd"/><path fill="#000000" d="m233.59744 329.22778l5.90625 0l0 1.03125l-2.390625 0l0 7.25l2.390625 0l0 1.046875l-5.90625 0l0 -1.046875l2.390625 0l0 -7.25l-2.390625 0l0 -1.03125zm12.938034 8.84375l0.15625 0l0 -8.84375l1.125 0l0 9.328125l-2.25 0l-2.6875 -8.84375l-0.15625 0l0 8.84375l-1.125 0l0 -9.328125l2.25 0l2.6875 8.84375zm2.609909 -8.84375l1.203125 0l2.4375 8.84375l0.15625 0l2.4375 -8.84375l1.203125 0l-2.640625 9.328125l-2.15625 0l-2.640625 -9.328125zm13.875519 7.015625l-4.0 0l-0.671875 2.3125l-1.203125 0l2.828125 -9.328125l2.09375 0l2.828125 9.328125l-1.203125 0l-0.671875 -2.3125zm-2.078125 -6.53125l-1.609375 5.484375l3.375 0l-1.609375 -5.484375l-0.15625 0zm5.3130493 -0.484375l1.125 0l0 8.28125l4.875 0l0 1.046875l-6.0 0l0 -9.328125zm8.125519 0l5.90625 0l0 1.03125l-2.390625 0l0 7.25l2.390625 0l0 1.046875l-5.90625 0l0 -1.046875l2.390625 0l0 -7.25l-2.390625 0l0 -1.03125zm8.000549 0l3.0625 0q1.734375 0 2.53125 0.828125q0.8125 0.828125 0.8125 2.640625l0 2.390625q0 1.8125 -0.8125 2.640625q-0.796875 0.828125 -2.53125 0.828125l-3.0625 0l0 -1.046875l0.796875 0l0 -7.25l-0.796875 0l0 -1.03125zm2.90625 8.28125q0.609375 0 1.0625 -0.109375q0.453125 -0.125 0.734375 -0.40625q0.296875 -0.296875 0.4375 -0.765625q0.140625 -0.484375 0.140625 -1.21875l0 -2.234375q0 -0.734375 -0.140625 -1.21875q-0.140625 -0.484375 -0.4375 -0.765625q-0.28125 -0.28125 -0.734375 -0.40625q-0.453125 -0.125 -1.0625 -0.125l-0.984375 0l0 7.25l0.984375 0zm11.563019 2.140625l0 0.984375l-0.484375 0q-0.9375 0 -1.796875 -0.34375q-0.84375 -0.34375 -1.5 -1.015625q-0.640625 -0.65625 -1.03125 -1.578125q-0.390625 -0.9375 -0.390625 -2.125l0 -3.359375q0 -1.171875 0.390625 -2.109375q0.390625 -0.9375 1.03125 -1.59375q0.65625 -0.671875 1.5 -1.015625q0.859375 -0.34375 1.796875 -0.34375l0.484375 0l0 0.984375l-0.484375 0q-0.71875 0 -1.390625 0.296875q-0.65625 0.28125 -1.171875 0.8125q-0.5 0.53125 -0.8125 1.296875q-0.296875 0.765625 -0.296875 1.71875l0 3.265625q0 0.953125 0.296875 1.71875q0.3125 0.765625 0.8125 1.296875q0.515625 0.53125 1.171875 0.8125q0.671875 0.296875 1.390625 0.296875l0.484375 0zm1.6724243 -6.796875q0 -1.8125 0.859375 -2.8125q0.875 -1.0 2.421875 -1.0q1.546875 0 2.40625 1.0q0.875 1.0 0.875 2.8125l0 2.078125q0 1.859375 -0.875 2.84375q-0.859375 0.96875 -2.40625 0.96875q-1.546875 0 -2.421875 -0.96875q-0.859375 -0.984375 -0.859375 -2.84375l0 -2.078125zm3.28125 4.875q1.078125 0 1.609375 -0.75q0.546875 -0.75 0.546875 -2.125l0 -1.921875q0 -0.640625 -0.140625 -1.15625q-0.125 -0.53125 -0.40625 -0.90625q-0.265625 -0.390625 -0.671875 -0.59375q-0.40625 -0.21875 -0.9375 -0.21875q-0.546875 0 -0.953125 0.21875q-0.390625 0.203125 -0.671875 0.59375q-0.265625 0.375 -0.40625 0.90625q-0.125 0.515625 -0.125 1.15625l0 1.921875q0 1.375 0.53125 2.125q0.546875 0.75 1.625 0.75zm-0.859375 -3.84375q0 -0.34375 0.25 -0.59375q0.265625 -0.25 0.609375 -0.25q0.34375 0 0.59375 0.25q0.265625 0.25 0.265625 0.59375q0 0.359375 -0.265625 0.609375q-0.25 0.25 -0.59375 0.25q-0.34375 0 -0.609375 -0.25q-0.25 -0.25 -0.25 -0.609375zm10.797394 -1.9375l1.1875 0l-1.9375 3.140625l0 0.15625l2.09375 3.3125l-1.203125 0l-1.796875 -2.90625l-0.25 0l-1.796875 2.90625l-1.203125 0l2.09375 -3.3125l0 -0.15625l-1.9375 -3.140625l1.1875 0l1.65625 2.75l0.25 0l1.65625 -2.75zm3.5630493 -2.71875l5.734375 0l0 1.03125l-4.609375 0l0 3.09375l4.53125 0l0 1.046875l-4.53125 0l0 4.15625l-1.125 0l0 -9.328125zm8.156769 0l5.734375 0l0 1.03125l-4.609375 0l0 3.09375l4.53125 0l0 1.046875l-4.53125 0l0 4.15625l-1.125 0l0 -9.328125zm8.250549 10.421875q0.71875 0 1.375 -0.296875q0.671875 -0.28125 1.171875 -0.8125q0.515625 -0.53125 0.8125 -1.296875q0.3125 -0.765625 0.3125 -1.71875l0 -3.265625q0 -0.953125 -0.3125 -1.71875q-0.296875 -0.765625 -0.8125 -1.296875q-0.5 -0.53125 -1.171875 -0.8125q-0.65625 -0.296875 -1.375 -0.296875l-0.484375 0l0 -0.984375l0.484375 0q0.9375 0 1.78125 0.34375q0.859375 0.34375 1.5 1.015625q0.65625 0.65625 1.046875 1.59375q0.390625 0.9375 0.390625 2.109375l0 3.359375q0 1.1875 -0.390625 2.125q-0.390625 0.921875 -1.046875 1.578125q-0.640625 0.671875 -1.5 1.015625q-0.84375 0.34375 -1.78125 0.34375l-0.484375 0l0 -0.984375l0.484375 0z" fill-rule="nonzero"/><path fill="#000000" fill-opacity="0.0" d="m125.41601 85.88189l44.503944 0l0 29.259842l-44.503944 0z" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m125.41601 85.88189l44.503944 0l0 29.259842l-44.503944 0z" fill-rule="evenodd"/><path fill="#000000" d="m140.69727 98.67119q0 -0.453125 -0.1875 -0.796875q-0.171875 -0.34375 -0.484375 -0.5625q-0.3125 -0.234375 -0.71875 -0.359375q-0.390625 -0.125 -0.828125 -0.125q-0.390625 0 -0.734375 0.109375q-0.34375 0.09375 -0.625 0.28125q-0.265625 0.1875 -0.421875 0.46875q-0.15625 0.265625 -0.15625 0.625l0 0.078125q0 0.390625 0.15625 0.671875q0.15625 0.265625 0.46875 0.46875q0.3125 0.1875 0.78125 0.3125q0.46875 0.125 1.09375 0.21875q1.46875 0.21875 2.15625 0.859375q0.703125 0.625 0.703125 1.703125l0 0.15625q0 0.59375 -0.21875 1.09375q-0.203125 0.5 -0.609375 0.859375q-0.40625 0.359375 -1.015625 0.5625q-0.59375 0.203125 -1.375 0.203125q-0.890625 0 -1.578125 -0.25q-0.6875 -0.265625 -1.15625 -0.71875q-0.453125 -0.46875 -0.703125 -1.09375q-0.234375 -0.625 -0.234375 -1.34375l0 -0.40625l1.125 0l0 0.3125q0 1.234375 0.671875 1.84375q0.671875 0.609375 1.875 0.609375q1.03125 0 1.5625 -0.453125q0.53125 -0.453125 0.53125 -1.21875l0 -0.078125q0 -0.734375 -0.546875 -1.125q-0.53125 -0.390625 -1.75 -0.5625q-0.703125 -0.09375 -1.28125 -0.28125q-0.5625 -0.1875 -0.96875 -0.5q-0.390625 -0.3125 -0.609375 -0.75q-0.203125 -0.453125 -0.203125 -1.046875l0 -0.15625q0 -0.546875 0.21875 -1.0q0.234375 -0.453125 0.640625 -0.78125q0.40625 -0.34375 0.96875 -0.515625q0.578125 -0.1875 1.25 -0.1875q0.78125 0 1.40625 0.234375q0.625 0.21875 1.046875 0.609375q0.421875 0.375 0.640625 0.890625q0.21875 0.5 0.21875 1.0625l0 0.5625l-1.109375 0l0 -0.484375zm9.125534 5.59375l0 1.046875l-6.3125 0l0 -1.59375q0 -0.640625 0.203125 -1.109375q0.21875 -0.484375 0.609375 -0.8125q0.390625 -0.34375 0.953125 -0.5625q0.5625 -0.234375 1.265625 -0.40625q1.1875 -0.265625 1.703125 -0.75q0.53125 -0.5 0.53125 -1.21875l0 -0.078125q0 -0.359375 -0.125 -0.703125q-0.109375 -0.34375 -0.359375 -0.625q-0.25 -0.28125 -0.65625 -0.453125q-0.390625 -0.171875 -0.9375 -0.171875q-1.015625 0 -1.59375 0.640625q-0.5625 0.625 -0.5625 1.65625l0 0.59375l-1.109375 0l0 -0.671875q0 -0.640625 0.203125 -1.21875q0.21875 -0.59375 0.625 -1.046875q0.421875 -0.453125 1.03125 -0.71875q0.609375 -0.265625 1.40625 -0.265625q0.8125 0 1.40625 0.25q0.609375 0.25 1.0 0.65625q0.40625 0.40625 0.59375 0.921875q0.203125 0.5 0.203125 1.03125l0 0.25q0 1.0625 -0.671875 1.8125q-0.65625 0.75 -2.125 1.078125q-1.28125 0.28125 -1.890625 0.75q-0.59375 0.453125 -0.59375 1.328125l0 0.390625l5.203125 0zm3.156784 -2.796875l0 3.84375l-1.109375 0l0 -9.328125l3.328125 0q0.71875 0 1.25 0.203125q0.53125 0.203125 0.875 0.5625q0.359375 0.34375 0.53125 0.8125q0.1875 0.453125 0.1875 0.953125l0 0.40625q0 0.5 -0.1875 0.96875q-0.171875 0.46875 -0.53125 0.828125q-0.359375 0.34375 -0.890625 0.546875q-0.53125 0.203125 -1.234375 0.203125l-2.21875 0zm0 -1.03125l2.078125 0q1.875 0 1.875 -1.609375l0 -0.234375q0 -0.703125 -0.46875 -1.140625q-0.453125 -0.4375 -1.40625 -0.4375l-2.078125 0l0 3.421875z" fill-rule="nonzero"/><path fill="#000000" fill-opacity="0.0" d="m125.41601 262.90814l44.503944 0l0 29.259827l-44.503944 0z" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m125.41601 262.90814l44.503944 0l0 29.259827l-44.503944 0z" fill-rule="evenodd"/><path fill="#000000" d="m136.66602 278.4943l0 3.84375l-1.109375 0l0 -9.328125l3.328125 0q0.71875 0 1.25 0.203125q0.53125 0.203125 0.875 0.5625q0.359375 0.34375 0.53125 0.8125q0.1875 0.453125 0.1875 0.953125l0 0.40625q0 0.5 -0.1875 0.96875q-0.171875 0.46875 -0.53125 0.828125q-0.359375 0.34375 -0.890625 0.546875q-0.53125 0.203125 -1.234375 0.203125l-2.21875 0zm0 -1.03125l2.078125 0q1.875 0 1.875 -1.609375l0 -0.234375q0 -0.703125 -0.46875 -1.140625q-0.453125 -0.4375 -1.40625 -0.4375l-2.078125 0l0 3.421875zm13.156784 3.828125l0 1.046875l-6.3125 0l0 -1.59375q0 -0.640625 0.203125 -1.109375q0.21875 -0.484375 0.609375 -0.8125q0.390625 -0.34375 0.953125 -0.5625q0.5625 -0.234375 1.265625 -0.40625q1.1875 -0.265625 1.703125 -0.75q0.53125 -0.5 0.53125 -1.21875l0 -0.078125q0 -0.359375 -0.125 -0.703125q-0.109375 -0.34375 -0.359375 -0.625q-0.25 -0.28125 -0.65625 -0.453125q-0.390625 -0.171875 -0.9375 -0.171875q-1.015625 0 -1.59375 0.640625q-0.5625 0.625 -0.5625 1.65625l0 0.59375l-1.109375 0l0 -0.671875q0 -0.640625 0.203125 -1.21875q0.21875 -0.59375 0.625 -1.046875q0.421875 -0.453125 1.03125 -0.71875q0.609375 -0.265625 1.40625 -0.265625q0.8125 0 1.40625 0.25q0.609375 0.25 1.0 0.65625q0.40625 0.40625 0.59375 0.921875q0.203125 0.5 0.203125 1.03125l0 0.25q0 1.0625 -0.671875 1.8125q-0.65625 0.75 -2.125 1.078125q-1.28125 0.28125 -1.890625 0.75q-0.59375 0.453125 -0.59375 1.328125l0 0.390625l5.203125 0zm7.188034 -5.59375q0 -0.453125 -0.1875 -0.796875q-0.171875 -0.34375 -0.484375 -0.5625q-0.3125 -0.234375 -0.71875 -0.359375q-0.390625 -0.125 -0.828125 -0.125q-0.390625 0 -0.734375 0.109375q-0.34375 0.09375 -0.625 0.28125q-0.265625 0.1875 -0.421875 0.46875q-0.15625 0.265625 -0.15625 0.625l0 0.078125q0 0.390625 0.15625 0.671875q0.15625 0.265625 0.46875 0.46875q0.3125 0.1875 0.78125 0.3125q0.46875 0.125 1.09375 0.21875q1.46875 0.21875 2.15625 0.859375q0.703125 0.625 0.703125 1.703125l0 0.15625q0 0.59375 -0.21875 1.09375q-0.203125 0.5 -0.609375 0.859375q-0.40625 0.359375 -1.015625 0.5625q-0.59375 0.203125 -1.375 0.203125q-0.890625 0 -1.578125 -0.25q-0.6875 -0.265625 -1.15625 -0.71875q-0.453125 -0.46875 -0.703125 -1.09375q-0.234375 -0.625 -0.234375 -1.34375l0 -0.40625l1.125 0l0 0.3125q0 1.234375 0.671875 1.84375q0.671875 0.609375 1.875 0.609375q1.03125 0 1.5625 -0.453125q0.53125 -0.453125 0.53125 -1.21875l0 -0.078125q0 -0.734375 -0.546875 -1.125q-0.53125 -0.390625 -1.75 -0.5625q-0.703125 -0.09375 -1.28125 -0.28125q-0.5625 -0.1875 -0.96875 -0.5q-0.390625 -0.3125 -0.609375 -0.75q-0.203125 -0.453125 -0.203125 -1.046875l0 -0.15625q0 -0.546875 0.21875 -1.0q0.234375 -0.453125 0.640625 -0.78125q0.40625 -0.34375 0.96875 -0.515625q0.578125 -0.1875 1.25 -0.1875q0.78125 0 1.40625 0.234375q0.625 0.21875 1.046875 0.609375q0.421875 0.375 0.640625 0.890625q0.21875 0.5 0.21875 1.0625l0 0.5625l-1.109375 0l0 -0.484375z" fill-rule="nonzero"/><path fill="#000000" fill-opacity="0.0" d="m300.45407 29.393702l105.03937 0l0 35.55906l-105.03937 0z" fill-rule="evenodd"/><path fill="#000000" d="m313.57907 50.334324q0.578125 0 0.984375 -0.1875q0.40625 -0.1875 0.65625 -0.515625q0.265625 -0.328125 0.390625 -0.75q0.140625 -0.421875 0.140625 -0.890625l0 -0.15625l1.109375 0l0 0.15625q0 0.703125 -0.21875 1.328125q-0.203125 0.625 -0.625 1.09375q-0.40625 0.453125 -1.015625 0.71875q-0.609375 0.25 -1.421875 0.25q-1.546875 0 -2.40625 -0.96875q-0.859375 -0.984375 -0.859375 -2.84375l0 -2.078125q0 -1.8125 0.859375 -2.8125q0.859375 -1.0 2.40625 -1.0q0.8125 0 1.421875 0.265625q0.609375 0.25 1.015625 0.71875q0.421875 0.453125 0.625 1.078125q0.21875 0.609375 0.21875 1.328125l0 0.15625l-1.109375 0l0 -0.15625q-0.015625 -0.453125 -0.140625 -0.875q-0.125 -0.4375 -0.390625 -0.765625q-0.265625 -0.328125 -0.671875 -0.515625q-0.390625 -0.203125 -0.96875 -0.203125q-1.078125 0 -1.625 0.796875q-0.53125 0.78125 -0.53125 2.0625l0 1.921875q0 1.375 0.53125 2.109375q0.546875 0.734375 1.625 0.734375zm4.641144 -8.46875l2.140625 0l1.25 8.84375l0.15625 0l1.25 -8.84375l2.140625 0l0 9.328125l-1.046875 0l0 -8.84375l-0.15625 0l-1.25 8.84375l-2.03125 0l-1.25 -8.84375l-0.15625 0l0 8.84375l-1.046875 0l0 -9.328125zm8.516174 0l3.0625 0q1.734375 0 2.53125 0.828125q0.8125 0.828125 0.8125 2.640625l0 2.390625q0 1.8125 -0.8125 2.640625q-0.796875 0.828125 -2.53125 0.828125l-3.0625 0l0 -1.046875l0.796875 0l0 -7.25l-0.796875 0l0 -1.03125zm2.90625 8.28125q0.609375 0 1.0625 -0.109375q0.453125 -0.125 0.734375 -0.40625q0.296875 -0.296875 0.4375 -0.765625q0.140625 -0.484375 0.140625 -1.21875l0 -2.234375q0 -0.734375 -0.140625 -1.21875q-0.140625 -0.484375 -0.4375 -0.765625q-0.28125 -0.28125 -0.734375 -0.40625q-0.453125 -0.125 -1.0625 -0.125l-0.984375 0l0 7.25l0.984375 0zm5.250519 1.6875l6.21875 0l0 0.953125l-6.21875 0l0 -0.953125zm13.266174 -2.953125l-4.0 0l-0.671875 2.3125l-1.203125 0l2.828125 -9.328125l2.09375 0l2.828125 9.328125l-1.203125 0l-0.671875 -2.3125zm-2.078125 -6.53125l-1.609375 5.484375l3.375 0l-1.609375 -5.484375l-0.15625 0zm5.125519 -0.484375l3.0625 0q1.734375 0 2.53125 0.828125q0.8125 0.828125 0.8125 2.640625l0 2.390625q0 1.8125 -0.8125 2.640625q-0.796875 0.828125 -2.53125 0.828125l-3.0625 0l0 -1.046875l0.796875 0l0 -7.25l-0.796875 0l0 -1.03125zm2.90625 8.28125q0.609375 0 1.0625 -0.109375q0.453125 -0.125 0.734375 -0.40625q0.296875 -0.296875 0.4375 -0.765625q0.140625 -0.484375 0.140625 -1.21875l0 -2.234375q0 -0.734375 -0.140625 -1.21875q-0.140625 -0.484375 -0.4375 -0.765625q-0.28125 -0.28125 -0.734375 -0.40625q-0.453125 -0.125 -1.0625 -0.125l-0.984375 0l0 7.25l0.984375 0zm5.2505493 -8.28125l3.0625 0q1.734375 0 2.53125 0.828125q0.8125 0.828125 0.8125 2.640625l0 2.390625q0 1.8125 -0.8125 2.640625q-0.796875 0.828125 -2.53125 0.828125l-3.0625 0l0 -1.046875l0.796875 0l0 -7.25l-0.796875 0l0 -1.03125zm2.90625 8.28125q0.609375 0 1.0625 -0.109375q0.453125 -0.125 0.734375 -0.40625q0.296875 -0.296875 0.4375 -0.765625q0.140625 -0.484375 0.140625 -1.21875l0 -2.234375q0 -0.734375 -0.140625 -1.21875q-0.140625 -0.484375 -0.4375 -0.765625q-0.28125 -0.28125 -0.734375 -0.40625q-0.453125 -0.125 -1.0625 -0.125l-0.984375 0l0 7.25l0.984375 0zm11.281769 1.046875l-1.125 0l0 -3.125q0 -0.34375 -0.15625 -0.53125q-0.15625 -0.1875 -0.5625 -0.1875l-2.90625 0l0 3.84375l-1.109375 0l0 -9.328125l3.328125 0q0.71875 0 1.25 0.203125q0.53125 0.203125 0.875 0.5625q0.359375 0.34375 0.53125 0.8125q0.1875 0.453125 0.1875 0.953125l0 0.40625q0 0.515625 -0.28125 1.03125q-0.28125 0.515625 -0.890625 0.796875l0 0.171875q0.40625 0.0625 0.625 0.3125q0.234375 0.25 0.234375 0.71875l0 3.359375zm-4.75 -4.875l2.078125 0q0.953125 0 1.40625 -0.40625q0.46875 -0.40625 0.46875 -1.203125l0 -0.234375q0 -0.703125 -0.46875 -1.140625q-0.453125 -0.4375 -1.40625 -0.4375l-2.078125 0l0 3.421875z" fill-rule="nonzero"/><path fill="#000000" fill-opacity="0.0" d="m300.45407 89.79002l105.03937 0l0 35.55906l-105.03937 0z" fill-rule="evenodd"/><path fill="#000000" d="m316.51657 111.59003l-2.03125 0l-0.875 -8.84375l-0.15625 0l-0.875 8.84375l-2.03125 0l-0.953125 -9.328125l1.015625 0l0.890625 8.84375l0.171875 0l0.828125 -8.84375l2.0625 0l0.828125 8.84375l0.171875 0l0.890625 -8.84375l1.015625 0l-0.953125 9.328125zm1.8755188 -6.609375l2.40625 0l0 0.875l0.15625 0q0.25 -0.546875 0.71875 -0.796875q0.46875 -0.265625 1.0625 -0.265625q1.0 0 1.609375 0.65625q0.625 0.65625 0.65625 1.90625l-1.09375 0.15625q0 -0.921875 -0.4375 -1.328125q-0.4375 -0.40625 -1.078125 -0.40625q-0.40625 0 -0.71875 0.171875q-0.296875 0.15625 -0.5 0.4375q-0.1875 0.265625 -0.28125 0.640625q-0.09375 0.375 -0.09375 0.796875l0 2.8125l1.671875 0l0 0.953125l-4.234375 0l0 -0.953125l1.515625 0l0 -4.703125l-1.359375 0l0 -0.953125zm8.344299 -2.71875l3.0625 0q1.734375 0 2.53125 0.828125q0.8125 0.828125 0.8125 2.640625l0 2.390625q0 1.8125 -0.8125 2.640625q-0.796875 0.828125 -2.53125 0.828125l-3.0625 0l0 -1.046875l0.796875 0l0 -7.25l-0.796875 0l0 -1.03125zm2.90625 8.28125q0.609375 0 1.0625 -0.109375q0.453125 -0.125 0.734375 -0.40625q0.296875 -0.296875 0.4375 -0.765625q0.140625 -0.484375 0.140625 -1.21875l0 -2.234375q0 -0.734375 -0.140625 -1.21875q-0.140625 -0.484375 -0.4375 -0.765625q-0.28125 -0.28125 -0.734375 -0.40625q-0.453125 -0.125 -1.0625 -0.125l-0.984375 0l0 7.25l0.984375 0zm10.359894 -1.265625l-4.0 0l-0.671875 2.3125l-1.203125 0l2.828125 -9.328125l2.09375 0l2.828125 9.328125l-1.203125 0l-0.671875 -2.3125zm-2.078125 -6.53125l-1.609375 5.484375l3.375 0l-1.609375 -5.484375l-0.15625 0zm4.9536743 -0.484375l6.5625 0l0 1.03125l-2.71875 0l0 8.296875l-1.125 0l0 -8.296875l-2.71875 0l0 -1.03125zm13.438019 7.015625l-4.0 0l-0.671875 2.3125l-1.203125 0l2.828125 -9.328125l2.09375 0l2.828125 9.328125l-1.203125 0l-0.671875 -2.3125zm-2.078125 -6.53125l-1.609375 5.484375l3.375 0l-1.609375 -5.484375l-0.15625 0z" fill-rule="nonzero"/><path fill="#000000" fill-opacity="0.0" d="m314.7638 203.61679l105.03937 0l0 35.559067l-105.03937 0z" fill-rule="evenodd"/><path fill="#000000" d="m330.7638 225.4168l-1.125 0l0 -3.125q0 -0.34375 -0.15625 -0.53125q-0.15625 -0.1875 -0.5625 -0.1875l-2.90625 0l0 3.84375l-1.109375 0l0 -9.328125l3.328125 0q0.71875 0 1.25 0.203125q0.53125 0.203125 0.875 0.5625q0.359375 0.34375 0.53125 0.8125q0.1875 0.453125 0.1875 0.953125l0 0.40625q0 0.515625 -0.28125 1.03125q-0.28125 0.515625 -0.890625 0.796875l0 0.171875q0.40625 0.0625 0.625 0.3125q0.234375 0.25 0.234375 0.71875l0 3.359375zm-4.75 -4.875l2.078125 0q0.953125 0 1.40625 -0.40625q0.46875 -0.40625 0.46875 -1.203125l0 -0.234375q0 -0.703125 -0.46875 -1.140625q-0.453125 -0.4375 -1.40625 -0.4375l-2.078125 0l0 3.421875zm12.188019 3.859375l-0.15625 0q-0.171875 0.3125 -0.421875 0.546875q-0.234375 0.21875 -0.53125 0.375q-0.28125 0.140625 -0.609375 0.203125q-0.3125 0.078125 -0.609375 0.078125q-0.65625 0 -1.234375 -0.21875q-0.578125 -0.234375 -1.015625 -0.65625q-0.421875 -0.4375 -0.671875 -1.0625q-0.25 -0.640625 -0.25 -1.453125l0 -0.203125q0 -0.8125 0.25 -1.4375q0.265625 -0.640625 0.6875 -1.0625q0.421875 -0.4375 1.0 -0.65625q0.578125 -0.234375 1.21875 -0.234375q0.671875 0 1.265625 0.296875q0.59375 0.296875 0.921875 0.921875l0.15625 0l0 -3.75l1.03125 0l0 9.328125l-1.03125 0l0 -1.015625zm-2.21875 0.21875q0.46875 0 0.859375 -0.171875q0.40625 -0.171875 0.703125 -0.484375q0.3125 -0.328125 0.484375 -0.765625q0.171875 -0.453125 0.171875 -1.0l0 -0.171875q0 -0.53125 -0.171875 -0.96875q-0.171875 -0.453125 -0.484375 -0.765625q-0.296875 -0.328125 -0.703125 -0.5q-0.40625 -0.1875 -0.859375 -0.1875q-0.46875 0 -0.875 0.171875q-0.40625 0.171875 -0.703125 0.5q-0.296875 0.3125 -0.46875 0.765625q-0.15625 0.4375 -0.15625 0.96875l0 0.203125q0 0.5625 0.15625 1.0q0.171875 0.4375 0.46875 0.75q0.296875 0.3125 0.6875 0.484375q0.40625 0.171875 0.890625 0.171875zm5.0630493 -8.53125l3.0625 0q1.734375 0 2.53125 0.828125q0.8125 0.828125 0.8125 2.640625l0 2.390625q0 1.8125 -0.8125 2.640625q-0.796875 0.828125 -2.53125 0.828125l-3.0625 0l0 -1.046875l0.796875 0l0 -7.25l-0.796875 0l0 -1.03125zm2.90625 8.28125q0.609375 0 1.0625 -0.109375q0.453125 -0.125 0.734375 -0.40625q0.296875 -0.296875 0.4375 -0.765625q0.140625 -0.484375 0.140625 -1.21875l0 -2.234375q0 -0.734375 -0.140625 -1.21875q-0.140625 -0.484375 -0.4375 -0.765625q-0.28125 -0.28125 -0.734375 -0.40625q-0.453125 -0.125 -1.0625 -0.125l-0.984375 0l0 7.25l0.984375 0zm10.359894 -1.265625l-4.0 0l-0.671875 2.3125l-1.203125 0l2.828125 -9.328125l2.09375 0l2.828125 9.328125l-1.203125 0l-0.671875 -2.3125zm-2.078125 -6.53125l-1.609375 5.484375l3.375 0l-1.609375 -5.484375l-0.15625 0zm4.9536743 -0.484375l6.5625 0l0 1.03125l-2.71875 0l0 8.296875l-1.125 0l0 -8.296875l-2.71875 0l0 -1.03125zm13.438019 7.015625l-4.0 0l-0.671875 2.3125l-1.203125 0l2.828125 -9.328125l2.09375 0l2.828125 9.328125l-1.203125 0l-0.671875 -2.3125zm-2.078125 -6.53125l-1.609375 5.484375l3.375 0l-1.609375 -5.484375l-0.15625 0z" fill-rule="nonzero"/><path fill="#000000" fill-opacity="0.0" d="m381.1497 363.6404l136.6614 0l0 38.614197l-136.6614 0z" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m381.1497 363.6404l136.6614 0l0 38.614197l-136.6614 0z" fill-rule="evenodd"/><path fill="#000000" d="m390.93094 373.13812l2.40625 0l0 0.875l0.15625 0q0.25 -0.546875 0.71875 -0.796875q0.46875 -0.265625 1.0625 -0.265625q1.0 0 1.609375 0.65625q0.625 0.65625 0.65625 1.90625l-1.09375 0.15625q0 -0.921875 -0.4375 -1.328125q-0.4375 -0.40625 -1.078125 -0.40625q-0.40625 0 -0.71875 0.171875q-0.296875 0.15625 -0.5 0.4375q-0.1875 0.265625 -0.28125 0.640625q-0.09375 0.375 -0.09375 0.796875l0 2.8125l1.671875 0l0 0.953125l-4.234375 0l0 -0.953125l1.515625 0l0 -4.703125l-1.359375 0l0 -0.953125zm9.297424 3.625q0.03125 0.984375 0.609375 1.59375q0.578125 0.59375 1.59375 0.59375q0.46875 0 0.8125 -0.109375q0.359375 -0.109375 0.59375 -0.296875q0.25 -0.1875 0.40625 -0.421875q0.15625 -0.25 0.25 -0.53125l0.984375 0.265625q-0.28125 0.921875 -1.03125 1.5q-0.75 0.578125 -2.03125 0.578125q-0.703125 0 -1.296875 -0.25q-0.59375 -0.25 -1.03125 -0.703125q-0.421875 -0.453125 -0.671875 -1.078125q-0.234375 -0.625 -0.234375 -1.375l0 -0.328125q0 -0.6875 0.25 -1.28125q0.25 -0.609375 0.6875 -1.03125q0.4375 -0.4375 1.03125 -0.6875q0.59375 -0.25 1.28125 -0.25q0.8125 0 1.40625 0.296875q0.59375 0.296875 0.96875 0.75q0.390625 0.4375 0.5625 0.953125q0.1875 0.515625 0.1875 0.953125l0 0.859375l-5.328125 0zm2.203125 -2.828125q-0.4375 0 -0.8125 0.140625q-0.375 0.140625 -0.671875 0.390625q-0.28125 0.25 -0.46875 0.59375q-0.171875 0.34375 -0.21875 0.75l4.25 0q-0.015625 -0.4375 -0.203125 -0.78125q-0.171875 -0.34375 -0.46875 -0.578125q-0.28125 -0.25 -0.65625 -0.375q-0.359375 -0.140625 -0.75 -0.140625zm4.969269 -0.796875l2.078125 0l0 -2.71875l1.03125 0l0 2.71875l2.5625 0l0 0.953125l-2.5625 0l0 4.296875q0 0.40625 0.359375 0.40625l1.890625 0l0 0.953125l-2.265625 0q-0.453125 0 -0.734375 -0.296875q-0.28125 -0.296875 -0.28125 -0.75l0 -4.609375l-2.078125 0l0 -0.953125zm13.094299 0l1.046875 0l0 6.609375l-1.046875 0l0 -1.203125l-0.15625 0q-0.328125 0.640625 -0.84375 1.015625q-0.515625 0.375 -1.3125 0.375q-0.546875 0 -1.015625 -0.1875q-0.453125 -0.171875 -0.78125 -0.53125q-0.328125 -0.359375 -0.515625 -0.890625q-0.171875 -0.53125 -0.171875 -1.25l0 -3.9375l1.046875 0l0 3.8125q0 1.03125 0.421875 1.515625q0.421875 0.484375 1.3125 0.484375q0.9375 0 1.46875 -0.640625q0.546875 -0.65625 0.546875 -1.734375l0 -3.4375zm3.0630188 0l2.40625 0l0 0.875l0.15625 0q0.25 -0.546875 0.71875 -0.796875q0.46875 -0.265625 1.0625 -0.265625q1.0 0 1.609375 0.65625q0.625 0.65625 0.65625 1.90625l-1.09375 0.15625q0 -0.921875 -0.4375 -1.328125q-0.4375 -0.40625 -1.078125 -0.40625q-0.40625 0 -0.71875 0.171875q-0.296875 0.15625 -0.5 0.4375q-0.1875 0.265625 -0.28125 0.640625q-0.09375 0.375 -0.09375 0.796875l0 2.8125l1.671875 0l0 0.953125l-4.234375 0l0 -0.953125l1.515625 0l0 -4.703125l-1.359375 0l0 -0.953125zm9.578674 6.609375l-1.046875 0l0 -6.609375l1.046875 0l0 1.125l0.15625 0q0.609375 -1.3125 2.125 -1.3125q1.15625 0 1.828125 0.71875q0.6875 0.703125 0.6875 2.140625l0 3.9375l-1.046875 0l0 -3.734375q0 -1.03125 -0.46875 -1.546875q-0.453125 -0.53125 -1.265625 -0.53125q-0.9375 0 -1.484375 0.65625q-0.53125 0.640625 -0.53125 1.71875l0 3.4375zm8.031769 -3.9375l4.0 0l0 0.953125l-4.0 0l0 -0.953125zm8.031799 3.9375l-1.03125 0l0 -9.328125l1.03125 0l0 3.75l0.171875 0q0.34375 -0.59375 0.953125 -0.90625q0.609375 -0.3125 1.328125 -0.3125q0.625 0 1.171875 0.234375q0.546875 0.21875 0.953125 0.65625q0.421875 0.421875 0.671875 1.046875q0.25 0.625 0.25 1.421875l0 0.265625q0 0.8125 -0.25 1.4375q-0.234375 0.625 -0.65625 1.0625q-0.421875 0.421875 -0.984375 0.640625q-0.546875 0.21875 -1.171875 0.21875q-0.328125 0 -0.65625 -0.078125q-0.328125 -0.0625 -0.640625 -0.21875q-0.296875 -0.15625 -0.546875 -0.375q-0.25 -0.21875 -0.421875 -0.53125l-0.171875 0l0 1.015625zm2.21875 -0.796875q0.484375 0 0.875 -0.171875q0.40625 -0.171875 0.703125 -0.46875q0.296875 -0.3125 0.46875 -0.75q0.171875 -0.4375 0.171875 -0.984375l0 -0.265625q0 -0.53125 -0.171875 -0.96875q-0.171875 -0.4375 -0.46875 -0.75q-0.296875 -0.3125 -0.703125 -0.484375q-0.40625 -0.171875 -0.875 -0.171875q-0.46875 0 -0.875 0.1875q-0.390625 0.171875 -0.6875 0.5q-0.296875 0.3125 -0.484375 0.765625q-0.171875 0.4375 -0.171875 0.96875l0 0.171875q0 0.546875 0.171875 1.0q0.1875 0.4375 0.484375 0.765625q0.296875 0.3125 0.6875 0.484375q0.40625 0.171875 0.875 0.171875zm9.938019 -0.40625l-0.15625 0q-0.3125 0.640625 -0.84375 1.015625q-0.515625 0.375 -1.3125 0.375q-0.546875 0 -1.015625 -0.1875q-0.453125 -0.171875 -0.78125 -0.53125q-0.328125 -0.359375 -0.515625 -0.890625q-0.171875 -0.53125 -0.171875 -1.25l0 -3.9375l1.046875 0l0 3.8125q0 1.03125 0.421875 1.515625q0.421875 0.484375 1.3125 0.484375q0.9375 0 1.46875 -0.640625q0.546875 -0.65625 0.546875 -1.734375l0 -3.4375l1.046875 0l0 8.234375q0 0.453125 -0.296875 0.75q-0.28125 0.296875 -0.734375 0.296875l-3.765625 0l0 -0.96875l3.390625 0q0.359375 0 0.359375 -0.390625l0 -2.515625zm4.2817993 -2.734375l4.0 0l0 0.953125l-4.0 0l0 -0.953125zm7.047394 -5.390625l1.125 0l0 4.125l3.96875 0l0 -4.125l1.125 0l0 9.328125l-1.125 0l0 -4.15625l-3.96875 0l0 4.15625l-1.125 0l0 -9.328125zm14.250549 9.328125l-2.03125 0l-0.875 -8.84375l-0.15625 0l-0.875 8.84375l-2.03125 0l-0.953125 -9.328125l1.015625 0l0.890625 8.84375l0.171875 0l0.828125 -8.84375l2.0625 0l0.828125 8.84375l0.171875 0l0.890625 -8.84375l1.015625 0l-0.953125 9.328125z" fill-rule="nonzero"/><path fill="#000000" d="m390.93094 389.13812l2.40625 0l0 0.875l0.15625 0q0.25 -0.546875 0.71875 -0.796875q0.46875 -0.265625 1.0625 -0.265625q1.0 0 1.609375 0.65625q0.625 0.65625 0.65625 1.90625l-1.09375 0.15625q0 -0.921875 -0.4375 -1.328125q-0.4375 -0.40625 -1.078125 -0.40625q-0.40625 0 -0.71875 0.171875q-0.296875 0.15625 -0.5 0.4375q-0.1875 0.265625 -0.28125 0.640625q-0.09375 0.375 -0.09375 0.796875l0 2.8125l1.671875 0l0 0.953125l-4.234375 0l0 -0.953125l1.515625 0l0 -4.703125l-1.359375 0l0 -0.953125zm9.297424 3.625q0.03125 0.984375 0.609375 1.59375q0.578125 0.59375 1.59375 0.59375q0.46875 0 0.8125 -0.109375q0.359375 -0.109375 0.59375 -0.296875q0.25 -0.1875 0.40625 -0.421875q0.15625 -0.25 0.25 -0.53125l0.984375 0.265625q-0.28125 0.921875 -1.03125 1.5q-0.75 0.578125 -2.03125 0.578125q-0.703125 0 -1.296875 -0.25q-0.59375 -0.25 -1.03125 -0.703125q-0.421875 -0.453125 -0.671875 -1.078125q-0.234375 -0.625 -0.234375 -1.375l0 -0.328125q0 -0.6875 0.25 -1.28125q0.25 -0.609375 0.6875 -1.03125q0.4375 -0.4375 1.03125 -0.6875q0.59375 -0.25 1.28125 -0.25q0.8125 0 1.40625 0.296875q0.59375 0.296875 0.96875 0.75q0.390625 0.4375 0.5625 0.953125q0.1875 0.515625 0.1875 0.953125l0 0.859375l-5.328125 0zm2.203125 -2.828125q-0.4375 0 -0.8125 0.140625q-0.375 0.140625 -0.671875 0.390625q-0.28125 0.25 -0.46875 0.59375q-0.171875 0.34375 -0.21875 0.75l4.25 0q-0.015625 -0.4375 -0.203125 -0.78125q-0.171875 -0.34375 -0.46875 -0.578125q-0.28125 -0.25 -0.65625 -0.375q-0.359375 -0.140625 -0.75 -0.140625zm10.219269 4.796875l-0.15625 0q-0.328125 0.609375 -0.890625 0.90625q-0.546875 0.296875 -1.203125 0.296875q-0.65625 0 -1.25 -0.21875q-0.578125 -0.234375 -1.03125 -0.65625q-0.4375 -0.4375 -0.703125 -1.0625q-0.265625 -0.640625 -0.265625 -1.453125l0 -0.203125q0 -0.8125 0.265625 -1.4375q0.265625 -0.640625 0.703125 -1.0625q0.453125 -0.4375 1.03125 -0.65625q0.59375 -0.234375 1.234375 -0.234375q0.71875 0 1.25 0.3125q0.546875 0.3125 0.859375 0.90625l0.15625 0l0 -1.03125l1.03125 0l0 8.234375q0 0.453125 -0.28125 0.75q-0.28125 0.296875 -0.734375 0.296875l-4.3125 0l0 -0.96875l3.9375 0q0.359375 0 0.359375 -0.390625l0 -2.328125zm-2.21875 0.21875q0.46875 0 0.859375 -0.171875q0.40625 -0.171875 0.703125 -0.484375q0.3125 -0.328125 0.484375 -0.765625q0.171875 -0.453125 0.171875 -1.0l0 -0.171875q0 -0.53125 -0.171875 -0.96875q-0.171875 -0.453125 -0.484375 -0.765625q-0.296875 -0.328125 -0.703125 -0.5q-0.40625 -0.1875 -0.859375 -0.1875q-0.46875 0 -0.875 0.171875q-0.40625 0.171875 -0.703125 0.5q-0.296875 0.3125 -0.46875 0.765625q-0.15625 0.4375 -0.15625 0.96875l0 0.203125q0 0.5625 0.15625 1.0q0.171875 0.4375 0.46875 0.75q0.296875 0.3125 0.6875 0.484375q0.40625 0.171875 0.890625 0.171875zm7.4067993 -7.78125q0 -0.390625 0.265625 -0.65625q0.28125 -0.28125 0.65625 -0.28125q0.390625 0 0.65625 0.28125q0.28125 0.265625 0.28125 0.65625q0 0.375 -0.28125 0.65625q-0.265625 0.265625 -0.65625 0.265625q-0.375 0 -0.65625 -0.265625q-0.265625 -0.28125 -0.265625 -0.65625zm-1.90625 7.625l2.328125 0l0 -4.703125l-2.078125 0l0 -0.953125l3.109375 0l0 5.65625l2.171875 0l0 0.953125l-5.53125 0l0 -0.953125zm9.375519 -3.953125q0 0.484375 0.40625 0.734375q0.40625 0.25 1.484375 0.328125q1.15625 0.09375 1.765625 0.5625q0.609375 0.453125 0.609375 1.328125l0 0.09375q0 0.46875 -0.203125 0.859375q-0.1875 0.375 -0.53125 0.640625q-0.328125 0.265625 -0.8125 0.40625q-0.484375 0.140625 -1.0625 0.140625q-0.78125 0 -1.328125 -0.203125q-0.546875 -0.21875 -0.921875 -0.546875q-0.359375 -0.34375 -0.546875 -0.765625q-0.1875 -0.4375 -0.21875 -0.890625l0.984375 -0.234375q0.0625 0.765625 0.578125 1.234375q0.53125 0.453125 1.390625 0.453125q0.734375 0 1.171875 -0.28125q0.453125 -0.296875 0.453125 -0.8125q0 -0.5625 -0.4375 -0.796875q-0.4375 -0.25 -1.421875 -0.3125q-1.140625 -0.078125 -1.765625 -0.53125q-0.609375 -0.453125 -0.609375 -1.328125l0 -0.078125q0 -0.46875 0.203125 -0.8125q0.203125 -0.359375 0.53125 -0.59375q0.34375 -0.25 0.765625 -0.359375q0.4375 -0.125 0.90625 -0.125q0.65625 0 1.140625 0.1875q0.5 0.171875 0.828125 0.46875q0.328125 0.28125 0.5 0.65625q0.1875 0.359375 0.25 0.734375l-0.984375 0.25q-0.078125 -0.640625 -0.53125 -1.0q-0.4375 -0.359375 -1.15625 -0.359375q-0.28125 0 -0.546875 0.0625q-0.25 0.046875 -0.453125 0.171875q-0.203125 0.125 -0.328125 0.3125q-0.109375 0.171875 -0.109375 0.40625zm6.5630493 -1.703125l2.078125 0l0 -2.71875l1.03125 0l0 2.71875l2.5625 0l0 0.953125l-2.5625 0l0 4.296875q0 0.40625 0.359375 0.40625l1.890625 0l0 0.953125l-2.265625 0q-0.453125 0 -0.734375 -0.296875q-0.28125 -0.296875 -0.28125 -0.75l0 -4.609375l-2.078125 0l0 -0.953125zm9.141144 3.625q0.03125 0.984375 0.609375 1.59375q0.578125 0.59375 1.59375 0.59375q0.46875 0 0.8125 -0.109375q0.359375 -0.109375 0.59375 -0.296875q0.25 -0.1875 0.40625 -0.421875q0.15625 -0.25 0.25 -0.53125l0.984375 0.265625q-0.28125 0.921875 -1.03125 1.5q-0.75 0.578125 -2.03125 0.578125q-0.703125 0 -1.296875 -0.25q-0.59375 -0.25 -1.03125 -0.703125q-0.421875 -0.453125 -0.671875 -1.078125q-0.234375 -0.625 -0.234375 -1.375l0 -0.328125q0 -0.6875 0.25 -1.28125q0.25 -0.609375 0.6875 -1.03125q0.4375 -0.4375 1.03125 -0.6875q0.59375 -0.25 1.28125 -0.25q0.8125 0 1.40625 0.296875q0.59375 0.296875 0.96875 0.75q0.390625 0.4375 0.5625 0.953125q0.1875 0.515625 0.1875 0.953125l0 0.859375l-5.328125 0zm2.203125 -2.828125q-0.4375 0 -0.8125 0.140625q-0.375 0.140625 -0.671875 0.390625q-0.28125 0.25 -0.46875 0.59375q-0.171875 0.34375 -0.21875 0.75l4.25 0q-0.015625 -0.4375 -0.203125 -0.78125q-0.171875 -0.34375 -0.46875 -0.578125q-0.28125 -0.25 -0.65625 -0.375q-0.359375 -0.140625 -0.75 -0.140625zm4.8130493 -0.796875l2.40625 0l0 0.875l0.15625 0q0.25 -0.546875 0.71875 -0.796875q0.46875 -0.265625 1.0625 -0.265625q1.0 0 1.609375 0.65625q0.625 0.65625 0.65625 1.90625l-1.09375 0.15625q0 -0.921875 -0.4375 -1.328125q-0.4375 -0.40625 -1.078125 -0.40625q-0.40625 0 -0.71875 0.171875q-0.296875 0.15625 -0.5 0.4375q-0.1875 0.265625 -0.28125 0.640625q-0.09375 0.375 -0.09375 0.796875l0 2.8125l1.671875 0l0 0.953125l-4.234375 0l0 -0.953125l1.515625 0l0 -4.703125l-1.359375 0l0 -0.953125zm9.906769 1.703125q0 0.484375 0.40625 0.734375q0.40625 0.25 1.484375 0.328125q1.15625 0.09375 1.765625 0.5625q0.609375 0.453125 0.609375 1.328125l0 0.09375q0 0.46875 -0.203125 0.859375q-0.1875 0.375 -0.53125 0.640625q-0.328125 0.265625 -0.8125 0.40625q-0.484375 0.140625 -1.0625 0.140625q-0.78125 0 -1.328125 -0.203125q-0.546875 -0.21875 -0.921875 -0.546875q-0.359375 -0.34375 -0.546875 -0.765625q-0.1875 -0.4375 -0.21875 -0.890625l0.984375 -0.234375q0.0625 0.765625 0.578125 1.234375q0.53125 0.453125 1.390625 0.453125q0.734375 0 1.171875 -0.28125q0.453125 -0.296875 0.453125 -0.8125q0 -0.5625 -0.4375 -0.796875q-0.4375 -0.25 -1.421875 -0.3125q-1.140625 -0.078125 -1.765625 -0.53125q-0.609375 -0.453125 -0.609375 -1.328125l0 -0.078125q0 -0.46875 0.203125 -0.8125q0.203125 -0.359375 0.53125 -0.59375q0.34375 -0.25 0.765625 -0.359375q0.4375 -0.125 0.90625 -0.125q0.65625 0 1.140625 0.1875q0.5 0.171875 0.828125 0.46875q0.328125 0.28125 0.5 0.65625q0.1875 0.359375 0.25 0.734375l-0.984375 0.25q-0.078125 -0.640625 -0.53125 -1.0q-0.4375 -0.359375 -1.15625 -0.359375q-0.28125 0 -0.546875 0.0625q-0.25 0.046875 -0.453125 0.171875q-0.203125 0.125 -0.328125 0.3125q-0.109375 0.171875 -0.109375 0.40625z" fill-rule="nonzero"/><path fill="#000000" fill-opacity="0.0" d="m449.48032 292.88452l0 57.448822" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m449.48032 292.88452l0 50.594635" fill-rule="evenodd"/><path fill="#000000" stroke="#000000" stroke-width="2.0" stroke-linecap="butt" d="m449.48032 343.47916l-2.249176 -2.249176l2.249176 6.179535l2.249176 -6.179535z" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m213.16667 382.9462l154.01573 0" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m220.02083 382.9462l147.16158 0" fill-rule="evenodd"/><path fill="#000000" stroke="#000000" stroke-width="2.0" stroke-linecap="butt" d="m220.02084 382.9462l2.2491608 -2.249176l-6.179535 2.249176l6.179535 2.249176z" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m614.81104 12.811024l0 404.85037" fill-rule="evenodd"/><path stroke="#666666" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" stroke-dasharray="8.0,6.0" d="m614.81104 12.811024l0 404.85037" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m556.69244 369.67453l32.0 0l0 48.0l-32.0 0z" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m556.69244 369.67453l32.0 0l0 48.0l-32.0 0z" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m588.6916 399.3124l-8.0 4.0l8.0 4.0" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m588.6916 399.3124l-8.0 4.0l8.0 4.0" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m648.2152 379.60892l-49.417297 0" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m648.2152 379.60892l-42.56317 0" fill-rule="evenodd"/><path fill="#000000" stroke="#000000" stroke-width="2.0" stroke-linecap="butt" d="m605.6521 379.60892l2.2491455 -2.2491455l-6.1795654 2.2491455l6.1795654 2.249176z" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m552.6483 378.7979l-29.952759 0" fill-rule="evenodd"/><path stroke="#000000" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="m552.6483 378.7979l-23.098633 0" fill-rule="evenodd"/><path fill="#000000" stroke="#000000" stroke-width="2.0" stroke-linecap="butt" d="m529.5497 378.7979l2.2492065 -2.249176l-6.1795654 2.249176l6.1795654 2.2491455z" fill-rule="evenodd"/><path fill="#000000" fill-opacity="0.0" d="m614.81104 352.93964l105.03937 0l0 51.716522l-105.03937 0z" fill-rule="evenodd"/><path fill="#000000" d="m630.81104 374.73962l-1.125 0l0 -3.125q0 -0.34375 -0.15625 -0.53125q-0.15625 -0.1875 -0.5625 -0.1875l-2.90625 0l0 3.84375l-1.109375 0l0 -9.328125l3.328125 0q0.71875 0 1.25 0.203125q0.53125 0.203125 0.875 0.5625q0.359375 0.34375 0.53125 0.8125q0.1875 0.453125 0.1875 0.953125l0 0.40625q0 0.515625 -0.28125 1.03125q-0.28125 0.515625 -0.890625 0.796875l0 0.171875q0.40625 0.0625 0.625 0.3125q0.234375 0.25 0.234375 0.71875l0 3.359375zm-4.75 -4.875l2.078125 0q0.953125 0 1.40625 -0.40625q0.46875 -0.40625 0.46875 -1.203125l0 -0.234375q0 -0.703125 -0.46875 -1.140625q-0.453125 -0.4375 -1.40625 -0.4375l-2.078125 0l0 3.421875zm7.8286743 1.890625q0.03125 0.984375 0.609375 1.59375q0.578125 0.59375 1.59375 0.59375q0.46875 0 0.8125 -0.109375q0.359375 -0.109375 0.59375 -0.296875q0.25 -0.1875 0.40625 -0.421875q0.15625 -0.25 0.25 -0.53125l0.984375 0.265625q-0.28125 0.921875 -1.03125 1.5q-0.75 0.578125 -2.03125 0.578125q-0.703125 0 -1.296875 -0.25q-0.59375 -0.25 -1.03125 -0.703125q-0.421875 -0.453125 -0.671875 -1.078125q-0.234375 -0.625 -0.234375 -1.375l0 -0.328125q0 -0.6875 0.25 -1.28125q0.25 -0.609375 0.6875 -1.03125q0.4375 -0.4375 1.03125 -0.6875q0.59375 -0.25 1.28125 -0.25q0.8125 0 1.40625 0.296875q0.59375 0.296875 0.96875 0.75q0.390625 0.4375 0.5625 0.953125q0.1875 0.515625 0.1875 0.953125l0 0.859375l-5.328125 0zm2.203125 -2.828125q-0.4375 0 -0.8125 0.140625q-0.375 0.140625 -0.671875 0.390625q-0.28125 0.25 -0.46875 0.59375q-0.171875 0.34375 -0.21875 0.75l4.25 0q-0.015625 -0.4375 -0.203125 -0.78125q-0.171875 -0.34375 -0.46875 -0.578125q-0.28125 -0.25 -0.65625 -0.375q-0.359375 -0.140625 -0.75 -0.140625zm10.219238 4.796875l-0.15625 0q-0.328125 0.609375 -0.890625 0.90625q-0.546875 0.296875 -1.203125 0.296875q-0.65625 0 -1.25 -0.21875q-0.578125 -0.234375 -1.03125 -0.65625q-0.4375 -0.4375 -0.703125 -1.0625q-0.265625 -0.640625 -0.265625 -1.453125l0 -0.203125q0 -0.8125 0.265625 -1.4375q0.265625 -0.640625 0.703125 -1.0625q0.453125 -0.4375 1.03125 -0.65625q0.59375 -0.234375 1.234375 -0.234375q0.71875 0 1.25 0.3125q0.546875 0.3125 0.859375 0.90625l0.15625 0l0 -1.03125l1.03125 0l0 8.234375q0 0.453125 -0.28125 0.75q-0.28125 0.296875 -0.734375 0.296875l-4.3125 0l0 -0.96875l3.9375 0q0.359375 0 0.359375 -0.390625l0 -2.328125zm-2.21875 0.21875q0.46875 0 0.859375 -0.171875q0.40625 -0.171875 0.703125 -0.484375q0.3125 -0.328125 0.484375 -0.765625q0.171875 -0.453125 0.171875 -1.0l0 -0.171875q0 -0.53125 -0.171875 -0.96875q-0.171875 -0.453125 -0.484375 -0.765625q-0.296875 -0.328125 -0.703125 -0.5q-0.40625 -0.1875 -0.859375 -0.1875q-0.46875 0 -0.875 0.171875q-0.40625 0.171875 -0.703125 0.5q-0.296875 0.3125 -0.46875 0.765625q-0.15625 0.4375 -0.15625 0.96875l0 0.203125q0 0.5625 0.15625 1.0q0.171875 0.4375 0.46875 0.75q0.296875 0.3125 0.6875 0.484375q0.40625 0.171875 0.890625 0.171875zm15.563599 -7.78125q0 -0.390625 0.265625 -0.65625q0.28125 -0.28125 0.65625 -0.28125q0.390625 0 0.65625 0.28125q0.28125 0.265625 0.28125 0.65625q0 0.375 -0.28125 0.65625q-0.265625 0.265625 -0.65625 0.265625q-0.375 0 -0.65625 -0.265625q-0.265625 -0.28125 -0.265625 -0.65625zm-1.90625 7.625l2.328125 0l0 -4.703125l-2.078125 0l0 -0.953125l3.109375 0l0 5.65625l2.171875 0l0 0.953125l-5.53125 0l0 -0.953125zm9.047424 0.953125l-1.046875 0l0 -6.609375l1.046875 0l0 1.125l0.15625 0q0.609375 -1.3125 2.125 -1.3125q1.15625 0 1.828125 0.71875q0.6875 0.703125 0.6875 2.140625l0 3.9375l-1.046875 0l0 -3.734375q0 -1.03125 -0.46875 -1.546875q-0.453125 -0.53125 -1.265625 -0.53125q-0.9375 0 -1.484375 0.65625q-0.53125 0.640625 -0.53125 1.71875l0 3.4375z" fill-rule="nonzero"/><path fill="#000000" d="m630.0923 384.099q0 -0.453125 -0.1875 -0.796875q-0.171875 -0.34375 -0.484375 -0.5625q-0.3125 -0.234375 -0.71875 -0.359375q-0.390625 -0.125 -0.828125 -0.125q-0.390625 0 -0.734375 0.109375q-0.34375 0.09375 -0.625 0.28125q-0.265625 0.1875 -0.421875 0.46875q-0.15625 0.265625 -0.15625 0.625l0 0.078125q0 0.390625 0.15625 0.671875q0.15625 0.265625 0.46875 0.46875q0.3125 0.1875 0.78125 0.3125q0.46875 0.125 1.09375 0.21875q1.46875 0.21875 2.15625 0.859375q0.703125 0.625 0.703125 1.703125l0 0.15625q0 0.59375 -0.21875 1.09375q-0.203125 0.5 -0.609375 0.859375q-0.40625 0.359375 -1.015625 0.5625q-0.59375 0.203125 -1.375 0.203125q-0.890625 0 -1.578125 -0.25q-0.6875 -0.265625 -1.15625 -0.71875q-0.453125 -0.46875 -0.703125 -1.09375q-0.234375 -0.625 -0.234375 -1.34375l0 -0.40625l1.125 0l0 0.3125q0 1.234375 0.671875 1.84375q0.671875 0.609375 1.875 0.609375q1.03125 0 1.5625 -0.453125q0.53125 -0.453125 0.53125 -1.21875l0 -0.078125q0 -0.734375 -0.546875 -1.125q-0.53125 -0.390625 -1.75 -0.5625q-0.703125 -0.09375 -1.28125 -0.28125q-0.5625 -0.1875 -0.96875 -0.5q-0.390625 -0.3125 -0.609375 -0.75q-0.203125 -0.453125 -0.203125 -1.046875l0 -0.15625q0 -0.546875 0.21875 -1.0q0.234375 -0.453125 0.640625 -0.78125q0.40625 -0.34375 0.96875 -0.515625q0.578125 -0.1875 1.25 -0.1875q0.78125 0 1.40625 0.234375q0.625 0.21875 1.046875 0.609375q0.421875 0.375 0.640625 0.890625q0.21875 0.5 0.21875 1.0625l0 0.5625l-1.109375 0l0 -0.484375zm5.3911743 3.359375l-0.234375 0l-2.921875 -6.046875l1.25 0l2.390625 5.09375l0.15625 0l2.390625 -5.09375l1.25 0l-2.921875 6.046875l-0.234375 0l0 3.28125l-1.125 0l0 -3.28125zm10.922363 -3.359375q0 -0.453125 -0.1875 -0.796875q-0.171875 -0.34375 -0.484375 -0.5625q-0.3125 -0.234375 -0.71875 -0.359375q-0.390625 -0.125 -0.828125 -0.125q-0.390625 0 -0.734375 0.109375q-0.34375 0.09375 -0.625 0.28125q-0.265625 0.1875 -0.421875 0.46875q-0.15625 0.265625 -0.15625 0.625l0 0.078125q0 0.390625 0.15625 0.671875q0.15625 0.265625 0.46875 0.46875q0.3125 0.1875 0.78125 0.3125q0.46875 0.125 1.09375 0.21875q1.46875 0.21875 2.15625 0.859375q0.703125 0.625 0.703125 1.703125l0 0.15625q0 0.59375 -0.21875 1.09375q-0.203125 0.5 -0.609375 0.859375q-0.40625 0.359375 -1.015625 0.5625q-0.59375 0.203125 -1.375 0.203125q-0.890625 0 -1.578125 -0.25q-0.6875 -0.265625 -1.15625 -0.71875q-0.453125 -0.46875 -0.703125 -1.09375q-0.234375 -0.625 -0.234375 -1.34375l0 -0.40625l1.125 0l0 0.3125q0 1.234375 0.671875 1.84375q0.671875 0.609375 1.875 0.609375q1.03125 0 1.5625 -0.453125q0.53125 -0.453125 0.53125 -1.21875l0 -0.078125q0 -0.734375 -0.546875 -1.125q-0.53125 -0.390625 -1.75 -0.5625q-0.703125 -0.09375 -1.28125 -0.28125q-0.5625 -0.1875 -0.96875 -0.5q-0.390625 -0.3125 -0.609375 -0.75q-0.203125 -0.453125 -0.203125 -1.046875l0 -0.15625q0 -0.546875 0.21875 -1.0q0.234375 -0.453125 0.640625 -0.78125q0.40625 -0.34375 0.96875 -0.515625q0.578125 -0.1875 1.25 -0.1875q0.78125 0 1.40625 0.234375q0.625 0.21875 1.046875 0.609375q0.421875 0.375 0.640625 0.890625q0.21875 0.5 0.21875 1.0625l0 0.5625l-1.109375 0l0 -0.484375zm2.8442993 7.28125l6.21875 0l0 0.953125l-6.21875 0l0 -0.953125zm11.313049 -1.5q0.578125 0 0.984375 -0.1875q0.40625 -0.1875 0.65625 -0.515625q0.265625 -0.328125 0.390625 -0.75q0.140625 -0.421875 0.140625 -0.890625l0 -0.15625l1.109375 0l0 0.15625q0 0.703125 -0.21875 1.328125q-0.203125 0.625 -0.625 1.09375q-0.40625 0.453125 -1.015625 0.71875q-0.609375 0.25 -1.421875 0.25q-1.546875 0 -2.40625 -0.96875q-0.859375 -0.984375 -0.859375 -2.84375l0 -2.078125q0 -1.8125 0.859375 -2.8125q0.859375 -1.0 2.40625 -1.0q0.8125 0 1.421875 0.265625q0.609375 0.25 1.015625 0.71875q0.421875 0.453125 0.625 1.078125q0.21875 0.609375 0.21875 1.328125l0 0.15625l-1.109375 0l0 -0.15625q-0.015625 -0.453125 -0.140625 -0.875q-0.125 -0.4375 -0.390625 -0.765625q-0.265625 -0.328125 -0.671875 -0.515625q-0.390625 -0.203125 -0.96875 -0.203125q-1.078125 0 -1.625 0.796875q-0.53125 0.78125 -0.53125 2.0625l0 1.921875q0 1.375 0.53125 2.109375q0.546875 0.734375 1.625 0.734375zm5.1880493 -8.46875l1.125 0l0 8.28125l4.875 0l0 1.046875l-6.0 0l0 -9.328125zm9.312988 9.328125l-1.125 0l0 -9.328125l1.125 0l0 4.125l0.296875 0l3.59375 -4.125l1.375 0l0 0.078125l-3.859375 4.5l0 0.171875l4.03125 4.5l0 0.078125l-1.421875 0l-3.71875 -4.15625l-0.296875 0l0 4.15625z" fill-rule="nonzero"/><path fill="#000000" fill-opacity="0.0" d="m218.54724 21.139107l78.4252 0l0 35.559055l-78.4252 0z" fill-rule="evenodd"/><path fill="#000000" d="m233.50037 41.814106l-0.15625 0q-0.3125 0.671875 -0.890625 1.0q-0.5625 0.3125 -1.1875 0.3125q-0.65625 0 -1.21875 -0.21875q-0.546875 -0.21875 -0.96875 -0.65625q-0.421875 -0.4375 -0.671875 -1.0625q-0.234375 -0.625 -0.234375 -1.453125l0 -0.203125q0 -0.8125 0.234375 -1.4375q0.25 -0.640625 0.671875 -1.0625q0.421875 -0.4375 0.96875 -0.65625q0.5625 -0.234375 1.1875 -0.234375q0.6875 0 1.234375 0.296875q0.5625 0.296875 0.875 0.921875l0.15625 0l0 -1.03125l1.046875 0l0 5.25q0 0.40625 0.359375 0.40625l0.328125 0l0 0.953125l-0.703125 0q-0.453125 0 -0.75 -0.296875q-0.28125 -0.296875 -0.28125 -0.75l0 -0.078125zm-2.125 0.328125q0.46875 0 0.859375 -0.171875q0.390625 -0.171875 0.671875 -0.484375q0.28125 -0.328125 0.4375 -0.765625q0.15625 -0.453125 0.15625 -1.0l0 -0.171875q0 -0.53125 -0.15625 -0.96875q-0.15625 -0.453125 -0.453125 -0.765625q-0.28125 -0.328125 -0.671875 -0.5q-0.390625 -0.1875 -0.84375 -0.1875q-0.46875 0 -0.859375 0.171875q-0.390625 0.171875 -0.671875 0.484375q-0.28125 0.3125 -0.453125 0.765625q-0.15625 0.453125 -0.15625 0.984375l0 0.203125q0 1.140625 0.59375 1.78125q0.59375 0.625 1.546875 0.625zm6.859909 -4.109375q0 0.484375 0.40625 0.734375q0.40625 0.25 1.484375 0.328125q1.15625 0.09375 1.765625 0.5625q0.609375 0.453125 0.609375 1.328125l0 0.09375q0 0.46875 -0.203125 0.859375q-0.1875 0.375 -0.53125 0.640625q-0.328125 0.265625 -0.8125 0.40625q-0.484375 0.140625 -1.0625 0.140625q-0.78125 0 -1.328125 -0.203125q-0.546875 -0.21875 -0.921875 -0.546875q-0.359375 -0.34375 -0.546875 -0.765625q-0.1875 -0.4375 -0.21875 -0.890625l0.984375 -0.234375q0.0625 0.765625 0.578125 1.234375q0.53125 0.453125 1.390625 0.453125q0.734375 0 1.171875 -0.28125q0.453125 -0.296875 0.453125 -0.8125q0 -0.5625 -0.4375 -0.796875q-0.4375 -0.25 -1.421875 -0.3125q-1.140625 -0.078125 -1.765625 -0.53125q-0.609375 -0.453125 -0.609375 -1.328125l0 -0.078125q0 -0.46875 0.203125 -0.8125q0.203125 -0.359375 0.53125 -0.59375q0.34375 -0.25 0.765625 -0.359375q0.4375 -0.125 0.90625 -0.125q0.65625 0 1.140625 0.1875q0.5 0.171875 0.828125 0.46875q0.328125 0.28125 0.5 0.65625q0.1875 0.359375 0.25 0.734375l-0.984375 0.25q-0.078125 -0.640625 -0.53125 -1.0q-0.4375 -0.359375 -1.15625 -0.359375q-0.28125 0 -0.546875 0.0625q-0.25 0.046875 -0.453125 0.171875q-0.203125 0.125 -0.328125 0.3125q-0.109375 0.171875 -0.109375 0.40625zm11.578659 3.703125l-0.15625 0q-0.3125 0.640625 -0.84375 1.015625q-0.515625 0.375 -1.3125 0.375q-0.546875 0 -1.015625 -0.1875q-0.453125 -0.171875 -0.78125 -0.53125q-0.328125 -0.359375 -0.515625 -0.890625q-0.171875 -0.53125 -0.171875 -1.25l0 -3.9375l1.046875 0l0 3.8125q0 1.03125 0.421875 1.515625q0.421875 0.484375 1.3125 0.484375q0.9375 0 1.46875 -0.640625q0.546875 -0.65625 0.546875 -1.734375l0 -3.4375l1.046875 0l0 8.234375q0 0.453125 -0.296875 0.75q-0.28125 0.296875 -0.734375 0.296875l-3.765625 0l0 -0.96875l3.390625 0q0.359375 0 0.359375 -0.390625l0 -2.515625zm4.406784 1.203125l-1.046875 0l0 -6.609375l1.046875 0l0 1.125l0.15625 0q0.609375 -1.3125 2.1250153 -1.3125q1.15625 0 1.828125 0.71875q0.6875 0.703125 0.6875 2.140625l0 3.9375l-1.046875 0l0 -3.734375q0 -1.03125 -0.46875 -1.546875q-0.453125 -0.53125 -1.265625 -0.53125q-0.93751526 0 -1.4843903 0.65625q-0.53125 0.640625 -0.53125 1.71875l0 3.4375zm13.297409 -2.34375q-0.109375 0.546875 -0.375 1.015625q-0.25 0.46875 -0.65625 0.8125q-0.390625 0.328125 -0.9375 0.515625q-0.53125 0.1875 -1.171875 0.1875q-0.703125 0 -1.328125 -0.21875q-0.609375 -0.234375 -1.078125 -0.671875q-0.46875 -0.4375 -0.75 -1.0625q-0.265625 -0.625 -0.265625 -1.4375l0 -0.15625q0 -0.796875 0.265625 -1.4375q0.28125 -0.640625 0.75 -1.078125q0.46875 -0.4375 1.078125 -0.671875q0.625 -0.25 1.328125 -0.25q0.625 0 1.15625 0.1875q0.53125 0.1875 0.9375 0.53125q0.40625 0.328125 0.65625 0.796875q0.265625 0.46875 0.359375 1.015625l-1.03125 0.234375q-0.046875 -0.34375 -0.203125 -0.671875q-0.140625 -0.328125 -0.40625 -0.5625q-0.265625 -0.25 -0.640625 -0.390625q-0.359375 -0.15625 -0.859375 -0.15625q-0.484375 0 -0.90625 0.1875q-0.40625 0.171875 -0.734375 0.5q-0.3125 0.328125 -0.5 0.78125q-0.171875 0.453125 -0.171875 0.984375l0 0.15625q0 0.5625 0.171875 1.015625q0.1875 0.4375 0.5 0.75q0.328125 0.296875 0.75 0.46875q0.421875 0.171875 0.921875 0.171875q0.484375 0 0.84375 -0.15625q0.375 -0.15625 0.625 -0.390625q0.265625 -0.25 0.421875 -0.5625q0.15625 -0.328125 0.203125 -0.671875l1.046875 0.234375z" fill-rule="nonzero"/><path fill="#000000" fill-opacity="0.0" d="m223.47113 83.485565l78.4252 0l0 35.55905l-78.4252 0z" fill-rule="evenodd"/><path fill="#000000" d="m238.42426 104.16056l-0.15625 0q-0.3125 0.671875 -0.890625 1.0q-0.5625 0.3125 -1.1875 0.3125q-0.65625 0 -1.21875 -0.21875q-0.546875 -0.21875 -0.96875 -0.65625q-0.421875 -0.4375 -0.671875 -1.0625q-0.234375 -0.625 -0.234375 -1.453125l0 -0.203125q0 -0.8125 0.234375 -1.4375q0.25 -0.640625 0.671875 -1.0625q0.421875 -0.4375 0.96875 -0.65625q0.5625 -0.234375 1.1875 -0.234375q0.6875 0 1.234375 0.296875q0.5625 0.296875 0.875 0.921875l0.15625 0l0 -1.03125l1.046875 0l0 5.25q0 0.40625 0.359375 0.40625l0.328125 0l0 0.953125l-0.703125 0q-0.453125 0 -0.75 -0.296875q-0.28125 -0.296875 -0.28125 -0.75l0 -0.078125zm-2.125 0.328125q0.46875 0 0.859375 -0.171875q0.390625 -0.171875 0.671875 -0.484375q0.28125 -0.328125 0.4375 -0.765625q0.15625 -0.453125 0.15625 -1.0l0 -0.171875q0 -0.53125 -0.15625 -0.96875q-0.15625 -0.453125 -0.453125 -0.765625q-0.28125 -0.328125 -0.671875 -0.5q-0.390625 -0.1875 -0.84375 -0.1875q-0.46875 0 -0.859375 0.171875q-0.390625 0.171875 -0.671875 0.484375q-0.28125 0.3125 -0.453125 0.765625q-0.15625 0.453125 -0.15625 0.984375l0 0.203125q0 1.140625 0.59375 1.78125q0.59375 0.625 1.546875 0.625zm6.859909 -4.109375q0 0.484375 0.40625 0.734375q0.40625 0.25 1.484375 0.328125q1.15625 0.09375 1.765625 0.5625q0.609375 0.453125 0.609375 1.328125l0 0.09375q0 0.46875 -0.203125 0.859375q-0.1875 0.375 -0.53125 0.640625q-0.328125 0.265625 -0.8125 0.40625q-0.484375 0.140625 -1.0625 0.140625q-0.78125 0 -1.328125 -0.203125q-0.546875 -0.21875 -0.921875 -0.546875q-0.359375 -0.34375 -0.546875 -0.765625q-0.1875 -0.4375 -0.21875 -0.890625l0.984375 -0.234375q0.0625 0.765625 0.578125 1.234375q0.53125 0.453125 1.390625 0.453125q0.734375 0 1.171875 -0.28125q0.453125 -0.296875 0.453125 -0.8125q0 -0.5625 -0.4375 -0.796875q-0.4375 -0.25 -1.421875 -0.3125q-1.140625 -0.078125 -1.765625 -0.53125q-0.609375 -0.453125 -0.609375 -1.328125l0 -0.078125q0 -0.46875 0.203125 -0.8125q0.203125 -0.359375 0.53125 -0.59375q0.34375 -0.25 0.765625 -0.359375q0.4375 -0.125 0.90625 -0.125q0.65625 0 1.140625 0.1875q0.5 0.171875 0.828125 0.46875q0.328125 0.28125 0.5 0.65625q0.1875 0.359375 0.25 0.734375l-0.984375 0.25q-0.078125 -0.640625 -0.53125 -1.0q-0.4375 -0.359375 -1.15625 -0.359375q-0.28125 0 -0.546875 0.0625q-0.25 0.046875 -0.453125 0.171875q-0.203125 0.125 -0.328125 0.3125q-0.109375 0.171875 -0.109375 0.40625zm11.578659 3.703125l-0.15625 0q-0.3125 0.640625 -0.84375 1.015625q-0.515625 0.375 -1.3125 0.375q-0.546875 0 -1.015625 -0.1875q-0.453125 -0.171875 -0.78125 -0.53125q-0.328125 -0.359375 -0.515625 -0.890625q-0.171875 -0.53125 -0.171875 -1.25l0 -3.9375l1.046875 0l0 3.8125q0 1.03125 0.421875 1.515625q0.421875 0.484375 1.3125 0.484375q0.9375 0 1.46875 -0.640625q0.546875 -0.65625 0.546875 -1.734375l0 -3.4375l1.046875 0l0 8.234375q0 0.453125 -0.296875 0.75q-0.28125 0.296875 -0.734375 0.296875l-3.765625 0l0 -0.96875l3.390625 0q0.359375 0 0.359375 -0.390625l0 -2.515625zm4.406769 1.203125l-1.046875 0l0 -6.609375l1.046875 0l0 1.125l0.15625 0q0.609375 -1.3125 2.125 -1.3125q1.15625 0 1.828125 0.71875q0.6875 0.703125 0.6875 2.140625l0 3.9375l-1.046875 0l0 -3.734375q0 -1.03125 -0.46875 -1.546875q-0.453125 -0.53125 -1.265625 -0.53125q-0.9375 0 -1.484375 0.65625q-0.53125 0.640625 -0.53125 1.71875l0 3.4375zm13.297424 -2.34375q-0.109375 0.546875 -0.375 1.015625q-0.25 0.46875 -0.65625 0.8125q-0.390625 0.328125 -0.9375 0.515625q-0.53125 0.1875 -1.171875 0.1875q-0.703125 0 -1.328125 -0.21875q-0.609375 -0.234375 -1.078125 -0.671875q-0.46875 -0.4375 -0.75 -1.0625q-0.265625 -0.625 -0.265625 -1.4375l0 -0.15625q0 -0.796875 0.265625 -1.4375q0.28125 -0.640625 0.75 -1.078125q0.46875 -0.4375 1.078125 -0.671875q0.625 -0.25 1.328125 -0.25q0.625 0 1.15625 0.1875q0.53125 0.1875 0.9375 0.53125q0.40625 0.328125 0.65625 0.796875q0.265625 0.46875 0.359375 1.015625l-1.03125 0.234375q-0.046875 -0.34375 -0.203125 -0.671875q-0.140625 -0.328125 -0.40625 -0.5625q-0.265625 -0.25 -0.640625 -0.390625q-0.359375 -0.15625 -0.859375 -0.15625q-0.484375 0 -0.90625 0.1875q-0.40625 0.171875 -0.734375 0.5q-0.3125 0.328125 -0.5 0.78125q-0.171875 0.453125 -0.171875 0.984375l0 0.15625q0 0.5625 0.171875 1.015625q0.1875 0.4375 0.5 0.75q0.328125 0.296875 0.75 0.46875q0.421875 0.171875 0.921875 0.171875q0.484375 0 0.84375 -0.15625q0.375 -0.15625 0.625 -0.390625q0.265625 -0.25 0.421875 -0.5625q0.15625 -0.328125 0.203125 -0.671875l1.046875 0.234375z" fill-rule="nonzero"/><path fill="#000000" fill-opacity="0.0" d="m444.44095 350.33334l0 -120.0945l35.55905 0l0 120.0945z" fill-rule="evenodd"/><path fill="#000000" d="m463.92844 335.25522l0 4.0l2.3125 0.671875l0 1.203125l-9.328125 -2.828125l0 -2.09375l9.328125 -2.828125l0 1.203125l-2.3125 0.671875zm-6.53125 2.078125l5.484375 1.609375l0 -3.375l-5.484375 1.609375l0 0.15625zm-0.484375 -5.1255493l0 -3.0625q0 -1.734375 0.828125 -2.53125q0.828125 -0.8125 2.640625 -0.8125l2.390625 0q1.8125 0 2.640625 0.8125q0.828125 0.796875 0.828125 2.53125l0 3.0625l-1.046875 0l0 -0.796875l-7.25 0l0 0.796875l-1.03125 0zm8.28125 -2.90625q0 -0.609375 -0.109375 -1.0625q-0.125 -0.453125 -0.40625 -0.734375q-0.296875 -0.296875 -0.765625 -0.4375q-0.484375 -0.140625 -1.21875 -0.140625l-2.234375 0q-0.734375 0 -1.21875 0.140625q-0.484375 0.140625 -0.765625 0.4375q-0.28125 0.28125 -0.40625 0.734375q-0.125 0.453125 -0.125 1.0625l0 0.984375l7.25 0l0 -0.984375zm-8.28125 -5.250519l0 -3.0625q0 -1.734375 0.828125 -2.53125q0.828125 -0.8125 2.640625 -0.8125l2.390625 0q1.8125 0 2.640625 0.8125q0.828125 0.796875 0.828125 2.53125l0 3.0625l-1.046875 0l0 -0.796875l-7.25 0l0 0.796875l-1.03125 0zm8.28125 -2.90625q0 -0.609375 -0.109375 -1.0625q-0.125 -0.453125 -0.40625 -0.734375q-0.296875 -0.296875 -0.765625 -0.4375q-0.484375 -0.140625 -1.21875 -0.140625l-2.234375 0q-0.734375 0 -1.21875 0.140625q-0.484375 0.140625 -0.765625 0.4375q-0.28125 0.28125 -0.40625 0.734375q-0.125 0.453125 -0.125 1.0625l0 0.984375l7.25 0l0 -0.984375zm1.046875 -11.281799l0 1.125l-3.125 0q-0.34375 0 -0.53125 0.15625q-0.1875 0.15625 -0.1875 0.5625l0 2.90625l3.84375 0l0 1.109375l-9.328125 0l0 -3.328125q0 -0.71875 0.203125 -1.25q0.203125 -0.53125 0.5625 -0.875q0.34375 -0.359375 0.8125 -0.53125q0.453125 -0.1875 0.953125 -0.1875l0.40625 0q0.515625 0 1.03125 0.28125q0.515625 0.28125 0.796875 0.890625l0.171875 0q0.0625 -0.40625 0.3125 -0.625q0.25 -0.234375 0.71875 -0.234375l3.359375 0zm-4.875 4.75l0 -2.078125q0 -0.953125 -0.40625 -1.40625q-0.40625 -0.46875 -1.203125 -0.46875l-0.234375 0q-0.703125 0 -1.140625 0.46875q-0.4375 0.453125 -0.4375 1.40625l0 2.078125l3.421875 0zm-3.703125 -17.282318q-0.390625 0 -0.65625 -0.265625q-0.28125 -0.28125 -0.28125 -0.65625q0 -0.390625 0.28125 -0.65625q0.265625 -0.28125 0.65625 -0.28125q0.375 0 0.65625 0.28125q0.265625 0.265625 0.265625 0.65625q0 0.375 -0.265625 0.65625q-0.28125 0.265625 -0.65625 0.265625zm7.625 1.90625l0 -2.328125l-4.703125 0l0 2.078125l-0.953125 0l0 -3.109375l5.65625 0l0 -2.171875l0.953125 0l0 5.53125l-0.953125 0zm0.953125 -9.047394l0 1.046875l-6.609375 0l0 -1.046875l1.125 0l0 -0.15625q-1.3125 -0.609375 -1.3125 -2.125q0 -1.15625 0.71875 -1.828125q0.703125 -0.6875 2.140625 -0.6875l3.9375 0l0 1.046875l-3.734375 0q-1.03125 0 -1.546875 0.46875q-0.53125 0.453125 -0.53125 1.265625q0 0.9375 0.65625 1.484375q0.640625 0.53125 1.71875 0.53125l3.4375 0zm-6.640625 -20.391693q-0.453125 0 -0.796875 0.1875q-0.34375 0.171875 -0.5625 0.484375q-0.234375 0.3125 -0.359375 0.71875q-0.125 0.390625 -0.125 0.828125q0 0.390625 0.109375 0.734375q0.09375 0.34375 0.28125 0.625q0.1875 0.265625 0.46875 0.421875q0.265625 0.15625 0.625 0.15625l0.078125 0q0.390625 0 0.671875 -0.15625q0.265625 -0.15625 0.46875 -0.46875q0.1875 -0.3125 0.3125 -0.78125q0.125 -0.46875 0.21875 -1.09375q0.21875 -1.46875 0.859375 -2.15625q0.625 -0.703125 1.703125 -0.703125l0.15625 0q0.59375 0 1.09375 0.21875q0.5 0.203125 0.859375 0.609375q0.359375 0.40625 0.5625 1.015625q0.203125 0.59375 0.203125 1.375q0 0.890625 -0.25 1.578125q-0.265625 0.6875 -0.71875 1.15625q-0.46875 0.453125 -1.09375 0.703125q-0.625 0.234375 -1.34375 0.234375l-0.40625 0l0 -1.125l0.3125 0q1.234375 0 1.84375 -0.671875q0.609375 -0.671875 0.609375 -1.875q0 -1.03125 -0.453125 -1.5625q-0.453125 -0.53125 -1.21875 -0.53125l-0.078125 0q-0.734375 0 -1.125 0.546875q-0.390625 0.53125 -0.5625 1.75q-0.09375 0.703125 -0.28125 1.28125q-0.1875 0.5625 -0.5 0.96875q-0.3125 0.390625 -0.75 0.609375q-0.453125 0.203125 -1.046875 0.203125l-0.15625 0q-0.546875 0 -1.0 -0.21875q-0.453125 -0.234375 -0.78125 -0.640625q-0.34375 -0.40625 -0.515625 -0.96875q-0.1875 -0.578125 -0.1875 -1.25q0 -0.78125 0.234375 -1.40625q0.21875 -0.625 0.609375 -1.046875q0.375 -0.421875 0.890625 -0.640625q0.5 -0.21875 1.0625 -0.21875l0.5625 0l0 1.109375l-0.484375 0zm5.78125 -6.0005493q0 -0.578125 -0.1875 -0.984375q-0.1875 -0.40625 -0.515625 -0.65625q-0.328125 -0.265625 -0.75 -0.390625q-0.421875 -0.140625 -0.890625 -0.140625l-0.15625 0l0 -1.109375l0.15625 0q0.703125 0 1.328125 0.21875q0.625 0.203125 1.09375 0.625q0.453125 0.40625 0.71875 1.015625q0.25 0.609375 0.25 1.421875q0 1.546875 -0.96875 2.40625q-0.984375 0.859375 -2.84375 0.859375l-2.078125 0q-1.8125 0 -2.8125 -0.859375q-1.0 -0.859375 -1.0 -2.40625q0 -0.8125 0.265625 -1.421875q0.25 -0.609375 0.71875 -1.015625q0.453125 -0.421875 1.078125 -0.625q0.609375 -0.21875 1.328125 -0.21875l0.15625 0l0 1.109375l-0.15625 0q-0.453125 0.015625 -0.875 0.140625q-0.4375 0.125 -0.765625 0.390625q-0.328125 0.265625 -0.515625 0.671875q-0.203125 0.390625 -0.203125 0.96875q0 1.078125 0.796875 1.625q0.78125 0.53125 2.0625 0.53125l1.921875 0q1.375 0 2.109375 -0.53125q0.734375 -0.546875 0.734375 -1.625zm0.859375 -6.344269l0 1.125l-9.328125 0l0 -1.125l4.125 0l0 -0.296875l-4.125 -3.5937653l0 -1.375l0.078125 0l4.5 3.8593903l0.171875 0l4.5 -4.0312653l0.078125 0l0 1.421875l-4.15625 3.7187653l0 0.296875l4.15625 0z" fill-rule="nonzero"/><path fill="#000000" fill-opacity="0.0" d="m254.9042 176.54593l78.4252 0l0 35.55905l-78.4252 0z" fill-rule="evenodd"/><path fill="#000000" d="m269.85733 197.22093l-0.15625 0q-0.3125 0.671875 -0.890625 1.0q-0.5625 0.3125 -1.1875 0.3125q-0.65625 0 -1.21875 -0.21875q-0.546875 -0.21875 -0.96875 -0.65625q-0.421875 -0.4375 -0.671875 -1.0625q-0.234375 -0.625 -0.234375 -1.453125l0 -0.203125q0 -0.8125 0.234375 -1.4375q0.25 -0.640625 0.671875 -1.0625q0.421875 -0.4375 0.96875 -0.65625q0.5625 -0.234375 1.1875 -0.234375q0.6875 0 1.234375 0.296875q0.5625 0.296875 0.875 0.921875l0.15625 0l0 -1.03125l1.046875 0l0 5.25q0 0.40625 0.359375 0.40625l0.328125 0l0 0.953125l-0.703125 0q-0.453125 0 -0.75 -0.296875q-0.28125 -0.296875 -0.28125 -0.75l0 -0.078125zm-2.125 0.328125q0.46875 0 0.859375 -0.171875q0.390625 -0.171875 0.671875 -0.484375q0.28125 -0.328125 0.4375 -0.765625q0.15625 -0.453125 0.15625 -1.0l0 -0.171875q0 -0.53125 -0.15625 -0.96875q-0.15625 -0.453125 -0.453125 -0.765625q-0.28125 -0.328125 -0.671875 -0.5q-0.390625 -0.1875 -0.84375 -0.1875q-0.46875 0 -0.859375 0.171875q-0.390625 0.171875 -0.671875 0.484375q-0.28125 0.3125 -0.453125 0.765625q-0.15625 0.453125 -0.15625 0.984375l0 0.203125q0 1.140625 0.59375 1.78125q0.59375 0.625 1.546875 0.625zm6.859894 -4.109375q0 0.484375 0.40625 0.734375q0.40625 0.25 1.484375 0.328125q1.15625 0.09375 1.765625 0.5625q0.609375 0.453125 0.609375 1.328125l0 0.09375q0 0.46875 -0.203125 0.859375q-0.1875 0.375 -0.53125 0.640625q-0.328125 0.265625 -0.8125 0.40625q-0.484375 0.140625 -1.0625 0.140625q-0.78125 0 -1.328125 -0.203125q-0.546875 -0.21875 -0.921875 -0.546875q-0.359375 -0.34375 -0.546875 -0.765625q-0.1875 -0.4375 -0.21875 -0.890625l0.984375 -0.234375q0.0625 0.765625 0.578125 1.234375q0.53125 0.453125 1.390625 0.453125q0.734375 0 1.171875 -0.28125q0.453125 -0.296875 0.453125 -0.8125q0 -0.5625 -0.4375 -0.796875q-0.4375 -0.25 -1.421875 -0.3125q-1.140625 -0.078125 -1.765625 -0.53125q-0.609375 -0.453125 -0.609375 -1.328125l0 -0.078125q0 -0.46875 0.203125 -0.8125q0.203125 -0.359375 0.53125 -0.59375q0.34375 -0.25 0.765625 -0.359375q0.4375 -0.125 0.90625 -0.125q0.65625 0 1.140625 0.1875q0.5 0.171875 0.828125 0.46875q0.328125 0.28125 0.5 0.65625q0.1875 0.359375 0.25 0.734375l-0.984375 0.25q-0.078125 -0.640625 -0.53125 -1.0q-0.4375 -0.359375 -1.15625 -0.359375q-0.28125 0 -0.546875 0.0625q-0.25 0.046875 -0.453125 0.171875q-0.203125 0.125 -0.328125 0.3125q-0.109375 0.171875 -0.109375 0.40625zm11.578674 3.703125l-0.15625 0q-0.3125 0.640625 -0.84375 1.015625q-0.515625 0.375 -1.3125 0.375q-0.546875 0 -1.015625 -0.1875q-0.453125 -0.171875 -0.78125 -0.53125q-0.328125 -0.359375 -0.515625 -0.890625q-0.171875 -0.53125 -0.171875 -1.25l0 -3.9375l1.046875 0l0 3.8125q0 1.03125 0.421875 1.515625q0.421875 0.484375 1.3125 0.484375q0.9375 0 1.46875 -0.640625q0.546875 -0.65625 0.546875 -1.734375l0 -3.4375l1.046875 0l0 8.234375q0 0.453125 -0.296875 0.75q-0.28125 0.296875 -0.734375 0.296875l-3.765625 0l0 -0.96875l3.390625 0q0.359375 0 0.359375 -0.390625l0 -2.515625zm4.406769 1.203125l-1.046875 0l0 -6.609375l1.046875 0l0 1.125l0.15625 0q0.609375 -1.3125 2.125 -1.3125q1.15625 0 1.828125 0.71875q0.6875 0.703125 0.6875 2.140625l0 3.9375l-1.046875 0l0 -3.734375q0 -1.03125 -0.46875 -1.546875q-0.453125 -0.53125 -1.265625 -0.53125q-0.9375 0 -1.484375 0.65625q-0.53125 0.640625 -0.53125 1.71875l0 3.4375zm13.297424 -2.34375q-0.109375 0.546875 -0.375 1.015625q-0.25 0.46875 -0.65625 0.8125q-0.390625 0.328125 -0.9375 0.515625q-0.53125 0.1875 -1.171875 0.1875q-0.703125 0 -1.328125 -0.21875q-0.609375 -0.234375 -1.078125 -0.671875q-0.46875 -0.4375 -0.75 -1.0625q-0.265625 -0.625 -0.265625 -1.4375l0 -0.15625q0 -0.796875 0.265625 -1.4375q0.28125 -0.640625 0.75 -1.078125q0.46875 -0.4375 1.078125 -0.671875q0.625 -0.25 1.328125 -0.25q0.625 0 1.15625 0.1875q0.53125 0.1875 0.9375 0.53125q0.40625 0.328125 0.65625 0.796875q0.265625 0.46875 0.359375 1.015625l-1.03125 0.234375q-0.046875 -0.34375 -0.203125 -0.671875q-0.140625 -0.328125 -0.40625 -0.5625q-0.265625 -0.25 -0.640625 -0.390625q-0.359375 -0.15625 -0.859375 -0.15625q-0.484375 0 -0.90625 0.1875q-0.40625 0.171875 -0.734375 0.5q-0.3125 0.328125 -0.5 0.78125q-0.171875 0.453125 -0.171875 0.984375l0 0.15625q0 0.5625 0.171875 1.015625q0.1875 0.4375 0.5 0.75q0.328125 0.296875 0.75 0.46875q0.421875 0.171875 0.921875 0.171875q0.484375 0 0.84375 -0.15625q0.375 -0.15625 0.625 -0.390625q0.265625 -0.25 0.421875 -0.5625q0.15625 -0.328125 0.203125 -0.671875l1.046875 0.234375z" fill-rule="nonzero"/></g></svg>
\ No newline at end of file