Rename paper files
98
journal/.latexmkrc
Normal file
@@ -0,0 +1,98 @@
|
||||
#!/bin/env perl
|
||||
|
||||
# Shebang is only to get syntax highlighting right across GitLab, GitHub and IDEs.
|
||||
# This file is not meant to be run, but read by `latexmk`.
|
||||
|
||||
# ======================================================================================
|
||||
# Perl `latexmk` configuration file
|
||||
# ======================================================================================
|
||||
|
||||
# ======================================================================================
|
||||
# PDF Generation/Building/Compilation
|
||||
# ======================================================================================
|
||||
|
||||
@default_files=('dehaeze22_optim_robus_compl_filte.tex');
|
||||
|
||||
# PDF-generating modes are:
|
||||
# 1: pdflatex, as specified by $pdflatex variable (still largely in use)
|
||||
# 2: postscript conversion, as specified by the $ps2pdf variable (useless)
|
||||
# 3: dvi conversion, as specified by the $dvipdf variable (useless)
|
||||
# 4: lualatex, as specified by the $lualatex variable (best)
|
||||
# 5: xelatex, as specified by the $xelatex variable (second best)
|
||||
$pdf_mode = 1;
|
||||
|
||||
# Treat undefined references and citations as well as multiply defined references as
|
||||
# ERRORS instead of WARNINGS.
|
||||
# This is only checked in the *last* run, since naturally, there are undefined references
|
||||
# in initial runs.
|
||||
# This setting is potentially annoying when debugging/editing, but highly desirable
|
||||
# in the CI pipeline, where such a warning should result in a failed pipeline, since the
|
||||
# final document is incomplete/corrupted.
|
||||
#
|
||||
# However, I could not eradicate all warnings, so that `latexmk` currently fails with
|
||||
# this option enabled.
|
||||
# Specifically, `microtype` fails together with `fontawesome`/`fontawesome5`, see:
|
||||
# https://tex.stackexchange.com/a/547514/120853
|
||||
# The fix in that answer did not help.
|
||||
# Setting `verbose=silent` to mute `microtype` warnings did not work.
|
||||
# Switching between `fontawesome` and `fontawesome5` did not help.
|
||||
$warnings_as_errors = 0;
|
||||
|
||||
# Show used CPU time. Looks like: https://tex.stackexchange.com/a/312224/120853
|
||||
$show_time = 1;
|
||||
|
||||
# Default is 5; we seem to need more owed to the complexity of the document.
|
||||
# Actual documents probably don't need this many since they won't use all features,
|
||||
# plus won't be compiling from cold each time.
|
||||
$max_repeat=7;
|
||||
|
||||
# --shell-escape option (execution of code outside of latex) is required for the
|
||||
#'svg' package.
|
||||
# It converts raw SVG files to the PDF+PDF_TEX combo using InkScape.
|
||||
#
|
||||
# SyncTeX allows to jump between source (code) and output (PDF) in IDEs with support
|
||||
# (many have it). A value of `1` is enabled (gzipped), `-1` is enabled but uncompressed,
|
||||
# `0` is off.
|
||||
# Testing in VSCode w/ LaTeX Workshop only worked for the compressed version.
|
||||
# Adjust this as needed. Of course, only relevant for local use, no effect on a remote
|
||||
# CI pipeline (except for slower compilation, probably).
|
||||
#
|
||||
# %O and %S will forward Options and the Source file, respectively, given to latexmk.
|
||||
#
|
||||
# `set_tex_cmds` applies to all *latex commands (latex, xelatex, lualatex, ...), so
|
||||
# no need to specify these each. This allows to simply change `$pdf_mode` to get a
|
||||
# different engine. Check if this works with `latexmk --commands`.
|
||||
set_tex_cmds("--shell-escape -interaction=nonstopmode --synctex=1 %O %S");
|
||||
|
||||
# Use default pdf viewer
|
||||
$pdf_previewer = 'zathura';
|
||||
|
||||
# option 2 is same as 1 (run biber when necessary), but also deletes the
|
||||
# regeneratable bbl-file in a clenaup (`latexmk -c`). Do not use if original
|
||||
# bib file is not available!
|
||||
$bibtex_use = 1; # default: 1
|
||||
|
||||
# Change default `biber` call, help catch errors faster/clearer. See
|
||||
# https://web.archive.org/web/20200526101657/https://www.semipol.de/2018/06/12/latex-best-practices.html#database-entries
|
||||
$bibtex = "bibtex %S";
|
||||
|
||||
# ======================================================================================
|
||||
# Auxiliary Files
|
||||
# ======================================================================================
|
||||
|
||||
# Let latexmk know about generated files, so they can be used to detect if a
|
||||
# rerun is required, or be deleted in a cleanup.
|
||||
# loe: List of Examples (KOMAScript)
|
||||
# lol: List of Listings (`listings` and `minted` packages)
|
||||
# run.xml: biber runs
|
||||
# glg: glossaries log
|
||||
# glstex: generated from glossaries-extra
|
||||
push @generated_exts, 'loe', 'lol', 'run.xml', 'glg', 'glstex';
|
||||
|
||||
# Also delete the *.glstex files from package glossaries-extra. Problem is,
|
||||
# that that package generates files of the form "basename-digit.glstex" if
|
||||
# multiple glossaries are present. Latexmk looks for "basename.glstex" and so
|
||||
# does not find those. For that purpose, use wildcard.
|
||||
# Also delete files generated by gnuplot/pgfplots contour plots
|
||||
# (.dat, .script, .table).
|
||||
$clean_ext = "%R-*.glstex %R_contourtmp*.*";
|
6347
journal/IEEEtran.cls
Normal file
533
journal/dehaeze22_optim_robus_compl_filte.org
Normal file
@@ -0,0 +1,533 @@
|
||||
#+TITLE: Optimal and Robust Sensor Fusion
|
||||
:DRAWER:
|
||||
#+LATEX_CLASS: IEEEtran
|
||||
#+LATEX_CLASS_OPTIONS: [10pt,final,journal,a4paper]
|
||||
#+OPTIONS: toc:nil todo:nil
|
||||
#+STARTUP: overview
|
||||
|
||||
#+DATE: {{{time(%Y-%m-%d)}}}
|
||||
|
||||
#+AUTHOR: @@latex:\IEEEauthorblockN{Dehaeze Thomas}@@
|
||||
#+AUTHOR: @@latex:\IEEEauthorblockA{\textit{European Synchrotron Radiation Facility} \\@@
|
||||
#+AUTHOR: @@latex:Grenoble, France\\@@
|
||||
#+AUTHOR: @@latex:\textit{Precision Mechatronics Laboratory} \\@@
|
||||
#+AUTHOR: @@latex:\textit{University of Liege}, Belgium \\@@
|
||||
#+AUTHOR: @@latex:thomas.dehaeze@esrf.fr@@
|
||||
#+AUTHOR: @@latex:}\and@@
|
||||
#+AUTHOR: @@latex:\IEEEauthorblockN{Verma Mohit}@@
|
||||
#+AUTHOR: @@latex:\IEEEauthorblockA{\textit{BEAMS Department}\\@@
|
||||
#+AUTHOR: @@latex:\textit{Free University of Brussels}, Belgium\\@@
|
||||
#+AUTHOR: @@latex:\textit{Precision Mechatronics Laboratory} \\@@
|
||||
#+AUTHOR: @@latex:\textit{University of Liege}, Belgium \\@@
|
||||
#+AUTHOR: @@latex:mohitverma.serc@csir.res.in@@
|
||||
#+AUTHOR: @@latex:}\and@@
|
||||
#+AUTHOR: @@latex:\IEEEauthorblockN{Collette Christophe}@@
|
||||
#+AUTHOR: @@latex:\IEEEauthorblockA{\textit{BEAMS Department}\\@@
|
||||
#+AUTHOR: @@latex:\textit{Free University of Brussels}, Belgium\\@@
|
||||
#+AUTHOR: @@latex:\textit{Precision Mechatronics Laboratory} \\@@
|
||||
#+AUTHOR: @@latex:\textit{University of Liege}, Belgium \\@@
|
||||
#+AUTHOR: @@latex:ccollett@ulb.ac.be@@
|
||||
#+AUTHOR: @@latex:}@@
|
||||
|
||||
#+LATEX_HEADER: \IEEEoverridecommandlockouts
|
||||
#+LATEX_HEADER: \usepackage{cite}
|
||||
#+LATEX_HEADER: \usepackage{amsmath,amssymb,amsfonts}
|
||||
#+LATEX_HEADER: \usepackage{algorithmic}
|
||||
#+LATEX_HEADER: \usepackage{graphicx}
|
||||
#+LATEX_HEADER: \usepackage{textcomp}
|
||||
#+LATEX_HEADER: \usepackage{xcolor}
|
||||
#+LATEX_HEADER: \usepackage{cases}
|
||||
#+LATEX_HEADER: \usepackage{tabularx,siunitx,booktabs}
|
||||
#+LATEX_HEADER: \usepackage{algorithmic}
|
||||
#+LATEX_HEADER: \usepackage{import, hyperref}
|
||||
#+LATEX_HEADER: \renewcommand{\citedash}{--}
|
||||
|
||||
#+LATEX_HEADER_EXTRA: \usepackage{showframe}
|
||||
|
||||
#+LATEX_HEADER: \def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
|
||||
:END:
|
||||
|
||||
* Build :noexport:
|
||||
#+NAME: startblock
|
||||
#+BEGIN_SRC emacs-lisp :results none
|
||||
(add-to-list 'org-latex-classes
|
||||
'("IEEEtran"
|
||||
"\\documentclass{IEEEtran}"
|
||||
("\\section{%s}" . "\\section*{%s}")
|
||||
("\\subsection{%s}" . "\\subsection*{%s}")
|
||||
("\\subsubsection{%s}" . "\\subsubsection*{%s}")
|
||||
("\\paragraph{%s}" . "\\paragraph*{%s}")
|
||||
("\\subparagraph{%s}" . "\\subparagraph*{%s}"))
|
||||
)
|
||||
|
||||
;; Remove automatic org headings
|
||||
(defun my-latex-filter-removeOrgAutoLabels (text backend info)
|
||||
"Org-mode automatically generates labels for headings despite explicit use of `#+LABEL`. This filter forcibly removes all automatically generated org-labels in headings."
|
||||
(when (org-export-derived-backend-p backend 'latex)
|
||||
(replace-regexp-in-string "\\\\label{sec:org[a-f0-9]+}\n" "" text)))
|
||||
|
||||
(add-to-list 'org-export-filter-headline-functions
|
||||
'my-latex-filter-removeOrgAutoLabels)
|
||||
|
||||
;; Automatic delete org org-comments
|
||||
(defun delete-org-comments (backend)
|
||||
(loop for comment in (reverse (org-element-map (org-element-parse-buffer)
|
||||
'comment 'identity))
|
||||
do
|
||||
(setf (buffer-substring (org-element-property :begin comment)
|
||||
(org-element-property :end comment))
|
||||
"")))
|
||||
|
||||
;; add to export hook
|
||||
(add-hook 'org-export-before-processing-hook 'delete-org-comments)
|
||||
|
||||
;; Remove hypersetup
|
||||
(setq org-latex-with-hyperref nil)
|
||||
#+END_SRC
|
||||
|
||||
* Abstract :ignore:
|
||||
#+begin_abstract
|
||||
Abstract text to be done
|
||||
#+end_abstract
|
||||
|
||||
* Keywords :ignore:
|
||||
#+begin_IEEEkeywords
|
||||
Complementary Filters, Sensor Fusion, H-Infinity Synthesis
|
||||
#+end_IEEEkeywords
|
||||
|
||||
* Introduction
|
||||
<<sec:introduction>>
|
||||
|
||||
cite:mahony08_nonlin_compl_filter_special_orthog_group
|
||||
|
||||
- Section ref:sec:optimal_fusion
|
||||
- Section ref:sec:robust_fusion
|
||||
- Section ref:sec:optimal_robust_fusion
|
||||
- Section ref:sec:experimental_validation
|
||||
|
||||
* Optimal Super Sensor Noise: $\mathcal{H}_2$ Synthesis
|
||||
<<sec:optimal_fusion>>
|
||||
|
||||
** Sensor Model
|
||||
Let's consider a sensor measuring a physical quantity $x$ (Figure ref:fig:sensor_model_noise).
|
||||
The sensor has an internal dynamics which is here modelled with a Linear Time Invariant (LTI) system transfer function $G_i(s)$.
|
||||
|
||||
The noise of sensor can be described by the Power Spectral Density (PSD) $\Phi_{n_i}(\omega)$.
|
||||
|
||||
This is approximated by shaping a white noise with unitary PSD $\tilde{n}_i$ eqref:eq:unitary_sensor_noise_psd with a LTI transfer function $N_i(s)$:
|
||||
\begin{equation}
|
||||
\begin{aligned}
|
||||
\Phi_{n_i}(\omega) &= \left| N_i(j\omega) \right|^2 \Phi_{\tilde{n}_i}(\omega) \\
|
||||
&= \left| N_i(j\omega) \right|^2
|
||||
\end{aligned}
|
||||
\end{equation}
|
||||
|
||||
#+name: eq:unitary_sensor_noise_psd
|
||||
\begin{equation}
|
||||
\Phi_{\tilde{n}_i}(\omega) = 1
|
||||
\end{equation}
|
||||
|
||||
The output of the sensor $v_i$:
|
||||
\begin{equation}
|
||||
v_i = \left( G_i \right) x + \left( G_i N_i \right) \tilde{n}_i
|
||||
\end{equation}
|
||||
|
||||
In order to obtain an estimate $\hat{x}_i$ of $x$, a model $\hat{G}_i$ of the (true) sensor dynamics $G_i$ is inverted and applied at the output (Figure ref:fig:sensor_model_noise):
|
||||
\begin{equation}
|
||||
\hat{x}_i = \left( \hat{G}_i^{-1} G_i \right) x + \left( \hat{G}_i^{-1} G_i N_i \right) \tilde{n}_i
|
||||
\end{equation}
|
||||
|
||||
#+name: fig:sensor_model_noise
|
||||
#+caption: Sensor Model
|
||||
#+attr_latex: :scale 1
|
||||
[[file:figs/sensor_model_noise.pdf]]
|
||||
|
||||
** Sensor Fusion Architecture
|
||||
Let's now consider two sensors measuring the same physical quantity $x$ but with different dynamics $(G_1, G_2)$ and noise characteristics $(N_1, N_2)$ (Figure ref:fig:sensor_fusion_noise_arch).
|
||||
|
||||
The noise sources $\tilde{n}_1$ and $\tilde{n}_2$ are considered to be uncorrelated.
|
||||
|
||||
#+name: fig:sensor_fusion_noise_arch
|
||||
#+caption: Sensor Fusion Architecture with sensor noise
|
||||
#+attr_latex: :scale 1
|
||||
[[file:figs/sensor_fusion_noise_arch.pdf]]
|
||||
|
||||
The output of both sensors $(v1,v2)$ are then passed through the inverse of the sensor model to obtained two estimates $(\hat{x}_1, \hat{x}_2)$ of $x$.
|
||||
These two estimates are then filtered out by two filters $H_1$ and $H_2$ and summed to gives the super sensor estimate $\hat{x}$.
|
||||
|
||||
\begin{equation}
|
||||
\begin{split}
|
||||
\hat{x} = {}&\left( H_1 \hat{G}_1^{-1} G_1 + H_2 \hat{G}_2^{-1} G_2 \right) x \\
|
||||
&+ \left( H_1 \hat{G}_1^{-1} G_1 N_1 \right) \tilde{n}_1 + \left( H_2 \hat{G}_2^{-1} G_2 N_2 \right) \tilde{n}_2
|
||||
\end{split}
|
||||
\end{equation}
|
||||
|
||||
Suppose the sensor dynamical model $\hat{G}_i$ is perfect:
|
||||
\begin{equation}
|
||||
\hat{G}_i = G_i
|
||||
\end{equation}
|
||||
|
||||
We considered here complementary filters:
|
||||
\begin{equation}
|
||||
H_1(s) + H_2(s) = 1
|
||||
\end{equation}
|
||||
|
||||
In such case, the super sensor estimate $\hat{x}$ is equal to $x$ plus the noise of the individual sensors filtered out by the complementary filters:
|
||||
\begin{equation}
|
||||
\hat{x} = x + \left( H_1 N_1 \right) \tilde{n}_1 + \left( H_2 N_2 \right) \tilde{n}_2
|
||||
\end{equation}
|
||||
|
||||
** Super Sensor Noise
|
||||
Let's note $n$ the super sensor noise.
|
||||
\begin{equation}
|
||||
n = \left( H_1 N_1 \right) \tilde{n}_1 + \left( H_2 N_2 \right) \tilde{n}_2
|
||||
\end{equation}
|
||||
|
||||
As the noise of both sensors are considered to be uncorrelated, the PSD of the super sensor noise is computed as follow:
|
||||
\begin{equation}
|
||||
\Phi_n(\omega) = \left| H_1 N_1 \right|^2 + \left| H_2 N_2 \right|^2
|
||||
\end{equation}
|
||||
|
||||
It is clear that the PSD of the super sensor depends on the norm of the complementary filters.
|
||||
|
||||
** $\mathcal{H}_2$ Synthesis of Complementary Filters
|
||||
The goal is to design $H_1(s)$ and $H_2(s)$ such that the effect of the noise sources $\tilde{n}_1$ and $\tilde{n}_2$ has the smallest possible effect on the noise $n$ of the estimation $\hat{x}$.
|
||||
|
||||
And the goal is the minimize the Root Mean Square (RMS) value of $n$:
|
||||
#+name: eq:rms_value_estimation
|
||||
\begin{equation}
|
||||
\sigma_{n} = \sqrt{\int_0^\infty \Phi_{n}(\omega) d\omega} = \left\| \begin{matrix} H_1 N_1 \\ H_2 N_2 \end{matrix} \right\|_2
|
||||
\end{equation}
|
||||
|
||||
Thus, the goal is to design $H_1(s)$ and $H_2(s)$ such that $H_1(s) + H_2(s) = 1$ and such that $\sigma_n$ is minimized.
|
||||
|
||||
This can be cast into an $\mathcal{H}_2$ synthesis problem by considering the following generalized plant (also represented in Figure ref:fig:h_two_optimal_fusion):
|
||||
\begin{equation}
|
||||
\begin{pmatrix}
|
||||
z_1 \\ z_2 \\ v
|
||||
\end{pmatrix} = \underbrace{\begin{bmatrix}
|
||||
N_1 & -N_1 \\
|
||||
0 & N_2 \\
|
||||
1 & 0
|
||||
\end{bmatrix}}_{P_{\mathcal{H}_2}} \begin{pmatrix}
|
||||
w \\ u
|
||||
\end{pmatrix}
|
||||
\end{equation}
|
||||
|
||||
Applying the $\mathcal{H}_2$ synthesis on $P_{\mathcal{H}_2}$ will generate a filter $H_2(s)$ such that the $\mathcal{H}_2$ norm from $w$ to $(z_1,z_2)$ is minimized:
|
||||
#+NAME: eq:H2_norm
|
||||
\begin{equation}
|
||||
\left\| \begin{matrix} z_1/w \\ z_2/w \end{matrix} \right\|_2 = \left\| \begin{matrix} N_1 (1 - H_2) \\ N_2 H_2 \end{matrix} \right\|_2
|
||||
\end{equation}
|
||||
|
||||
The $\mathcal{H}_2$ norm of Eq. eqref:eq:H2_norm is equals to $\sigma_n$ by defining $H_1(s)$ to be the complementary filter of $H_2(s)$:
|
||||
\begin{equation}
|
||||
H_1(s) = 1 - H_2(s)
|
||||
\end{equation}
|
||||
|
||||
We then have that the $\mathcal{H}_2$ synthesis applied on $P_{\mathcal{H}_2}$ generates two complementary filters $H_1(s)$ and $H_2(s)$ such that the RMS value of super sensor noise is minimized.
|
||||
|
||||
#+name: fig:h_two_optimal_fusion
|
||||
#+caption: Generalized plant $P_{\mathcal{H}_2}$ used for the $\mathcal{H}_2$ synthesis of complementary filters
|
||||
#+attr_latex: :scale 1
|
||||
[[file:figs/h_two_optimal_fusion.pdf]]
|
||||
|
||||
** Example
|
||||
|
||||
#+name: fig:sensors_nominal_dynamics
|
||||
#+caption: Sensor nominal dynamics from the velocity of the object to the output voltage
|
||||
#+attr_latex: :scale 1
|
||||
[[file:figs/sensors_nominal_dynamics.pdf]]
|
||||
|
||||
#+name: fig:sensors_noise
|
||||
#+caption: Amplitude spectral density of the sensors $\sqrt{\Phi_{n_i}(\omega)} = |N_i(j\omega)|$
|
||||
#+attr_latex: :scale 1
|
||||
[[file:figs/sensors_noise.pdf]]
|
||||
|
||||
|
||||
#+name: fig:htwo_comp_filters
|
||||
#+caption: Obtained complementary filters using the $\mathcal{H}_2$ Synthesis
|
||||
#+attr_latex: :scale 1
|
||||
[[file:figs/htwo_comp_filters.pdf]]
|
||||
|
||||
|
||||
#+name: fig:psd_sensors_htwo_synthesis
|
||||
#+caption: Power Spectral Density of the estimated $\hat{x}$ using the two sensors alone and using the optimally fused signal
|
||||
#+attr_latex: :scale 1
|
||||
[[file:figs/psd_sensors_htwo_synthesis.pdf]]
|
||||
|
||||
|
||||
#+name: fig:super_sensor_time_domain_h2
|
||||
#+caption: Noise of individual sensors and noise of the super sensor
|
||||
#+attr_latex: :scale 1
|
||||
[[file:figs/super_sensor_time_domain_h2.pdf]]
|
||||
|
||||
** Robustness Problem
|
||||
|
||||
#+name: fig:sensors_nominal_dynamics_and_uncertainty
|
||||
#+caption: Nominal Sensor Dynamics $\hat{G}_i$ (solid lines) as well as the spread of the dynamical uncertainty (background color)
|
||||
#+attr_latex: :scale 1
|
||||
[[file:figs/sensors_nominal_dynamics_and_uncertainty.pdf]]
|
||||
|
||||
#+name: fig:super_sensor_dynamical_uncertainty_H2
|
||||
#+caption: Super sensor dynamical uncertainty when using the $\mathcal{H}_2$ Synthesis
|
||||
#+attr_latex: :scale 1
|
||||
[[file:figs/super_sensor_dynamical_uncertainty_H2.pdf]]
|
||||
|
||||
* Robust Sensor Fusion: $\mathcal{H}_\infty$ Synthesis
|
||||
<<sec:robust_fusion>>
|
||||
|
||||
** Representation of Sensor Dynamical Uncertainty
|
||||
|
||||
In Section ref:sec:optimal_fusion, the model $\hat{G}_i(s)$ of the sensor was considered to be perfect.
|
||||
In reality, there are always uncertainty (neglected dynamics) associated with the estimation of the sensor dynamics.
|
||||
|
||||
The Uncertainty on the sensor dynamics $G_i(s)$ is here modelled by (input) multiplicative uncertainty:
|
||||
\begin{equation}
|
||||
G_i(s) = \hat{G}_i(s) \left( 1 + W_i(s) \Delta_i(s) \right); \quad |\Delta_i(j\omega)| < 1 \forall \omega
|
||||
\end{equation}
|
||||
where $\hat{G}_i(s)$ is the nominal model, $W_i$ a weight representing the size of the uncertainty at each frequency, and $\Delta_i$ is any complex perturbation such that $\left\| \Delta_i \right\|_\infty < 1$.
|
||||
|
||||
The sensor can then be represented as shown in Figure ref:fig:sensor_model_uncertainty.
|
||||
|
||||
#+name: fig:sensor_model_uncertainty
|
||||
#+caption: Sensor Model including Dynamical Uncertainty
|
||||
#+attr_latex: :scale 1
|
||||
[[file:figs/sensor_model_uncertainty.pdf]]
|
||||
|
||||
** Sensor Fusion Architecture
|
||||
Let's consider the sensor fusion architecture shown in Figure ref:fig:sensor_fusion_arch_uncertainty where the dynamical uncertainties of both sensors are included.
|
||||
|
||||
The super sensor estimate is then:
|
||||
\begin{equation}
|
||||
\begin{aligned}
|
||||
\hat{x} &= \Big( H_1 \hat{G}_1^{-1} \hat{G}_1 (1 + W_1 \Delta_1) \\
|
||||
& \quad + H_2 \hat{G}_2^{-1} \hat{G}_2 (1 + W_2 \Delta_2) \Big) x \\
|
||||
&= \Big( H_1 (1 + W_1 \Delta_1) + H_2 (1 + W_2 \Delta_2) \Big) x
|
||||
\end{aligned}
|
||||
\end{equation}
|
||||
with $\Delta_i$ is any transfer function satisfying $\| \Delta_i \|_\infty < 1$.
|
||||
|
||||
As $H_1$ and $H_2$ are complementary filters, we finally have:
|
||||
\begin{equation}
|
||||
\hat{x} = \left( 1 + H_1 W_1 \Delta_1 + H_2 W_2 \Delta_2 \right) x, \quad \|\Delta_i\|_\infty<1
|
||||
\end{equation}
|
||||
|
||||
#+name: fig:sensor_fusion_arch_uncertainty
|
||||
#+caption: Sensor Fusion Architecture with sensor model uncertainty
|
||||
#+attr_latex: :scale 1
|
||||
[[file:figs/sensor_fusion_arch_uncertainty.pdf]]
|
||||
|
||||
** Super Sensor Dynamical Uncertainty
|
||||
The uncertainty set of the transfer function from $\hat{x}$ to $x$ at frequency $\omega$ is bounded in the complex plane by a circle centered on 1 and with a radius equal to $|W_1(j\omega) H_1(j\omega)| + |W_2(j\omega) H_2(j\omega)|$ as shown in Figure ref:fig:uncertainty_set_super_sensor.
|
||||
|
||||
|
||||
And we can see that the dynamical uncertainty of the super sensor is equal to the sum of the individual sensor uncertainties filtered out by the complementary filters.
|
||||
|
||||
#+name: fig:uncertainty_set_super_sensor
|
||||
#+caption: Super Sensor model uncertainty displayed in the complex plane
|
||||
#+attr_latex: :scale 1
|
||||
[[file:figs/uncertainty_set_super_sensor.pdf]]
|
||||
|
||||
# Some comments on the weights
|
||||
At frequencies where $\left|W_i(j\omega)\right| > 1$ the uncertainty exceeds $100\%$ and sensor fusion is impossible.
|
||||
|
||||
** $\mathcal{H_\infty}$ Synthesis of Complementary Filters
|
||||
In order for the fusion to be "robust", meaning no phase drop will be induced in the super sensor dynamics,
|
||||
|
||||
The goal is to design two complementary filters $H_1(s)$ and $H_2(s)$ such that the super sensor noise uncertainty is kept reasonably small.
|
||||
|
||||
To define what by "small" we mean, we use a weighting filter $W_u(s)$ such that the synthesis objective is:
|
||||
\begin{equation}
|
||||
\left| W_1(j\omega)H_1(j\omega) \right| + \left| W_2(j\omega)H_2(j\omega) \right| < \frac{1}{\left| W_u(j\omega) \right|}, \quad \forall \omega
|
||||
\end{equation}
|
||||
|
||||
# Comments on the choice of the weights => we cannot ask for less uncertainty than both sensors
|
||||
|
||||
This is actually almost equivalent as to have (within a factor $\sqrt{2}$):
|
||||
\begin{equation}
|
||||
\left\| \begin{matrix} W_u W_1 H_1 \\ W_u W_2 H_2 \end{matrix} \right\|_\infty < 1
|
||||
\end{equation}
|
||||
|
||||
This problem can thus be dealt with an $\mathcal{H}_\infty$ synthesis problem by considering the following generalized plant (Figure ref:fig:h_infinity_robust_fusion):
|
||||
\begin{equation}
|
||||
\begin{pmatrix}
|
||||
z_1 \\ z_2 \\ v
|
||||
\end{pmatrix} = \underbrace{\begin{bmatrix}
|
||||
W_u W_1 & -W_u W_1 \\
|
||||
0 & W_u W_2 \\
|
||||
1 & 0
|
||||
\end{bmatrix}}_{P_{\mathcal{H}_\infty}} \begin{pmatrix}
|
||||
w \\ u
|
||||
\end{pmatrix}
|
||||
\end{equation}
|
||||
|
||||
Applying the $\mathcal{H}_\infty$ synthesis on $P_{\mathcal{H}_\infty}$ will generate a filter $H_2(s)$ such that the $\mathcal{H}_\infty$ norm from $w$ to $(z_1,z_2)$ is minimized:
|
||||
#+NAME: eq:Hinf_norm
|
||||
\begin{equation}
|
||||
\left\| \begin{matrix} z_1/w \\ z_2/w \end{matrix} \right\|_\infty = \left\| \begin{matrix} W_u W_1 (1 - H_2) \\ W_u W_2 H_2 \end{matrix} \right\|_\infty
|
||||
\end{equation}
|
||||
|
||||
The $\mathcal{H}_\infty$ norm of Eq. eqref:eq:Hinf_norm is equals to $\sigma_n$ by defining $H_1(s)$ to be the complementary filter of $H_2(s)$:
|
||||
\begin{equation}
|
||||
H_1(s) = 1 - H_2(s)
|
||||
\end{equation}
|
||||
|
||||
#+name: fig:h_infinity_robust_fusion
|
||||
#+caption: Generalized plant $P_{\mathcal{H}_\infty}$ used for the $\mathcal{H}_\infty$ synthesis of complementary filters
|
||||
#+attr_latex: :scale 1
|
||||
[[file:figs/h_infinity_robust_fusion.pdf]]
|
||||
|
||||
** Example
|
||||
|
||||
#+name: fig:sensors_uncertainty_weights
|
||||
#+caption: Magnitude of the multiplicative uncertainty weights $|W_i(j\omega)|$
|
||||
#+attr_latex: :scale 1
|
||||
[[file:figs/sensors_uncertainty_weights.pdf]]
|
||||
|
||||
|
||||
#+name: fig:weight_uncertainty_bounds_Wu
|
||||
#+caption: Uncertainty region of the two sensors as well as the wanted maximum uncertainty of the super sensor (dashed lines)
|
||||
#+attr_latex: :scale 1
|
||||
[[file:figs/weight_uncertainty_bounds_Wu.pdf]]
|
||||
|
||||
#+name: fig:hinf_comp_filters
|
||||
#+caption: Obtained complementary filters using the $\mathcal{H}_\infty$ Synthesis
|
||||
#+attr_latex: :scale 1
|
||||
[[file:figs/hinf_comp_filters.pdf]]
|
||||
|
||||
#+name: fig:super_sensor_dynamical_uncertainty_Hinf
|
||||
#+caption: Super sensor dynamical uncertainty (solid curve) when using the $\mathcal{H}_\infty$ Synthesis
|
||||
#+attr_latex: :scale 1
|
||||
[[file:figs/super_sensor_dynamical_uncertainty_Hinf.pdf]]
|
||||
|
||||
#+name: fig:psd_sensors_hinf_synthesis
|
||||
#+caption: Power Spectral Density of the estimated $\hat{x}$ using the two sensors alone and using the $\mathcal{H}_\infty$ synthesis
|
||||
#+attr_latex: :scale 1
|
||||
[[file:figs/psd_sensors_hinf_synthesis.pdf]]
|
||||
|
||||
|
||||
* Optimal and Robust Sensor Fusion: Mixed $\mathcal{H}_2/\mathcal{H}_\infty$ Synthesis
|
||||
<<sec:optimal_robust_fusion>>
|
||||
|
||||
** Sensor with noise and model uncertainty
|
||||
We wish now to combine the two previous synthesis, that is to say
|
||||
|
||||
The sensors are now modelled by a white noise with unitary PSD $\tilde{n}_i$ shaped by a LTI transfer function $N_i(s)$.
|
||||
The dynamical uncertainty of the sensor is modelled using multiplicative uncertainty
|
||||
\begin{equation}
|
||||
v_i = \hat{G}_i (1 + W_i \Delta_i) x + \hat{G_i} (1 + W_i \Delta_i) N_i \tilde{n}_i
|
||||
\end{equation}
|
||||
|
||||
Multiplying by the inverse of the nominal model of the sensor dynamics gives an estimate $\hat{x}_i$ of $x$:
|
||||
\begin{equation}
|
||||
\hat{x} = (1 + W_i \Delta_i) x + (1 + W_i \Delta_i) N_i \tilde{n}_i
|
||||
\end{equation}
|
||||
|
||||
#+name: fig:sensor_model_noise_uncertainty
|
||||
#+caption: Sensor Model including Noise and Dynamical Uncertainty
|
||||
#+attr_latex: :scale 1
|
||||
[[file:figs/sensor_model_noise_uncertainty.pdf]]
|
||||
|
||||
** Sensor Fusion Architecture
|
||||
|
||||
For reason of space, the blocks $\hat{G}_i$ and $\hat{G}_i^{-1}$ are omitted.
|
||||
|
||||
\begin{equation}
|
||||
\begin{aligned}
|
||||
\hat{x} = &\Big( H_1 (1 + W_1 \Delta_1) + H_2 (1 + W_2 \Delta_2) \Big) x \\
|
||||
&+ \Big( H_1 (1 + W_1 \Delta_1) N_1 \Big) \tilde{n}_1 + \Big( H_2 (1 + W_2 \Delta_2) N_2 \Big) \tilde{n}_2
|
||||
\end{aligned}
|
||||
\end{equation}
|
||||
|
||||
\begin{equation}
|
||||
\begin{aligned}
|
||||
\hat{x} = &\Big( 1 + H_1 W_1 \Delta_1 + H_2 W_2 \Delta_2 \Big) x \\
|
||||
&+ \Big( H_1 (1 + W_1 \Delta_1) N_1 \Big) \tilde{n}_1 + \Big( H_2 (1 + W_2 \Delta_2) N_2 \Big) \tilde{n}_2
|
||||
\end{aligned}
|
||||
\end{equation}
|
||||
|
||||
The estimate $\hat{x}$ of $x$
|
||||
|
||||
#+name: fig:sensor_fusion_arch_full
|
||||
#+caption: Super Sensor Fusion with both sensor noise and sensor model uncertainty
|
||||
#+attr_latex: :scale 1
|
||||
[[file:figs/sensor_fusion_arch_full.pdf]]
|
||||
|
||||
** Mixed $\mathcal{H}_2/\mathcal{H}_\infty$ Synthesis
|
||||
|
||||
The synthesis objective is to generate two complementary filters $H_1(s)$ and $H_2(s)$ such that the uncertainty associated with the super sensor is kept reasonably small and such that the RMS value of super sensors noise is minimized.
|
||||
|
||||
To specify how small we want the super sensor dynamic spread, we use a weighting filter $W_u(s)$ as was done in Section ref:sec:robust_fusion.
|
||||
|
||||
|
||||
This synthesis problem can be solved using the mixed $\mathcal{H}_2/\mathcal{H}_\infty$ synthesis on the following generalized plant:
|
||||
\begin{equation}
|
||||
\begin{pmatrix}
|
||||
z_{\infty, 1} \\ z_{\infty, 2} \\ z_{2, 1} \\ z_{2, 2} \\ v
|
||||
\end{pmatrix} = \underbrace{\begin{bmatrix}
|
||||
W_u W_1 & W_u W_1 \\
|
||||
0 & W_u W_2 \\
|
||||
N_1 & N_1 \\
|
||||
0 & N_2 \\
|
||||
1 & 0
|
||||
\end{bmatrix}}_{P_{\mathcal{H}_2/\mathcal{H}_\infty}} \begin{pmatrix}
|
||||
w \\ u
|
||||
\end{pmatrix}
|
||||
\end{equation}
|
||||
|
||||
The synthesis objective is to:
|
||||
- Keep the $\mathcal{H}_\infty$ norm from $w$ to $(z_{\infty,1}, z_{\infty,2})$ below $1$
|
||||
- Minimize the $\mathcal{H}_2$ norm from $w$ to $(z_{2,1}, z_{2,2})$
|
||||
|
||||
#+name: fig:mixed_h2_hinf_synthesis
|
||||
#+caption: Generalized plant $P_{\mathcal{H}_2/\matlcal{H}_\infty}$ used for the mixed $\mathcal{H}_2/\mathcal{H}_\infty$ synthesis of complementary filters
|
||||
#+attr_latex: :scale 1
|
||||
[[file:figs/mixed_h2_hinf_synthesis.pdf]]
|
||||
|
||||
** Example
|
||||
|
||||
#+name: fig:htwo_hinf_comp_filters
|
||||
#+caption: Obtained complementary filters after mixed $\mathcal{H}_2/\mathcal{H}_\infty$ synthesis
|
||||
#+attr_latex: :scale 1
|
||||
[[file:figs/htwo_hinf_comp_filters.pdf]]
|
||||
|
||||
#+name: fig:psd_sensors_htwo_hinf_synthesis
|
||||
#+caption: Power Spectral Density of the Super Sensor obtained with the mixed $\mathcal{H}_2/\mathcal{H}_\infty$ synthesis
|
||||
#+attr_latex: :scale 1
|
||||
[[file:figs/psd_sensors_htwo_hinf_synthesis.pdf]]
|
||||
|
||||
#+name: fig:super_sensor_time_domain_h2_hinf
|
||||
#+caption: Noise of individual sensors and noise of the super sensor
|
||||
#+attr_latex: :scale 1
|
||||
[[file:figs/super_sensor_time_domain_h2_hinf.pdf]]
|
||||
|
||||
#+name: fig:super_sensor_dynamical_uncertainty_Htwo_Hinf
|
||||
#+caption: Super sensor dynamical uncertainty (solid curve) when using the mixed $\mathcal{H}_2/\mathcal{H}_\infty$ Synthesis
|
||||
#+attr_latex: :scale 1
|
||||
[[file:figs/super_sensor_dynamical_uncertainty_Htwo_Hinf.pdf]]
|
||||
|
||||
* Experimental Validation
|
||||
<<sec:experimental_validation>>
|
||||
|
||||
** Experimental Setup
|
||||
|
||||
** Sensor Noise and Dynamical Uncertainty
|
||||
|
||||
** Mixed $\mathcal{H}_2/\mathcal{H}_\infty$ Synthesis
|
||||
|
||||
** Super Sensor Noise and Dynamical Uncertainty
|
||||
|
||||
* Conclusion
|
||||
<<sec:conclusion>>
|
||||
|
||||
* Acknowledgment
|
||||
|
||||
* Bibliography :ignore:
|
||||
\bibliographystyle{IEEEtran}
|
||||
\bibliography{ref}
|
||||
|
||||
* Local Variables :noexport:
|
||||
# Local Variables:
|
||||
# org-latex-packages-alist: nil
|
||||
# End:
|
BIN
journal/dehaeze22_optim_robus_compl_filte.pdf
Normal file
503
journal/dehaeze22_optim_robus_compl_filte.tex
Normal file
@@ -0,0 +1,503 @@
|
||||
% Created 2021-09-10 ven. 10:25
|
||||
% Intended LaTeX compiler: pdflatex
|
||||
\documentclass[final,journal,a4paper]{IEEEtran}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage{graphicx}
|
||||
\usepackage{grffile}
|
||||
\usepackage{longtable}
|
||||
\usepackage{wrapfig}
|
||||
\usepackage{rotating}
|
||||
\usepackage[normalem]{ulem}
|
||||
\usepackage{amsmath}
|
||||
\usepackage{textcomp}
|
||||
\usepackage{amssymb}
|
||||
\usepackage{capt-of}
|
||||
\usepackage{hyperref}
|
||||
\IEEEoverridecommandlockouts
|
||||
\usepackage{cite}
|
||||
\usepackage{amsmath,amssymb,amsfonts}
|
||||
\usepackage{algorithmic}
|
||||
\usepackage{graphicx}
|
||||
\usepackage{textcomp}
|
||||
\usepackage{xcolor}
|
||||
\usepackage{cases}
|
||||
\usepackage{tabularx,siunitx,booktabs}
|
||||
\usepackage{algorithmic}
|
||||
\usepackage{import, hyperref}
|
||||
\renewcommand{\citedash}{--}
|
||||
\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
|
||||
\usepackage{showframe}
|
||||
\author{\IEEEauthorblockN{Dehaeze Thomas} \IEEEauthorblockA{\textit{European Synchrotron Radiation Facility} \\ Grenoble, France\\ \textit{Precision Mechatronics Laboratory} \\ \textit{University of Liege}, Belgium \\ thomas.dehaeze@esrf.fr }\and \IEEEauthorblockN{Verma Mohit} \IEEEauthorblockA{\textit{BEAMS Department}\\ \textit{Free University of Brussels}, Belgium\\ \textit{Precision Mechatronics Laboratory} \\ \textit{University of Liege}, Belgium \\ mohitverma.serc@csir.res.in }\and \IEEEauthorblockN{Collette Christophe} \IEEEauthorblockA{\textit{BEAMS Department}\\ \textit{Free University of Brussels}, Belgium\\ \textit{Precision Mechatronics Laboratory} \\ \textit{University of Liege}, Belgium \\ ccollett@ulb.ac.be }}
|
||||
\date{2021-09-10}
|
||||
\title{Optimal and Robust Sensor Fusion}
|
||||
\begin{document}
|
||||
|
||||
\maketitle
|
||||
|
||||
\begin{abstract}
|
||||
Abstract text to be done
|
||||
\end{abstract}
|
||||
|
||||
\begin{IEEEkeywords}
|
||||
Complementary Filters, Sensor Fusion, H-Infinity Synthesis
|
||||
\end{IEEEkeywords}
|
||||
|
||||
\section{Introduction}
|
||||
\label{sec:introduction}
|
||||
|
||||
\cite{mahony08_nonlin_compl_filter_special_orthog_group}
|
||||
|
||||
\begin{itemize}
|
||||
\item Section \ref{sec:optimal_fusion}
|
||||
\item Section \ref{sec:robust_fusion}
|
||||
\item Section \ref{sec:optimal_robust_fusion}
|
||||
\item Section \ref{sec:experimental_validation}
|
||||
\end{itemize}
|
||||
|
||||
\section{Optimal Super Sensor Noise: \(\mathcal{H}_2\) Synthesis}
|
||||
\label{sec:optimal_fusion}
|
||||
|
||||
\subsection{Sensor Model}
|
||||
Let's consider a sensor measuring a physical quantity \(x\) (Figure \ref{fig:sensor_model_noise}).
|
||||
The sensor has an internal dynamics which is here modelled with a Linear Time Invariant (LTI) system transfer function \(G_i(s)\).
|
||||
|
||||
The noise of sensor can be described by the Power Spectral Density (PSD) \(\Phi_{n_i}(\omega)\).
|
||||
|
||||
This is approximated by shaping a white noise with unitary PSD \(\tilde{n}_i\) \eqref{eq:unitary_sensor_noise_psd} with a LTI transfer function \(N_i(s)\):
|
||||
\begin{equation}
|
||||
\begin{aligned}
|
||||
\Phi_{n_i}(\omega) &= \left| N_i(j\omega) \right|^2 \Phi_{\tilde{n}_i}(\omega) \\
|
||||
&= \left| N_i(j\omega) \right|^2
|
||||
\end{aligned}
|
||||
\end{equation}
|
||||
|
||||
\begin{equation}
|
||||
\label{eq:unitary_sensor_noise_psd}
|
||||
\Phi_{\tilde{n}_i}(\omega) = 1
|
||||
\end{equation}
|
||||
|
||||
The output of the sensor \(v_i\):
|
||||
\begin{equation}
|
||||
v_i = \left( G_i \right) x + \left( G_i N_i \right) \tilde{n}_i
|
||||
\end{equation}
|
||||
|
||||
In order to obtain an estimate \(\hat{x}_i\) of \(x\), a model \(\hat{G}_i\) of the (true) sensor dynamics \(G_i\) is inverted and applied at the output (Figure \ref{fig:sensor_model_noise}):
|
||||
\begin{equation}
|
||||
\hat{x}_i = \left( \hat{G}_i^{-1} G_i \right) x + \left( \hat{G}_i^{-1} G_i N_i \right) \tilde{n}_i
|
||||
\end{equation}
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,scale=1]{figs/sensor_model_noise.pdf}
|
||||
\caption{\label{fig:sensor_model_noise}Sensor Model}
|
||||
\end{figure}
|
||||
|
||||
\subsection{Sensor Fusion Architecture}
|
||||
Let's now consider two sensors measuring the same physical quantity \(x\) but with different dynamics \((G_1, G_2)\) and noise characteristics \((N_1, N_2)\) (Figure \ref{fig:sensor_fusion_noise_arch}).
|
||||
|
||||
The noise sources \(\tilde{n}_1\) and \(\tilde{n}_2\) are considered to be uncorrelated.
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,scale=1]{figs/sensor_fusion_noise_arch.pdf}
|
||||
\caption{\label{fig:sensor_fusion_noise_arch}Sensor Fusion Architecture with sensor noise}
|
||||
\end{figure}
|
||||
|
||||
The output of both sensors \((v1,v2)\) are then passed through the inverse of the sensor model to obtained two estimates \((\hat{x}_1, \hat{x}_2)\) of \(x\).
|
||||
These two estimates are then filtered out by two filters \(H_1\) and \(H_2\) and summed to gives the super sensor estimate \(\hat{x}\).
|
||||
|
||||
\begin{equation}
|
||||
\begin{split}
|
||||
\hat{x} = {}&\left( H_1 \hat{G}_1^{-1} G_1 + H_2 \hat{G}_2^{-1} G_2 \right) x \\
|
||||
&+ \left( H_1 \hat{G}_1^{-1} G_1 N_1 \right) \tilde{n}_1 + \left( H_2 \hat{G}_2^{-1} G_2 N_2 \right) \tilde{n}_2
|
||||
\end{split}
|
||||
\end{equation}
|
||||
|
||||
Suppose the sensor dynamical model \(\hat{G}_i\) is perfect:
|
||||
\begin{equation}
|
||||
\hat{G}_i = G_i
|
||||
\end{equation}
|
||||
|
||||
We considered here complementary filters:
|
||||
\begin{equation}
|
||||
H_1(s) + H_2(s) = 1
|
||||
\end{equation}
|
||||
|
||||
In such case, the super sensor estimate \(\hat{x}\) is equal to \(x\) plus the noise of the individual sensors filtered out by the complementary filters:
|
||||
\begin{equation}
|
||||
\hat{x} = x + \left( H_1 N_1 \right) \tilde{n}_1 + \left( H_2 N_2 \right) \tilde{n}_2
|
||||
\end{equation}
|
||||
|
||||
\subsection{Super Sensor Noise}
|
||||
Let's note \(n\) the super sensor noise.
|
||||
\begin{equation}
|
||||
n = \left( H_1 N_1 \right) \tilde{n}_1 + \left( H_2 N_2 \right) \tilde{n}_2
|
||||
\end{equation}
|
||||
|
||||
As the noise of both sensors are considered to be uncorrelated, the PSD of the super sensor noise is computed as follow:
|
||||
\begin{equation}
|
||||
\Phi_n(\omega) = \left| H_1 N_1 \right|^2 + \left| H_2 N_2 \right|^2
|
||||
\end{equation}
|
||||
|
||||
It is clear that the PSD of the super sensor depends on the norm of the complementary filters.
|
||||
|
||||
\subsection{\(\mathcal{H}_2\) Synthesis of Complementary Filters}
|
||||
The goal is to design \(H_1(s)\) and \(H_2(s)\) such that the effect of the noise sources \(\tilde{n}_1\) and \(\tilde{n}_2\) has the smallest possible effect on the noise \(n\) of the estimation \(\hat{x}\).
|
||||
|
||||
And the goal is the minimize the Root Mean Square (RMS) value of \(n\):
|
||||
\begin{equation}
|
||||
\label{eq:rms_value_estimation}
|
||||
\sigma_{n} = \sqrt{\int_0^\infty \Phi_{n}(\omega) d\omega} = \left\| \begin{matrix} H_1 N_1 \\ H_2 N_2 \end{matrix} \right\|_2
|
||||
\end{equation}
|
||||
|
||||
Thus, the goal is to design \(H_1(s)\) and \(H_2(s)\) such that \(H_1(s) + H_2(s) = 1\) and such that \(\sigma_n\) is minimized.
|
||||
|
||||
This can be cast into an \(\mathcal{H}_2\) synthesis problem by considering the following generalized plant (also represented in Figure \ref{fig:h_two_optimal_fusion}):
|
||||
\begin{equation}
|
||||
\begin{pmatrix}
|
||||
z_1 \\ z_2 \\ v
|
||||
\end{pmatrix} = \underbrace{\begin{bmatrix}
|
||||
N_1 & -N_1 \\
|
||||
0 & N_2 \\
|
||||
1 & 0
|
||||
\end{bmatrix}}_{P_{\mathcal{H}_2}} \begin{pmatrix}
|
||||
w \\ u
|
||||
\end{pmatrix}
|
||||
\end{equation}
|
||||
|
||||
Applying the \(\mathcal{H}_2\) synthesis on \(P_{\mathcal{H}_2}\) will generate a filter \(H_2(s)\) such that the \(\mathcal{H}_2\) norm from \(w\) to \((z_1,z_2)\) is minimized:
|
||||
\begin{equation}
|
||||
\label{eq:H2_norm}
|
||||
\left\| \begin{matrix} z_1/w \\ z_2/w \end{matrix} \right\|_2 = \left\| \begin{matrix} N_1 (1 - H_2) \\ N_2 H_2 \end{matrix} \right\|_2
|
||||
\end{equation}
|
||||
|
||||
The \(\mathcal{H}_2\) norm of Eq. \eqref{eq:H2_norm} is equals to \(\sigma_n\) by defining \(H_1(s)\) to be the complementary filter of \(H_2(s)\):
|
||||
\begin{equation}
|
||||
H_1(s) = 1 - H_2(s)
|
||||
\end{equation}
|
||||
|
||||
We then have that the \(\mathcal{H}_2\) synthesis applied on \(P_{\mathcal{H}_2}\) generates two complementary filters \(H_1(s)\) and \(H_2(s)\) such that the RMS value of super sensor noise is minimized.
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,scale=1]{figs/h_two_optimal_fusion.pdf}
|
||||
\caption{\label{fig:h_two_optimal_fusion}Generalized plant \(P_{\mathcal{H}_2}\) used for the \(\mathcal{H}_2\) synthesis of complementary filters}
|
||||
\end{figure}
|
||||
|
||||
\subsection{Example}
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,scale=1]{figs/sensors_nominal_dynamics.pdf}
|
||||
\caption{\label{fig:sensors_nominal_dynamics}Sensor nominal dynamics from the velocity of the object to the output voltage}
|
||||
\end{figure}
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,scale=1]{figs/sensors_noise.pdf}
|
||||
\caption{\label{fig:sensors_noise}Amplitude spectral density of the sensors \(\sqrt{\Phi_{n_i}(\omega)} = |N_i(j\omega)|\)}
|
||||
\end{figure}
|
||||
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,scale=1]{figs/htwo_comp_filters.pdf}
|
||||
\caption{\label{fig:htwo_comp_filters}Obtained complementary filters using the \(\mathcal{H}_2\) Synthesis}
|
||||
\end{figure}
|
||||
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,scale=1]{figs/psd_sensors_htwo_synthesis.pdf}
|
||||
\caption{\label{fig:psd_sensors_htwo_synthesis}Power Spectral Density of the estimated \(\hat{x}\) using the two sensors alone and using the optimally fused signal}
|
||||
\end{figure}
|
||||
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,scale=1]{figs/super_sensor_time_domain_h2.pdf}
|
||||
\caption{\label{fig:super_sensor_time_domain_h2}Noise of individual sensors and noise of the super sensor}
|
||||
\end{figure}
|
||||
|
||||
\subsection{Robustness Problem}
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,scale=1]{figs/sensors_nominal_dynamics_and_uncertainty.pdf}
|
||||
\caption{\label{fig:sensors_nominal_dynamics_and_uncertainty}Nominal Sensor Dynamics \(\hat{G}_i\) (solid lines) as well as the spread of the dynamical uncertainty (background color)}
|
||||
\end{figure}
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,scale=1]{figs/super_sensor_dynamical_uncertainty_H2.pdf}
|
||||
\caption{\label{fig:super_sensor_dynamical_uncertainty_H2}Super sensor dynamical uncertainty when using the \(\mathcal{H}_2\) Synthesis}
|
||||
\end{figure}
|
||||
|
||||
\section{Robust Sensor Fusion: \(\mathcal{H}_\infty\) Synthesis}
|
||||
\label{sec:robust_fusion}
|
||||
|
||||
\subsection{Representation of Sensor Dynamical Uncertainty}
|
||||
|
||||
In Section \ref{sec:optimal_fusion}, the model \(\hat{G}_i(s)\) of the sensor was considered to be perfect.
|
||||
In reality, there are always uncertainty (neglected dynamics) associated with the estimation of the sensor dynamics.
|
||||
|
||||
The Uncertainty on the sensor dynamics \(G_i(s)\) is here modelled by (input) multiplicative uncertainty:
|
||||
\begin{equation}
|
||||
G_i(s) = \hat{G}_i(s) \left( 1 + W_i(s) \Delta_i(s) \right); \quad |\Delta_i(j\omega)| < 1 \forall \omega
|
||||
\end{equation}
|
||||
where \(\hat{G}_i(s)\) is the nominal model, \(W_i\) a weight representing the size of the uncertainty at each frequency, and \(\Delta_i\) is any complex perturbation such that \(\left\| \Delta_i \right\|_\infty < 1\).
|
||||
|
||||
The sensor can then be represented as shown in Figure \ref{fig:sensor_model_uncertainty}.
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,scale=1]{figs/sensor_model_uncertainty.pdf}
|
||||
\caption{\label{fig:sensor_model_uncertainty}Sensor Model including Dynamical Uncertainty}
|
||||
\end{figure}
|
||||
|
||||
\subsection{Sensor Fusion Architecture}
|
||||
Let's consider the sensor fusion architecture shown in Figure \ref{fig:sensor_fusion_arch_uncertainty} where the dynamical uncertainties of both sensors are included.
|
||||
|
||||
The super sensor estimate is then:
|
||||
\begin{equation}
|
||||
\begin{aligned}
|
||||
\hat{x} &= \Big( H_1 \hat{G}_1^{-1} \hat{G}_1 (1 + W_1 \Delta_1) \\
|
||||
& \quad + H_2 \hat{G}_2^{-1} \hat{G}_2 (1 + W_2 \Delta_2) \Big) x \\
|
||||
&= \Big( H_1 (1 + W_1 \Delta_1) + H_2 (1 + W_2 \Delta_2) \Big) x
|
||||
\end{aligned}
|
||||
\end{equation}
|
||||
with \(\Delta_i\) is any transfer function satisfying \(\| \Delta_i \|_\infty < 1\).
|
||||
|
||||
As \(H_1\) and \(H_2\) are complementary filters, we finally have:
|
||||
\begin{equation}
|
||||
\hat{x} = \left( 1 + H_1 W_1 \Delta_1 + H_2 W_2 \Delta_2 \right) x, \quad \|\Delta_i\|_\infty<1
|
||||
\end{equation}
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,scale=1]{figs/sensor_fusion_arch_uncertainty.pdf}
|
||||
\caption{\label{fig:sensor_fusion_arch_uncertainty}Sensor Fusion Architecture with sensor model uncertainty}
|
||||
\end{figure}
|
||||
|
||||
\subsection{Super Sensor Dynamical Uncertainty}
|
||||
The uncertainty set of the transfer function from \(\hat{x}\) to \(x\) at frequency \(\omega\) is bounded in the complex plane by a circle centered on 1 and with a radius equal to \(|W_1(j\omega) H_1(j\omega)| + |W_2(j\omega) H_2(j\omega)|\) as shown in Figure \ref{fig:uncertainty_set_super_sensor}.
|
||||
|
||||
|
||||
And we can see that the dynamical uncertainty of the super sensor is equal to the sum of the individual sensor uncertainties filtered out by the complementary filters.
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,scale=1]{figs/uncertainty_set_super_sensor.pdf}
|
||||
\caption{\label{fig:uncertainty_set_super_sensor}Super Sensor model uncertainty displayed in the complex plane}
|
||||
\end{figure}
|
||||
|
||||
At frequencies where \(\left|W_i(j\omega)\right| > 1\) the uncertainty exceeds \(100\%\) and sensor fusion is impossible.
|
||||
|
||||
\subsection{\(\mathcal{H_\infty}\) Synthesis of Complementary Filters}
|
||||
In order for the fusion to be ``robust'', meaning no phase drop will be induced in the super sensor dynamics,
|
||||
|
||||
The goal is to design two complementary filters \(H_1(s)\) and \(H_2(s)\) such that the super sensor noise uncertainty is kept reasonably small.
|
||||
|
||||
To define what by ``small'' we mean, we use a weighting filter \(W_u(s)\) such that the synthesis objective is:
|
||||
\begin{equation}
|
||||
\left| W_1(j\omega)H_1(j\omega) \right| + \left| W_2(j\omega)H_2(j\omega) \right| < \frac{1}{\left| W_u(j\omega) \right|}, \quad \forall \omega
|
||||
\end{equation}
|
||||
|
||||
This is actually almost equivalent as to have (within a factor \(\sqrt{2}\)):
|
||||
\begin{equation}
|
||||
\left\| \begin{matrix} W_u W_1 H_1 \\ W_u W_2 H_2 \end{matrix} \right\|_\infty < 1
|
||||
\end{equation}
|
||||
|
||||
This problem can thus be dealt with an \(\mathcal{H}_\infty\) synthesis problem by considering the following generalized plant (Figure \ref{fig:h_infinity_robust_fusion}):
|
||||
\begin{equation}
|
||||
\begin{pmatrix}
|
||||
z_1 \\ z_2 \\ v
|
||||
\end{pmatrix} = \underbrace{\begin{bmatrix}
|
||||
W_u W_1 & -W_u W_1 \\
|
||||
0 & W_u W_2 \\
|
||||
1 & 0
|
||||
\end{bmatrix}}_{P_{\mathcal{H}_\infty}} \begin{pmatrix}
|
||||
w \\ u
|
||||
\end{pmatrix}
|
||||
\end{equation}
|
||||
|
||||
Applying the \(\mathcal{H}_\infty\) synthesis on \(P_{\mathcal{H}_\infty}\) will generate a filter \(H_2(s)\) such that the \(\mathcal{H}_\infty\) norm from \(w\) to \((z_1,z_2)\) is minimized:
|
||||
\begin{equation}
|
||||
\label{eq:Hinf_norm}
|
||||
\left\| \begin{matrix} z_1/w \\ z_2/w \end{matrix} \right\|_\infty = \left\| \begin{matrix} W_u W_1 (1 - H_2) \\ W_u W_2 H_2 \end{matrix} \right\|_\infty
|
||||
\end{equation}
|
||||
|
||||
The \(\mathcal{H}_\infty\) norm of Eq. \eqref{eq:Hinf_norm} is equals to \(\sigma_n\) by defining \(H_1(s)\) to be the complementary filter of \(H_2(s)\):
|
||||
\begin{equation}
|
||||
H_1(s) = 1 - H_2(s)
|
||||
\end{equation}
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,scale=1]{figs/h_infinity_robust_fusion.pdf}
|
||||
\caption{\label{fig:h_infinity_robust_fusion}Generalized plant \(P_{\mathcal{H}_\infty}\) used for the \(\mathcal{H}_\infty\) synthesis of complementary filters}
|
||||
\end{figure}
|
||||
|
||||
\subsection{Example}
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,scale=1]{figs/sensors_uncertainty_weights.pdf}
|
||||
\caption{\label{fig:sensors_uncertainty_weights}Magnitude of the multiplicative uncertainty weights \(|W_i(j\omega)|\)}
|
||||
\end{figure}
|
||||
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,scale=1]{figs/weight_uncertainty_bounds_Wu.pdf}
|
||||
\caption{\label{fig:weight_uncertainty_bounds_Wu}Uncertainty region of the two sensors as well as the wanted maximum uncertainty of the super sensor (dashed lines)}
|
||||
\end{figure}
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,scale=1]{figs/hinf_comp_filters.pdf}
|
||||
\caption{\label{fig:hinf_comp_filters}Obtained complementary filters using the \(\mathcal{H}_\infty\) Synthesis}
|
||||
\end{figure}
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,scale=1]{figs/super_sensor_dynamical_uncertainty_Hinf.pdf}
|
||||
\caption{\label{fig:super_sensor_dynamical_uncertainty_Hinf}Super sensor dynamical uncertainty (solid curve) when using the \(\mathcal{H}_\infty\) Synthesis}
|
||||
\end{figure}
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,scale=1]{figs/psd_sensors_hinf_synthesis.pdf}
|
||||
\caption{\label{fig:psd_sensors_hinf_synthesis}Power Spectral Density of the estimated \(\hat{x}\) using the two sensors alone and using the \(\mathcal{H}_\infty\) synthesis}
|
||||
\end{figure}
|
||||
|
||||
|
||||
\section{Optimal and Robust Sensor Fusion: Mixed \(\mathcal{H}_2/\mathcal{H}_\infty\) Synthesis}
|
||||
\label{sec:optimal_robust_fusion}
|
||||
|
||||
\subsection{Sensor with noise and model uncertainty}
|
||||
We wish now to combine the two previous synthesis, that is to say
|
||||
|
||||
The sensors are now modelled by a white noise with unitary PSD \(\tilde{n}_i\) shaped by a LTI transfer function \(N_i(s)\).
|
||||
The dynamical uncertainty of the sensor is modelled using multiplicative uncertainty
|
||||
\begin{equation}
|
||||
v_i = \hat{G}_i (1 + W_i \Delta_i) x + \hat{G_i} (1 + W_i \Delta_i) N_i \tilde{n}_i
|
||||
\end{equation}
|
||||
|
||||
Multiplying by the inverse of the nominal model of the sensor dynamics gives an estimate \(\hat{x}_i\) of \(x\):
|
||||
\begin{equation}
|
||||
\hat{x} = (1 + W_i \Delta_i) x + (1 + W_i \Delta_i) N_i \tilde{n}_i
|
||||
\end{equation}
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,scale=1]{figs/sensor_model_noise_uncertainty.pdf}
|
||||
\caption{\label{fig:sensor_model_noise_uncertainty}Sensor Model including Noise and Dynamical Uncertainty}
|
||||
\end{figure}
|
||||
|
||||
\subsection{Sensor Fusion Architecture}
|
||||
|
||||
For reason of space, the blocks \(\hat{G}_i\) and \(\hat{G}_i^{-1}\) are omitted.
|
||||
|
||||
\begin{equation}
|
||||
\begin{aligned}
|
||||
\hat{x} = &\Big( H_1 (1 + W_1 \Delta_1) + H_2 (1 + W_2 \Delta_2) \Big) x \\
|
||||
&+ \Big( H_1 (1 + W_1 \Delta_1) N_1 \Big) \tilde{n}_1 + \Big( H_2 (1 + W_2 \Delta_2) N_2 \Big) \tilde{n}_2
|
||||
\end{aligned}
|
||||
\end{equation}
|
||||
|
||||
\begin{equation}
|
||||
\begin{aligned}
|
||||
\hat{x} = &\Big( 1 + H_1 W_1 \Delta_1 + H_2 W_2 \Delta_2 \Big) x \\
|
||||
&+ \Big( H_1 (1 + W_1 \Delta_1) N_1 \Big) \tilde{n}_1 + \Big( H_2 (1 + W_2 \Delta_2) N_2 \Big) \tilde{n}_2
|
||||
\end{aligned}
|
||||
\end{equation}
|
||||
|
||||
The estimate \(\hat{x}\) of \(x\)
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,scale=1]{figs/sensor_fusion_arch_full.pdf}
|
||||
\caption{\label{fig:sensor_fusion_arch_full}Super Sensor Fusion with both sensor noise and sensor model uncertainty}
|
||||
\end{figure}
|
||||
|
||||
\subsection{Mixed \(\mathcal{H}_2/\mathcal{H}_\infty\) Synthesis}
|
||||
|
||||
The synthesis objective is to generate two complementary filters \(H_1(s)\) and \(H_2(s)\) such that the uncertainty associated with the super sensor is kept reasonably small and such that the RMS value of super sensors noise is minimized.
|
||||
|
||||
To specify how small we want the super sensor dynamic spread, we use a weighting filter \(W_u(s)\) as was done in Section \ref{sec:robust_fusion}.
|
||||
|
||||
|
||||
This synthesis problem can be solved using the mixed \(\mathcal{H}_2/\mathcal{H}_\infty\) synthesis on the following generalized plant:
|
||||
\begin{equation}
|
||||
\begin{pmatrix}
|
||||
z_{\infty, 1} \\ z_{\infty, 2} \\ z_{2, 1} \\ z_{2, 2} \\ v
|
||||
\end{pmatrix} = \underbrace{\begin{bmatrix}
|
||||
W_u W_1 & W_u W_1 \\
|
||||
0 & W_u W_2 \\
|
||||
N_1 & N_1 \\
|
||||
0 & N_2 \\
|
||||
1 & 0
|
||||
\end{bmatrix}}_{P_{\mathcal{H}_2/\mathcal{H}_\infty}} \begin{pmatrix}
|
||||
w \\ u
|
||||
\end{pmatrix}
|
||||
\end{equation}
|
||||
|
||||
The synthesis objective is to:
|
||||
\begin{itemize}
|
||||
\item Keep the \(\mathcal{H}_\infty\) norm from \(w\) to \((z_{\infty,1}, z_{\infty,2})\) below \(1\)
|
||||
\item Minimize the \(\mathcal{H}_2\) norm from \(w\) to \((z_{2,1}, z_{2,2})\)
|
||||
\end{itemize}
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,scale=1]{figs/mixed_h2_hinf_synthesis.pdf}
|
||||
\caption{\label{fig:mixed_h2_hinf_synthesis}Generalized plant \(P_{\mathcal{H}_2/\matlcal{H}_\infty}\) used for the mixed \(\mathcal{H}_2/\mathcal{H}_\infty\) synthesis of complementary filters}
|
||||
\end{figure}
|
||||
|
||||
\subsection{Example}
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,scale=1]{figs/htwo_hinf_comp_filters.pdf}
|
||||
\caption{\label{fig:htwo_hinf_comp_filters}Obtained complementary filters after mixed \(\mathcal{H}_2/\mathcal{H}_\infty\) synthesis}
|
||||
\end{figure}
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,scale=1]{figs/psd_sensors_htwo_hinf_synthesis.pdf}
|
||||
\caption{\label{fig:psd_sensors_htwo_hinf_synthesis}Power Spectral Density of the Super Sensor obtained with the mixed \(\mathcal{H}_2/\mathcal{H}_\infty\) synthesis}
|
||||
\end{figure}
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,scale=1]{figs/super_sensor_time_domain_h2_hinf.pdf}
|
||||
\caption{\label{fig:super_sensor_time_domain_h2_hinf}Noise of individual sensors and noise of the super sensor}
|
||||
\end{figure}
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,scale=1]{figs/super_sensor_dynamical_uncertainty_Htwo_Hinf.pdf}
|
||||
\caption{\label{fig:super_sensor_dynamical_uncertainty_Htwo_Hinf}Super sensor dynamical uncertainty (solid curve) when using the mixed \(\mathcal{H}_2/\mathcal{H}_\infty\) Synthesis}
|
||||
\end{figure}
|
||||
|
||||
\section{Experimental Validation}
|
||||
\label{sec:experimental_validation}
|
||||
|
||||
\subsection{Experimental Setup}
|
||||
|
||||
\subsection{Sensor Noise and Dynamical Uncertainty}
|
||||
|
||||
\subsection{Mixed \(\mathcal{H}_2/\mathcal{H}_\infty\) Synthesis}
|
||||
|
||||
\subsection{Super Sensor Noise and Dynamical Uncertainty}
|
||||
|
||||
\section{Conclusion}
|
||||
\label{sec:conclusion}
|
||||
|
||||
\section{Acknowledgment}
|
||||
|
||||
\bibliographystyle{IEEEtran}
|
||||
\bibliography{ref}
|
||||
\end{document}
|
BIN
journal/doc/IEEEtran_HOWTO.pdf
Normal file
BIN
journal/doc/IEEEtran_bst_HOWTO.pdf
Normal file
BIN
journal/doc/Transactions-instructions-only.pdf
Normal file
BIN
journal/figs/h_infinity_robust_fusion.pdf
Normal file
BIN
journal/figs/h_infinity_robust_fusion.png
Normal file
After Width: | Height: | Size: 14 KiB |
189
journal/figs/h_infinity_robust_fusion.svg
Normal file
@@ -0,0 +1,189 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="161.732pt" height="115.808pt" viewBox="0 0 161.732 115.808" version="1.2">
|
||||
<defs>
|
||||
<g>
|
||||
<symbol overflow="visible" id="glyph0-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<path style="stroke:none;" d="M 7.5 -5.296875 C 7.5 -6.0625 6.84375 -6.796875 5.546875 -6.796875 L 2.3125 -6.796875 C 2.125 -6.796875 2.015625 -6.796875 2.015625 -6.609375 C 2.015625 -6.484375 2.109375 -6.484375 2.3125 -6.484375 C 2.4375 -6.484375 2.625 -6.484375 2.734375 -6.46875 C 2.890625 -6.453125 2.953125 -6.421875 2.953125 -6.3125 C 2.953125 -6.265625 2.953125 -6.234375 2.921875 -6.125 L 1.578125 -0.78125 C 1.484375 -0.390625 1.46875 -0.3125 0.671875 -0.3125 C 0.5 -0.3125 0.390625 -0.3125 0.390625 -0.125 C 0.390625 0 0.515625 0 0.546875 0 L 1.8125 -0.03125 L 2.453125 -0.015625 C 2.671875 -0.015625 2.890625 0 3.09375 0 C 3.171875 0 3.296875 0 3.296875 -0.203125 C 3.296875 -0.3125 3.203125 -0.3125 3.015625 -0.3125 C 2.640625 -0.3125 2.375 -0.3125 2.375 -0.484375 C 2.375 -0.546875 2.390625 -0.59375 2.40625 -0.65625 L 3.015625 -3.140625 L 4.703125 -3.140625 C 6.125 -3.140625 7.5 -4.1875 7.5 -5.296875 Z M 6.578125 -5.53125 C 6.578125 -5.140625 6.375 -4.296875 5.984375 -3.9375 C 5.5 -3.484375 4.890625 -3.40625 4.453125 -3.40625 L 3.0625 -3.40625 L 3.734375 -6.109375 C 3.828125 -6.453125 3.84375 -6.484375 4.265625 -6.484375 L 5.21875 -6.484375 C 6.046875 -6.484375 6.578125 -6.21875 6.578125 -5.53125 Z M 6.578125 -5.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 10.4375 -6.6875 C 10.4375 -6.734375 10.390625 -6.796875 10.3125 -6.796875 C 10.078125 -6.796875 9.796875 -6.765625 9.546875 -6.765625 C 9.203125 -6.765625 8.84375 -6.796875 8.515625 -6.796875 C 8.453125 -6.796875 8.328125 -6.796875 8.328125 -6.609375 C 8.328125 -6.5 8.40625 -6.484375 8.46875 -6.484375 C 8.703125 -6.484375 9.0625 -6.40625 9.0625 -6.09375 C 9.0625 -5.984375 9 -5.90625 8.921875 -5.765625 L 6.234375 -1.078125 L 5.875 -6.015625 C 5.859375 -6.21875 5.84375 -6.484375 6.5625 -6.484375 C 6.734375 -6.484375 6.84375 -6.484375 6.84375 -6.6875 C 6.84375 -6.78125 6.734375 -6.796875 6.6875 -6.796875 C 6.296875 -6.796875 5.875 -6.765625 5.46875 -6.765625 C 5.25 -6.765625 4.65625 -6.796875 4.421875 -6.796875 C 4.375 -6.796875 4.234375 -6.796875 4.234375 -6.59375 C 4.234375 -6.484375 4.34375 -6.484375 4.484375 -6.484375 C 4.921875 -6.484375 4.984375 -6.421875 5 -6.234375 L 5.0625 -5.46875 L 2.546875 -1.078125 L 2.171875 -6.125 C 2.171875 -6.25 2.171875 -6.484375 2.921875 -6.484375 C 3.03125 -6.484375 3.140625 -6.484375 3.140625 -6.6875 C 3.140625 -6.796875 3 -6.796875 3 -6.796875 C 2.59375 -6.796875 2.1875 -6.765625 1.765625 -6.765625 C 1.421875 -6.765625 1.0625 -6.796875 0.734375 -6.796875 C 0.671875 -6.796875 0.546875 -6.796875 0.546875 -6.609375 C 0.546875 -6.484375 0.640625 -6.484375 0.796875 -6.484375 C 1.296875 -6.484375 1.296875 -6.40625 1.328125 -6.125 L 1.765625 -0.046875 C 1.78125 0.140625 1.796875 0.21875 1.9375 0.21875 C 2.046875 0.21875 2.078125 0.15625 2.171875 0.015625 L 5.09375 -5.0625 L 5.46875 -0.046875 C 5.484375 0.171875 5.5 0.21875 5.625 0.21875 C 5.75 0.21875 5.8125 0.125 5.859375 0.03125 L 9.125 -5.640625 C 9.375 -6.078125 9.609375 -6.4375 10.234375 -6.484375 C 10.328125 -6.5 10.4375 -6.5 10.4375 -6.6875 Z M 10.4375 -6.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 7.140625 -0.203125 C 7.140625 -0.3125 7.0625 -0.3125 6.875 -0.3125 C 6.5 -0.3125 6.21875 -0.3125 6.21875 -0.484375 C 6.21875 -0.546875 6.234375 -0.59375 6.25 -0.65625 L 7.59375 -6.03125 C 7.6875 -6.390625 7.703125 -6.484375 8.4375 -6.484375 C 8.6875 -6.484375 8.765625 -6.484375 8.765625 -6.6875 C 8.765625 -6.796875 8.65625 -6.796875 8.625 -6.796875 L 7.359375 -6.765625 L 6.078125 -6.796875 C 5.984375 -6.796875 5.875 -6.796875 5.875 -6.59375 C 5.875 -6.484375 5.96875 -6.484375 6.15625 -6.484375 C 6.15625 -6.484375 6.375 -6.484375 6.546875 -6.46875 C 6.71875 -6.453125 6.8125 -6.4375 6.8125 -6.3125 C 6.8125 -6.265625 6.796875 -6.25 6.765625 -6.125 L 6.171875 -3.6875 L 3.140625 -3.6875 L 3.71875 -6.03125 C 3.8125 -6.390625 3.84375 -6.484375 4.5625 -6.484375 C 4.8125 -6.484375 4.890625 -6.484375 4.890625 -6.6875 C 4.890625 -6.796875 4.78125 -6.796875 4.75 -6.796875 L 3.484375 -6.765625 L 2.203125 -6.796875 C 2.125 -6.796875 2.015625 -6.796875 2.015625 -6.59375 C 2.015625 -6.484375 2.09375 -6.484375 2.296875 -6.484375 C 2.296875 -6.484375 2.5 -6.484375 2.671875 -6.46875 C 2.84375 -6.453125 2.9375 -6.4375 2.9375 -6.3125 C 2.9375 -6.265625 2.921875 -6.234375 2.890625 -6.125 L 1.5625 -0.78125 C 1.46875 -0.390625 1.4375 -0.3125 0.65625 -0.3125 C 0.484375 -0.3125 0.390625 -0.3125 0.390625 -0.109375 C 0.390625 0 0.53125 0 0.53125 0 L 1.796875 -0.03125 L 2.421875 -0.015625 C 2.640625 -0.015625 2.859375 0 3.078125 0 C 3.15625 0 3.28125 0 3.28125 -0.203125 C 3.28125 -0.3125 3.1875 -0.3125 3 -0.3125 C 2.625 -0.3125 2.34375 -0.3125 2.34375 -0.484375 C 2.34375 -0.546875 2.375 -0.59375 2.375 -0.65625 L 3.0625 -3.390625 L 6.09375 -3.390625 L 5.40625 -0.640625 C 5.3125 -0.3125 5.109375 -0.3125 4.5 -0.3125 C 4.34375 -0.3125 4.265625 -0.3125 4.265625 -0.109375 C 4.265625 0 4.40625 0 4.40625 0 L 5.65625 -0.03125 L 6.296875 -0.015625 C 6.515625 -0.015625 6.734375 0 6.953125 0 C 7.03125 0 7.140625 0 7.140625 -0.203125 Z M 7.140625 -0.203125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 6.875 -3.703125 C 6.875 -4.25 6.609375 -4.40625 6.4375 -4.40625 C 6.1875 -4.40625 5.9375 -4.140625 5.9375 -3.921875 C 5.9375 -3.796875 6 -3.734375 6.09375 -3.65625 C 6.203125 -3.546875 6.453125 -3.28125 6.453125 -2.8125 C 6.453125 -2.46875 6.15625 -1.5 5.90625 -0.984375 C 5.640625 -0.453125 5.296875 -0.109375 4.8125 -0.109375 C 4.34375 -0.109375 4.078125 -0.40625 4.078125 -0.96875 C 4.078125 -1.25 4.140625 -1.5625 4.1875 -1.703125 L 4.59375 -3.375 C 4.640625 -3.59375 4.75 -3.96875 4.75 -4.015625 C 4.75 -4.203125 4.609375 -4.296875 4.453125 -4.296875 C 4.34375 -4.296875 4.15625 -4.203125 4.09375 -4.015625 C 4.0625 -3.9375 3.59375 -2.046875 3.515625 -1.78125 C 3.453125 -1.484375 3.4375 -1.296875 3.4375 -1.125 C 3.4375 -1.015625 3.4375 -1 3.4375 -0.953125 C 3.21875 -0.421875 2.921875 -0.109375 2.53125 -0.109375 C 1.734375 -0.109375 1.734375 -0.84375 1.734375 -1.015625 C 1.734375 -1.328125 1.78125 -1.71875 2.25 -2.953125 C 2.359375 -3.25 2.421875 -3.390625 2.421875 -3.578125 C 2.421875 -4.03125 2.09375 -4.40625 1.609375 -4.40625 C 0.65625 -4.40625 0.28125 -2.953125 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.78125 0.5625 -2.953125 C 0.84375 -3.875 1.21875 -4.1875 1.578125 -4.1875 C 1.65625 -4.1875 1.828125 -4.171875 1.828125 -3.859375 C 1.828125 -3.609375 1.71875 -3.328125 1.640625 -3.15625 C 1.203125 -1.984375 1.078125 -1.515625 1.078125 -1.140625 C 1.078125 -0.234375 1.75 0.109375 2.5 0.109375 C 2.671875 0.109375 3.140625 0.109375 3.53125 -0.59375 C 3.796875 0.046875 4.484375 0.109375 4.78125 0.109375 C 5.53125 0.109375 5.96875 -0.515625 6.21875 -1.109375 C 6.5625 -1.890625 6.875 -3.21875 6.875 -3.703125 Z M 6.875 -3.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 5.40625 -1.421875 C 5.40625 -1.515625 5.3125 -1.515625 5.28125 -1.515625 C 5.1875 -1.515625 5.171875 -1.484375 5.140625 -1.34375 C 5 -0.78125 4.8125 -0.109375 4.40625 -0.109375 C 4.1875 -0.109375 4.09375 -0.234375 4.09375 -0.5625 C 4.09375 -0.78125 4.203125 -1.25 4.296875 -1.609375 L 4.5625 -2.671875 C 4.59375 -2.828125 4.703125 -3.203125 4.734375 -3.359375 C 4.78125 -3.578125 4.890625 -3.96875 4.890625 -4.015625 C 4.890625 -4.203125 4.75 -4.296875 4.59375 -4.296875 C 4.546875 -4.296875 4.296875 -4.28125 4.203125 -3.9375 L 3.46875 -0.953125 C 3.453125 -0.90625 3.0625 -0.109375 2.328125 -0.109375 C 1.8125 -0.109375 1.71875 -0.5625 1.71875 -0.921875 C 1.71875 -1.484375 1.984375 -2.265625 2.25 -2.953125 C 2.375 -3.25 2.421875 -3.390625 2.421875 -3.578125 C 2.421875 -4.03125 2.09375 -4.40625 1.609375 -4.40625 C 0.65625 -4.40625 0.28125 -2.953125 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.78125 0.5625 -2.953125 C 0.8125 -3.8125 1.1875 -4.1875 1.578125 -4.1875 C 1.65625 -4.1875 1.828125 -4.171875 1.828125 -3.859375 C 1.828125 -3.609375 1.71875 -3.328125 1.65625 -3.171875 C 1.28125 -2.1875 1.078125 -1.578125 1.078125 -1.078125 C 1.078125 -0.140625 1.765625 0.109375 2.296875 0.109375 C 2.953125 0.109375 3.3125 -0.34375 3.484375 -0.5625 C 3.59375 -0.15625 3.9375 0.109375 4.375 0.109375 C 4.71875 0.109375 4.953125 -0.125 5.109375 -0.4375 C 5.28125 -0.796875 5.40625 -1.421875 5.40625 -1.421875 Z M 5.40625 -1.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 4.65625 -3.703125 C 4.65625 -4.234375 4.40625 -4.40625 4.21875 -4.40625 C 3.96875 -4.40625 3.734375 -4.140625 3.734375 -3.921875 C 3.734375 -3.796875 3.78125 -3.734375 3.890625 -3.625 C 4.09375 -3.421875 4.234375 -3.171875 4.234375 -2.8125 C 4.234375 -2.390625 3.625 -0.109375 2.453125 -0.109375 C 1.953125 -0.109375 1.71875 -0.453125 1.71875 -0.96875 C 1.71875 -1.53125 1.984375 -2.265625 2.296875 -3.078125 C 2.375 -3.25 2.421875 -3.390625 2.421875 -3.578125 C 2.421875 -4.03125 2.09375 -4.40625 1.609375 -4.40625 C 0.671875 -4.40625 0.28125 -2.953125 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.78125 0.5625 -2.953125 C 0.859375 -3.953125 1.28125 -4.1875 1.578125 -4.1875 C 1.65625 -4.1875 1.828125 -4.1875 1.828125 -3.859375 C 1.828125 -3.609375 1.71875 -3.34375 1.65625 -3.171875 C 1.21875 -2.015625 1.078125 -1.546875 1.078125 -1.125 C 1.078125 -0.046875 1.953125 0.109375 2.421875 0.109375 C 4.09375 0.109375 4.65625 -3.1875 4.65625 -3.703125 Z M 4.65625 -3.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 4.328125 -1.421875 C 4.328125 -1.46875 4.296875 -1.515625 4.203125 -1.515625 C 4.125 -1.515625 4.09375 -1.46875 4.078125 -1.390625 C 3.84375 -0.75 3.203125 -0.5625 2.875 -0.5625 C 2.671875 -0.5625 2.5 -0.609375 2.296875 -0.6875 C 1.953125 -0.8125 1.796875 -0.859375 1.59375 -0.859375 C 1.59375 -0.859375 1.40625 -0.859375 1.328125 -0.828125 C 1.859375 -1.40625 2.15625 -1.65625 2.515625 -1.953125 C 2.515625 -1.953125 3.125 -2.5 3.484375 -2.859375 C 4.421875 -3.78125 4.640625 -4.265625 4.640625 -4.296875 C 4.640625 -4.40625 4.53125 -4.40625 4.53125 -4.40625 C 4.46875 -4.40625 4.4375 -4.375 4.390625 -4.296875 C 4.09375 -3.8125 3.875 -3.65625 3.640625 -3.65625 C 3.40625 -3.65625 3.28125 -3.796875 3.140625 -3.96875 C 2.953125 -4.203125 2.78125 -4.40625 2.453125 -4.40625 C 1.703125 -4.40625 1.25 -3.46875 1.25 -3.265625 C 1.25 -3.21875 1.28125 -3.15625 1.359375 -3.15625 C 1.453125 -3.15625 1.46875 -3.203125 1.5 -3.265625 C 1.6875 -3.71875 2.265625 -3.734375 2.34375 -3.734375 C 2.546875 -3.734375 2.734375 -3.65625 2.96875 -3.578125 C 3.359375 -3.4375 3.46875 -3.4375 3.734375 -3.4375 C 3.375 -3 2.53125 -2.296875 2.34375 -2.125 L 1.453125 -1.296875 C 0.78125 -0.625 0.421875 -0.0625 0.421875 0.015625 C 0.421875 0.109375 0.546875 0.109375 0.546875 0.109375 C 0.625 0.109375 0.640625 0.09375 0.703125 -0.015625 C 0.9375 -0.375 1.234375 -0.640625 1.546875 -0.640625 C 1.78125 -0.640625 1.875 -0.546875 2.125 -0.265625 C 2.296875 -0.046875 2.484375 0.109375 2.765625 0.109375 C 3.75 0.109375 4.328125 -1.15625 4.328125 -1.421875 Z M 4.328125 -1.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<path style="stroke:none;" d="M 6.390625 -0.46875 C 6.390625 -0.515625 6.359375 -0.546875 6.3125 -0.546875 C 6.234375 -0.546875 6.109375 -0.5 6 -0.4375 C 5.859375 -0.359375 5.75 -0.265625 5.75 -0.1875 C 5.734375 -0.171875 5.734375 -0.140625 5.71875 -0.125 C 5.59375 -0.078125 5.4375 -0.078125 5.296875 -0.0625 C 5.09375 -0.0625 4.96875 -0.21875 4.984375 -0.421875 C 5.03125 -0.90625 5.09375 -1.390625 5.21875 -1.875 C 5.453125 -2.8125 5.765625 -3.75 6.125 -4.6875 C 6.140625 -4.75 6.109375 -4.765625 6.0625 -4.765625 C 5.984375 -4.765625 5.875 -4.734375 5.75 -4.65625 C 5.625 -4.59375 5.53125 -4.5 5.5 -4.4375 C 5.21875 -3.75 4.984375 -3.046875 4.78125 -2.359375 L 2.703125 -2.359375 L 2.828125 -2.84375 C 2.953125 -3.328125 3.03125 -3.8125 3.0625 -4.296875 C 3.078125 -4.578125 2.859375 -4.765625 2.578125 -4.765625 C 2.328125 -4.765625 2.09375 -4.734375 1.84375 -4.671875 C 1.46875 -4.578125 1.09375 -4.375 0.78125 -4.09375 C 0.578125 -3.921875 0.40625 -3.71875 0.28125 -3.484375 C 0.265625 -3.46875 0.265625 -3.421875 0.265625 -3.421875 C 0.265625 -3.390625 0.296875 -3.375 0.34375 -3.375 C 0.421875 -3.375 0.53125 -3.421875 0.640625 -3.484375 C 0.765625 -3.546875 0.859375 -3.625 0.890625 -3.6875 C 0.96875 -3.84375 1.078125 -3.984375 1.21875 -4.109375 C 1.3125 -4.1875 1.4375 -4.25 1.5625 -4.28125 C 1.734375 -4.328125 1.921875 -4.34375 2.078125 -4.34375 C 2.296875 -4.34375 2.4375 -4.1875 2.421875 -3.984375 C 2.390625 -3.515625 2.3125 -3.03125 2.1875 -2.5625 L 2.125 -2.359375 L 1.859375 -2.359375 C 1.78125 -2.359375 1.671875 -2.3125 1.546875 -2.25 C 1.40625 -2.15625 1.296875 -2.046875 1.296875 -1.984375 C 1.296875 -1.953125 1.3125 -1.9375 1.375 -1.9375 L 2.015625 -1.9375 C 1.8125 -1.21875 1.5625 -0.5 1.28125 0.203125 C 1.28125 0.265625 1.296875 0.296875 1.359375 0.296875 C 1.421875 0.296875 1.546875 0.25 1.65625 0.1875 C 1.796875 0.109375 1.890625 0.015625 1.921875 -0.046875 C 2.171875 -0.671875 2.390625 -1.296875 2.578125 -1.9375 L 4.453125 -1.9375 C 4.515625 -1.9375 4.59375 -1.953125 4.6875 -2 L 4.578125 -1.59375 C 4.453125 -1.09375 4.375 -0.609375 4.34375 -0.125 C 4.328125 0.171875 4.546875 0.375 4.84375 0.359375 C 5.09375 0.34375 5.375 0.3125 5.640625 0.203125 C 5.921875 0.09375 6.203125 -0.078125 6.328125 -0.34375 C 6.359375 -0.390625 6.375 -0.421875 6.390625 -0.46875 Z M 6.390625 -0.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-1">
|
||||
<path style="stroke:none;" d="M 6.140625 -1.078125 C 6.140625 -1.671875 5.640625 -2.203125 4.953125 -2.203125 C 4.203125 -2.203125 3.671875 -1.671875 3.4375 -1.359375 C 3.15625 -1.671875 2.65625 -2.203125 1.8125 -2.203125 C 1.15625 -2.203125 0.625 -1.703125 0.625 -1.0625 C 0.625 -0.46875 1.125 0.046875 1.796875 0.046875 C 2.546875 0.046875 3.09375 -0.46875 3.328125 -0.78125 C 3.609375 -0.46875 4.09375 0.046875 4.9375 0.046875 C 5.609375 0.046875 6.140625 -0.4375 6.140625 -1.078125 Z M 5.984375 -1.078125 C 5.984375 -0.578125 5.5 -0.25 5.03125 -0.25 C 4.578125 -0.25 4.1875 -0.546875 3.609375 -1.171875 C 3.96875 -1.640625 4.453125 -1.984375 5 -1.984375 C 5.59375 -1.984375 5.984375 -1.53125 5.984375 -1.078125 Z M 3.140625 -0.96875 C 2.796875 -0.5 2.3125 -0.15625 1.765625 -0.15625 C 1.171875 -0.15625 0.78125 -0.609375 0.78125 -1.0625 C 0.78125 -1.5625 1.25 -1.890625 1.734375 -1.890625 C 2.1875 -1.890625 2.578125 -1.59375 3.140625 -0.96875 Z M 3.140625 -0.96875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-1">
|
||||
<path style="stroke:none;" d="M 3.296875 0 L 3.296875 -0.25 L 3.03125 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.578125 L 2.328125 -4.4375 C 2.328125 -4.625 2.328125 -4.625 2.125 -4.625 C 1.671875 -4.1875 1.046875 -4.1875 0.765625 -4.1875 L 0.765625 -3.9375 C 0.921875 -3.9375 1.390625 -3.9375 1.765625 -4.125 L 1.765625 -0.578125 C 1.765625 -0.34375 1.765625 -0.25 1.078125 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.296875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-2">
|
||||
<path style="stroke:none;" d="M 3.515625 -1.265625 L 3.28125 -1.265625 C 3.265625 -1.109375 3.1875 -0.703125 3.09375 -0.640625 C 3.046875 -0.59375 2.515625 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.109375 -1.4375 2.515625 -1.765625 C 3.03125 -2.171875 3.515625 -2.609375 3.515625 -3.265625 C 3.515625 -4.109375 2.78125 -4.625 1.890625 -4.625 C 1.03125 -4.625 0.4375 -4.015625 0.4375 -3.375 C 0.4375 -3.03125 0.734375 -2.984375 0.8125 -2.984375 C 0.96875 -2.984375 1.171875 -3.109375 1.171875 -3.359375 C 1.171875 -3.484375 1.125 -3.734375 0.765625 -3.734375 C 0.984375 -4.21875 1.453125 -4.375 1.78125 -4.375 C 2.484375 -4.375 2.84375 -3.828125 2.84375 -3.265625 C 2.84375 -2.65625 2.40625 -2.1875 2.1875 -1.9375 L 0.515625 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.3125 0 Z M 3.515625 -1.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-1">
|
||||
<path style="stroke:none;" d="M 4.375 -1 C 4.375 -1.09375 4.28125 -1.09375 4.265625 -1.09375 C 4.15625 -1.09375 4.15625 -1.0625 4.109375 -0.875 C 4.015625 -0.546875 3.890625 -0.125 3.59375 -0.125 C 3.421875 -0.125 3.359375 -0.28125 3.359375 -0.46875 C 3.359375 -0.578125 3.421875 -0.84375 3.46875 -1.015625 L 3.78125 -2.265625 C 3.828125 -2.4375 3.90625 -2.75 3.90625 -2.78125 C 3.90625 -2.921875 3.796875 -3 3.671875 -3 C 3.421875 -3 3.359375 -2.796875 3.3125 -2.578125 L 2.953125 -1.125 C 2.90625 -0.984375 2.84375 -0.71875 2.84375 -0.71875 C 2.703125 -0.5 2.421875 -0.125 2 -0.125 C 1.515625 -0.125 1.515625 -0.578125 1.515625 -0.703125 C 1.515625 -1.109375 1.703125 -1.609375 1.90625 -2.125 C 1.953125 -2.265625 2 -2.359375 2 -2.46875 C 2 -2.84375 1.6875 -3.078125 1.34375 -3.078125 C 0.640625 -3.078125 0.328125 -2.125 0.328125 -2 C 0.328125 -1.921875 0.421875 -1.921875 0.453125 -1.921875 C 0.546875 -1.921875 0.546875 -1.953125 0.578125 -2.03125 C 0.734375 -2.59375 1.046875 -2.875 1.3125 -2.875 C 1.4375 -2.875 1.484375 -2.796875 1.484375 -2.640625 C 1.484375 -2.46875 1.4375 -2.328125 1.359375 -2.171875 C 0.984375 -1.203125 0.984375 -1 0.984375 -0.8125 C 0.984375 -0.703125 0.984375 -0.375 1.25 -0.15625 C 1.453125 0.015625 1.71875 0.0625 1.96875 0.0625 C 2.40625 0.0625 2.640625 -0.171875 2.875 -0.390625 C 3.03125 0.0625 3.484375 0.0625 3.578125 0.0625 C 3.8125 0.0625 4 -0.0625 4.125 -0.296875 C 4.28125 -0.578125 4.375 -0.96875 4.375 -1 Z M 4.375 -1 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-1">
|
||||
<path style="stroke:none;" d="M 8.09375 -3 C 8.09375 -3.21875 7.90625 -3.21875 7.71875 -3.21875 L 4.53125 -3.21875 L 4.53125 -6.40625 C 4.53125 -6.5625 4.53125 -6.78125 4.328125 -6.78125 C 4.109375 -6.78125 4.109375 -6.578125 4.109375 -6.40625 L 4.109375 -3.21875 L 0.921875 -3.21875 C 0.765625 -3.21875 0.546875 -3.21875 0.546875 -3.015625 C 0.546875 -2.796875 0.75 -2.796875 0.921875 -2.796875 L 4.109375 -2.796875 L 4.109375 0.390625 C 4.109375 0.5625 4.109375 0.765625 4.3125 0.765625 C 4.53125 0.765625 4.53125 0.578125 4.53125 0.390625 L 4.53125 -2.796875 L 7.71875 -2.796875 C 7.890625 -2.796875 8.09375 -2.796875 8.09375 -3 Z M 8.09375 -3 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-1">
|
||||
<path style="stroke:none;" d="M 6.90625 -2.484375 C 6.90625 -2.6875 6.71875 -2.6875 6.578125 -2.6875 L 1.15625 -2.6875 C 1.015625 -2.6875 0.828125 -2.6875 0.828125 -2.484375 C 0.828125 -2.296875 1.015625 -2.296875 1.15625 -2.296875 L 6.578125 -2.296875 C 6.71875 -2.296875 6.90625 -2.296875 6.90625 -2.484375 Z M 6.90625 -2.484375 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
<clipPath id="clip1">
|
||||
<path d="M 68 97 L 93 97 L 93 115.617188 L 68 115.617188 Z M 68 97 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip2">
|
||||
<path d="M 79 90 L 113 90 L 113 115.617188 L 79 115.617188 Z M 79 90 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip3">
|
||||
<path d="M 140 15 L 161.464844 15 L 161.464844 48 L 140 48 Z M 140 15 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip4">
|
||||
<path d="M 140 37 L 161.464844 37 L 161.464844 69 L 140 69 Z M 140 37 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<path style="fill-rule:nonzero;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M -59.529973 -35.433406 L 59.526461 -35.433406 L 59.526461 35.433892 L -59.529973 35.433892 Z M -59.529973 -35.433406 " transform="matrix(0.998345,0,0,-0.998345,80.732222,52.781493)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="70.250599" y="10.610409"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="76.637011" y="12.101936"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="83.449716" y="13.097286"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.182672 13.057011 L 53.860833 13.057011 L 53.860833 30.061719 L 31.182672 30.061719 Z M 31.182672 13.057011 " transform="matrix(0.998345,0,0,-0.998345,80.732222,52.781493)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="116.254329" y="33.910779"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="125.647756" y="35.403304"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.182672 -8.506024 L 53.860833 -8.506024 L 53.860833 8.502597 L 31.182672 8.502597 Z M 31.182672 -8.506024 " transform="matrix(0.998345,0,0,-0.998345,80.732222,52.781493)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="116.254329" y="55.434095"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-2" x="125.647756" y="56.92662"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.832315 13.057011 L 18.845846 13.057011 L 18.845846 30.061719 L -3.832315 30.061719 Z M -3.832315 13.057011 " transform="matrix(0.998345,0,0,-0.998345,80.732222,52.781493)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="80.930892" y="33.910779"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="90.324319" y="35.403304"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.832315 -8.506024 L 18.845846 -8.506024 L 18.845846 8.502597 L -3.832315 8.502597 Z M -3.832315 -8.506024 " transform="matrix(0.998345,0,0,-0.998345,80.732222,52.781493)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="80.930892" y="55.434095"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="90.324319" y="56.92662"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -21.337852 21.559365 C -21.337852 25.409487 -24.460208 28.531843 -28.31033 28.531843 C -32.164366 28.531843 -35.286721 25.409487 -35.286721 21.559365 C -35.286721 17.709242 -32.164366 14.586887 -28.31033 14.586887 C -24.460208 14.586887 -21.337852 17.709242 -21.337852 21.559365 Z M -21.337852 21.559365 " transform="matrix(0.998345,0,0,-0.998345,80.732222,52.781493)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-1" x="48.13826" y="34.170348"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph6-1" x="42.743204" y="46.011716"/>
|
||||
</g>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 69.414062 114.621094 L 92.050781 114.621094 L 92.050781 97.640625 L 69.414062 97.640625 Z M 69.414062 114.621094 "/>
|
||||
<g clip-path="url(#clip1)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -11.336924 -61.942126 L 11.337325 -61.942126 L 11.337325 -44.933505 L -11.336924 -44.933505 Z M -11.336924 -61.942126 " transform="matrix(0.998345,0,0,-0.998345,80.732222,52.781493)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-3" x="74.367774" y="108.782647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-2" x="82.635067" y="110.275173"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -79.868324 21.559365 L -39.919389 21.559365 " transform="matrix(0.998345,0,0,-0.998345,80.732222,52.781493)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054012 0.000174655 L 1.609155 1.682647 L 3.088165 0.000174655 L 1.609155 -1.682298 Z M 6.054012 0.000174655 " transform="matrix(0.998345,0,0,-0.998345,38.045852,31.257987)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="4.809096" y="27.446496"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -11.837753 -53.439772 L -69.94565 -53.439772 L -69.94565 0.000243092 L -8.961899 0.000243092 " transform="matrix(0.998345,0,0,-0.998345,80.732222,52.781493)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051519 0.000243092 L 1.610575 1.682715 L 3.085673 0.000243092 L 1.610575 -1.682229 Z M 6.051519 0.000243092 " transform="matrix(0.998345,0,0,-0.998345,68.950685,52.781493)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="8.054715" y="48.969812"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -28.31033 0.000243092 L -28.31033 9.950306 " transform="matrix(0.998345,0,0,-0.998345,80.732222,52.781493)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053347 -0.000839729 L 1.60849 1.681633 L 3.0875 -0.000839729 L 1.60849 -1.683312 Z M 6.053347 -0.000839729 " transform="matrix(0,-0.998345,-0.998345,0,52.467912,45.680046)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 54.457031 52.78125 C 54.457031 51.683594 53.566406 50.792969 52.46875 50.792969 C 51.371094 50.792969 50.480469 51.683594 50.480469 52.78125 C 50.480469 53.878906 51.371094 54.769531 52.46875 54.769531 C 53.566406 54.769531 54.457031 53.878906 54.457031 52.78125 Z M 54.457031 52.78125 "/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -21.337852 21.559365 L -8.961899 21.559365 " transform="matrix(0.998345,0,0,-0.998345,80.732222,52.781493)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051539 0.000174655 L 1.610595 1.682647 L 3.085693 0.000174655 L 1.610595 -1.682298 Z M 6.051539 0.000174655 " transform="matrix(0.998345,0,0,-0.998345,68.950665,31.257987)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -52.291429 21.559365 L -52.291429 -21.558878 L 69.946051 -21.558878 L 69.946051 -53.439772 L 16.470822 -53.439772 " transform="matrix(0.998345,0,0,-0.998345,80.732222,52.781493)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 93.964844 106.132812 L 98.402344 107.8125 L 96.925781 106.132812 L 98.402344 104.449219 Z M 93.964844 106.132812 "/>
|
||||
<g clip-path="url(#clip2)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054419 0.00174185 L 1.609562 1.684214 L 3.088573 0.00174185 L 1.609562 -1.684643 Z M 6.054419 0.00174185 " transform="matrix(-0.998345,0,0,0.998345,100.009242,106.131074)"/>
|
||||
</g>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 30.515625 31.257812 C 30.515625 30.160156 29.625 29.269531 28.527344 29.269531 C 27.425781 29.269531 26.535156 30.160156 26.535156 31.257812 C 26.535156 32.355469 27.425781 33.246094 28.527344 33.246094 C 29.625 33.246094 30.515625 32.355469 30.515625 31.257812 Z M 30.515625 31.257812 "/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="147.973741" y="70.493128"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.346675 21.559365 L 26.049175 21.559365 " transform="matrix(0.998345,0,0,-0.998345,80.732222,52.781493)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054196 0.000174655 L 1.609339 1.682647 L 3.08835 0.000174655 L 1.609339 -1.682298 Z M 6.054196 0.000174655 " transform="matrix(0.998345,0,0,-0.998345,103.905043,31.257987)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.346675 0.000243092 L 26.049175 0.000243092 " transform="matrix(0.998345,0,0,-0.998345,80.732222,52.781493)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054176 0.000243092 L 1.609319 1.682715 L 3.08833 0.000243092 L 1.609319 -1.682229 Z M 6.054176 0.000243092 " transform="matrix(0.998345,0,0,-0.998345,103.905063,52.781493)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.35775 21.559365 L 75.236057 21.559365 " transform="matrix(0.998345,0,0,-0.998345,80.732222,52.781493)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 159.054688 31.257812 L 154.617188 29.578125 L 156.09375 31.257812 L 154.617188 32.9375 Z M 159.054688 31.257812 "/>
|
||||
<g clip-path="url(#clip3)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.055328 0.000174655 L 1.610471 1.682647 L 3.089481 0.000174655 L 1.610471 -1.682298 Z M 6.055328 0.000174655 " transform="matrix(0.998345,0,0,-0.998345,153.009382,31.257987)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="147.568413" y="25.954969"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="152.193745" y="27.446496"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.35775 0.000243092 L 75.236057 0.000243092 " transform="matrix(0.998345,0,0,-0.998345,80.732222,52.781493)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 159.054688 52.78125 L 154.617188 51.101562 L 156.09375 52.78125 L 154.617188 54.460938 Z M 159.054688 52.78125 "/>
|
||||
<g clip-path="url(#clip4)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.055318 0.000243092 L 1.610461 1.682715 L 3.089471 0.000243092 L 1.610461 -1.682229 Z M 6.055318 0.000243092 " transform="matrix(0.998345,0,0,-0.998345,153.009392,52.781493)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="147.568413" y="47.477287"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-2" x="152.193745" y="48.969812"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 32 KiB |
BIN
journal/figs/h_two_optimal_fusion.pdf
Normal file
BIN
journal/figs/h_two_optimal_fusion.png
Normal file
After Width: | Height: | Size: 11 KiB |
170
journal/figs/h_two_optimal_fusion.svg
Normal file
@@ -0,0 +1,170 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="141.89pt" height="115.808pt" viewBox="0 0 141.89 115.808" version="1.2">
|
||||
<defs>
|
||||
<g>
|
||||
<symbol overflow="visible" id="glyph0-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<path style="stroke:none;" d="M 7.5 -5.296875 C 7.5 -6.0625 6.84375 -6.796875 5.546875 -6.796875 L 2.3125 -6.796875 C 2.125 -6.796875 2.015625 -6.796875 2.015625 -6.609375 C 2.015625 -6.484375 2.109375 -6.484375 2.3125 -6.484375 C 2.4375 -6.484375 2.625 -6.484375 2.734375 -6.46875 C 2.890625 -6.453125 2.953125 -6.421875 2.953125 -6.3125 C 2.953125 -6.265625 2.953125 -6.234375 2.921875 -6.125 L 1.578125 -0.78125 C 1.484375 -0.390625 1.46875 -0.3125 0.671875 -0.3125 C 0.5 -0.3125 0.390625 -0.3125 0.390625 -0.125 C 0.390625 0 0.515625 0 0.546875 0 L 1.8125 -0.03125 L 2.453125 -0.015625 C 2.671875 -0.015625 2.890625 0 3.09375 0 C 3.171875 0 3.296875 0 3.296875 -0.203125 C 3.296875 -0.3125 3.203125 -0.3125 3.015625 -0.3125 C 2.640625 -0.3125 2.375 -0.3125 2.375 -0.484375 C 2.375 -0.546875 2.390625 -0.59375 2.40625 -0.65625 L 3.015625 -3.140625 L 4.703125 -3.140625 C 6.125 -3.140625 7.5 -4.1875 7.5 -5.296875 Z M 6.578125 -5.53125 C 6.578125 -5.140625 6.375 -4.296875 5.984375 -3.9375 C 5.5 -3.484375 4.890625 -3.40625 4.453125 -3.40625 L 3.0625 -3.40625 L 3.734375 -6.109375 C 3.828125 -6.453125 3.84375 -6.484375 4.265625 -6.484375 L 5.21875 -6.484375 C 6.046875 -6.484375 6.578125 -6.21875 6.578125 -5.53125 Z M 6.578125 -5.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 8.765625 -6.6875 C 8.765625 -6.6875 8.765625 -6.796875 8.640625 -6.796875 C 8.3125 -6.796875 7.96875 -6.765625 7.640625 -6.765625 C 7.296875 -6.765625 6.953125 -6.796875 6.625 -6.796875 C 6.5625 -6.796875 6.4375 -6.796875 6.4375 -6.59375 C 6.4375 -6.484375 6.546875 -6.484375 6.625 -6.484375 C 7.1875 -6.484375 7.296875 -6.265625 7.296875 -6.046875 C 7.296875 -6.015625 7.28125 -5.875 7.265625 -5.84375 L 6.15625 -1.40625 L 3.953125 -6.609375 C 3.875 -6.78125 3.859375 -6.796875 3.640625 -6.796875 L 2.296875 -6.796875 C 2.09375 -6.796875 2.015625 -6.796875 2.015625 -6.59375 C 2.015625 -6.484375 2.09375 -6.484375 2.296875 -6.484375 C 2.34375 -6.484375 2.96875 -6.484375 2.96875 -6.40625 L 1.625 -1.0625 C 1.53125 -0.65625 1.359375 -0.34375 0.5625 -0.3125 C 0.5 -0.3125 0.390625 -0.296875 0.390625 -0.109375 C 0.390625 -0.046875 0.4375 0 0.515625 0 C 0.84375 0 1.1875 -0.03125 1.515625 -0.03125 C 1.84375 -0.03125 2.203125 0 2.53125 0 C 2.59375 0 2.71875 0 2.71875 -0.203125 C 2.71875 -0.296875 2.625 -0.3125 2.515625 -0.3125 C 1.9375 -0.328125 1.859375 -0.546875 1.859375 -0.75 C 1.859375 -0.8125 1.875 -0.859375 1.90625 -0.96875 L 3.21875 -6.234375 C 3.25 -6.171875 3.25 -6.15625 3.296875 -6.046875 L 5.78125 -0.1875 C 5.859375 -0.015625 5.875 0 5.96875 0 C 6.078125 0 6.078125 -0.03125 6.125 -0.203125 L 7.53125 -5.75 C 7.625 -6.15625 7.796875 -6.453125 8.59375 -6.484375 C 8.65625 -6.484375 8.765625 -6.5 8.765625 -6.6875 Z M 8.765625 -6.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 7.140625 -0.203125 C 7.140625 -0.3125 7.0625 -0.3125 6.875 -0.3125 C 6.5 -0.3125 6.21875 -0.3125 6.21875 -0.484375 C 6.21875 -0.546875 6.234375 -0.59375 6.25 -0.65625 L 7.59375 -6.03125 C 7.6875 -6.390625 7.703125 -6.484375 8.4375 -6.484375 C 8.6875 -6.484375 8.765625 -6.484375 8.765625 -6.6875 C 8.765625 -6.796875 8.65625 -6.796875 8.625 -6.796875 L 7.359375 -6.765625 L 6.078125 -6.796875 C 5.984375 -6.796875 5.875 -6.796875 5.875 -6.59375 C 5.875 -6.484375 5.96875 -6.484375 6.15625 -6.484375 C 6.15625 -6.484375 6.375 -6.484375 6.546875 -6.46875 C 6.71875 -6.453125 6.8125 -6.4375 6.8125 -6.3125 C 6.8125 -6.265625 6.796875 -6.25 6.765625 -6.125 L 6.171875 -3.6875 L 3.140625 -3.6875 L 3.71875 -6.03125 C 3.8125 -6.390625 3.84375 -6.484375 4.5625 -6.484375 C 4.8125 -6.484375 4.890625 -6.484375 4.890625 -6.6875 C 4.890625 -6.796875 4.78125 -6.796875 4.75 -6.796875 L 3.484375 -6.765625 L 2.203125 -6.796875 C 2.125 -6.796875 2.015625 -6.796875 2.015625 -6.59375 C 2.015625 -6.484375 2.09375 -6.484375 2.296875 -6.484375 C 2.296875 -6.484375 2.5 -6.484375 2.671875 -6.46875 C 2.84375 -6.453125 2.9375 -6.4375 2.9375 -6.3125 C 2.9375 -6.265625 2.921875 -6.234375 2.890625 -6.125 L 1.5625 -0.78125 C 1.46875 -0.390625 1.4375 -0.3125 0.65625 -0.3125 C 0.484375 -0.3125 0.390625 -0.3125 0.390625 -0.109375 C 0.390625 0 0.53125 0 0.53125 0 L 1.796875 -0.03125 L 2.421875 -0.015625 C 2.640625 -0.015625 2.859375 0 3.078125 0 C 3.15625 0 3.28125 0 3.28125 -0.203125 C 3.28125 -0.3125 3.1875 -0.3125 3 -0.3125 C 2.625 -0.3125 2.34375 -0.3125 2.34375 -0.484375 C 2.34375 -0.546875 2.375 -0.59375 2.375 -0.65625 L 3.0625 -3.390625 L 6.09375 -3.390625 L 5.40625 -0.640625 C 5.3125 -0.3125 5.109375 -0.3125 4.5 -0.3125 C 4.34375 -0.3125 4.265625 -0.3125 4.265625 -0.109375 C 4.265625 0 4.40625 0 4.40625 0 L 5.65625 -0.03125 L 6.296875 -0.015625 C 6.515625 -0.015625 6.734375 0 6.953125 0 C 7.03125 0 7.140625 0 7.140625 -0.203125 Z M 7.140625 -0.203125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 6.875 -3.703125 C 6.875 -4.25 6.609375 -4.40625 6.4375 -4.40625 C 6.1875 -4.40625 5.9375 -4.140625 5.9375 -3.921875 C 5.9375 -3.796875 6 -3.734375 6.09375 -3.65625 C 6.203125 -3.546875 6.453125 -3.28125 6.453125 -2.8125 C 6.453125 -2.46875 6.15625 -1.5 5.90625 -0.984375 C 5.640625 -0.453125 5.296875 -0.109375 4.8125 -0.109375 C 4.34375 -0.109375 4.078125 -0.40625 4.078125 -0.96875 C 4.078125 -1.25 4.140625 -1.5625 4.1875 -1.703125 L 4.59375 -3.375 C 4.640625 -3.59375 4.75 -3.96875 4.75 -4.015625 C 4.75 -4.203125 4.609375 -4.296875 4.453125 -4.296875 C 4.34375 -4.296875 4.15625 -4.203125 4.09375 -4.015625 C 4.0625 -3.9375 3.59375 -2.046875 3.515625 -1.78125 C 3.453125 -1.484375 3.4375 -1.296875 3.4375 -1.125 C 3.4375 -1.015625 3.4375 -1 3.4375 -0.953125 C 3.21875 -0.421875 2.921875 -0.109375 2.53125 -0.109375 C 1.734375 -0.109375 1.734375 -0.84375 1.734375 -1.015625 C 1.734375 -1.328125 1.78125 -1.71875 2.25 -2.953125 C 2.359375 -3.25 2.421875 -3.390625 2.421875 -3.578125 C 2.421875 -4.03125 2.09375 -4.40625 1.609375 -4.40625 C 0.65625 -4.40625 0.28125 -2.953125 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.78125 0.5625 -2.953125 C 0.84375 -3.875 1.21875 -4.1875 1.578125 -4.1875 C 1.65625 -4.1875 1.828125 -4.171875 1.828125 -3.859375 C 1.828125 -3.609375 1.71875 -3.328125 1.640625 -3.15625 C 1.203125 -1.984375 1.078125 -1.515625 1.078125 -1.140625 C 1.078125 -0.234375 1.75 0.109375 2.5 0.109375 C 2.671875 0.109375 3.140625 0.109375 3.53125 -0.59375 C 3.796875 0.046875 4.484375 0.109375 4.78125 0.109375 C 5.53125 0.109375 5.96875 -0.515625 6.21875 -1.109375 C 6.5625 -1.890625 6.875 -3.21875 6.875 -3.703125 Z M 6.875 -3.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 5.40625 -1.421875 C 5.40625 -1.515625 5.3125 -1.515625 5.28125 -1.515625 C 5.1875 -1.515625 5.171875 -1.484375 5.140625 -1.34375 C 5 -0.78125 4.8125 -0.109375 4.40625 -0.109375 C 4.1875 -0.109375 4.09375 -0.234375 4.09375 -0.5625 C 4.09375 -0.78125 4.203125 -1.25 4.296875 -1.609375 L 4.5625 -2.671875 C 4.59375 -2.828125 4.703125 -3.203125 4.734375 -3.359375 C 4.78125 -3.578125 4.890625 -3.96875 4.890625 -4.015625 C 4.890625 -4.203125 4.75 -4.296875 4.59375 -4.296875 C 4.546875 -4.296875 4.296875 -4.28125 4.203125 -3.9375 L 3.46875 -0.953125 C 3.453125 -0.90625 3.0625 -0.109375 2.328125 -0.109375 C 1.8125 -0.109375 1.71875 -0.5625 1.71875 -0.921875 C 1.71875 -1.484375 1.984375 -2.265625 2.25 -2.953125 C 2.375 -3.25 2.421875 -3.390625 2.421875 -3.578125 C 2.421875 -4.03125 2.09375 -4.40625 1.609375 -4.40625 C 0.65625 -4.40625 0.28125 -2.953125 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.78125 0.5625 -2.953125 C 0.8125 -3.8125 1.1875 -4.1875 1.578125 -4.1875 C 1.65625 -4.1875 1.828125 -4.171875 1.828125 -3.859375 C 1.828125 -3.609375 1.71875 -3.328125 1.65625 -3.171875 C 1.28125 -2.1875 1.078125 -1.578125 1.078125 -1.078125 C 1.078125 -0.140625 1.765625 0.109375 2.296875 0.109375 C 2.953125 0.109375 3.3125 -0.34375 3.484375 -0.5625 C 3.59375 -0.15625 3.9375 0.109375 4.375 0.109375 C 4.71875 0.109375 4.953125 -0.125 5.109375 -0.4375 C 5.28125 -0.796875 5.40625 -1.421875 5.40625 -1.421875 Z M 5.40625 -1.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 4.65625 -3.703125 C 4.65625 -4.234375 4.40625 -4.40625 4.21875 -4.40625 C 3.96875 -4.40625 3.734375 -4.140625 3.734375 -3.921875 C 3.734375 -3.796875 3.78125 -3.734375 3.890625 -3.625 C 4.09375 -3.421875 4.234375 -3.171875 4.234375 -2.8125 C 4.234375 -2.390625 3.625 -0.109375 2.453125 -0.109375 C 1.953125 -0.109375 1.71875 -0.453125 1.71875 -0.96875 C 1.71875 -1.53125 1.984375 -2.265625 2.296875 -3.078125 C 2.375 -3.25 2.421875 -3.390625 2.421875 -3.578125 C 2.421875 -4.03125 2.09375 -4.40625 1.609375 -4.40625 C 0.671875 -4.40625 0.28125 -2.953125 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.78125 0.5625 -2.953125 C 0.859375 -3.953125 1.28125 -4.1875 1.578125 -4.1875 C 1.65625 -4.1875 1.828125 -4.1875 1.828125 -3.859375 C 1.828125 -3.609375 1.71875 -3.34375 1.65625 -3.171875 C 1.21875 -2.015625 1.078125 -1.546875 1.078125 -1.125 C 1.078125 -0.046875 1.953125 0.109375 2.421875 0.109375 C 4.09375 0.109375 4.65625 -3.1875 4.65625 -3.703125 Z M 4.65625 -3.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 4.328125 -1.421875 C 4.328125 -1.46875 4.296875 -1.515625 4.203125 -1.515625 C 4.125 -1.515625 4.09375 -1.46875 4.078125 -1.390625 C 3.84375 -0.75 3.203125 -0.5625 2.875 -0.5625 C 2.671875 -0.5625 2.5 -0.609375 2.296875 -0.6875 C 1.953125 -0.8125 1.796875 -0.859375 1.59375 -0.859375 C 1.59375 -0.859375 1.40625 -0.859375 1.328125 -0.828125 C 1.859375 -1.40625 2.15625 -1.65625 2.515625 -1.953125 C 2.515625 -1.953125 3.125 -2.5 3.484375 -2.859375 C 4.421875 -3.78125 4.640625 -4.265625 4.640625 -4.296875 C 4.640625 -4.40625 4.53125 -4.40625 4.53125 -4.40625 C 4.46875 -4.40625 4.4375 -4.375 4.390625 -4.296875 C 4.09375 -3.8125 3.875 -3.65625 3.640625 -3.65625 C 3.40625 -3.65625 3.28125 -3.796875 3.140625 -3.96875 C 2.953125 -4.203125 2.78125 -4.40625 2.453125 -4.40625 C 1.703125 -4.40625 1.25 -3.46875 1.25 -3.265625 C 1.25 -3.21875 1.28125 -3.15625 1.359375 -3.15625 C 1.453125 -3.15625 1.46875 -3.203125 1.5 -3.265625 C 1.6875 -3.71875 2.265625 -3.734375 2.34375 -3.734375 C 2.546875 -3.734375 2.734375 -3.65625 2.96875 -3.578125 C 3.359375 -3.4375 3.46875 -3.4375 3.734375 -3.4375 C 3.375 -3 2.53125 -2.296875 2.34375 -2.125 L 1.453125 -1.296875 C 0.78125 -0.625 0.421875 -0.0625 0.421875 0.015625 C 0.421875 0.109375 0.546875 0.109375 0.546875 0.109375 C 0.625 0.109375 0.640625 0.09375 0.703125 -0.015625 C 0.9375 -0.375 1.234375 -0.640625 1.546875 -0.640625 C 1.78125 -0.640625 1.875 -0.546875 2.125 -0.265625 C 2.296875 -0.046875 2.484375 0.109375 2.765625 0.109375 C 3.75 0.109375 4.328125 -1.15625 4.328125 -1.421875 Z M 4.328125 -1.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<path style="stroke:none;" d="M 6.390625 -0.46875 C 6.390625 -0.515625 6.359375 -0.546875 6.3125 -0.546875 C 6.234375 -0.546875 6.109375 -0.5 6 -0.4375 C 5.859375 -0.359375 5.75 -0.265625 5.75 -0.1875 C 5.734375 -0.171875 5.734375 -0.140625 5.71875 -0.125 C 5.59375 -0.078125 5.4375 -0.078125 5.296875 -0.0625 C 5.09375 -0.0625 4.96875 -0.21875 4.984375 -0.421875 C 5.03125 -0.90625 5.09375 -1.390625 5.21875 -1.875 C 5.453125 -2.8125 5.765625 -3.75 6.125 -4.6875 C 6.140625 -4.75 6.109375 -4.765625 6.0625 -4.765625 C 5.984375 -4.765625 5.875 -4.734375 5.75 -4.65625 C 5.625 -4.59375 5.53125 -4.5 5.5 -4.4375 C 5.21875 -3.75 4.984375 -3.046875 4.78125 -2.359375 L 2.703125 -2.359375 L 2.828125 -2.84375 C 2.953125 -3.328125 3.03125 -3.8125 3.0625 -4.296875 C 3.078125 -4.578125 2.859375 -4.765625 2.578125 -4.765625 C 2.328125 -4.765625 2.09375 -4.734375 1.84375 -4.671875 C 1.46875 -4.578125 1.09375 -4.375 0.78125 -4.09375 C 0.578125 -3.921875 0.40625 -3.71875 0.28125 -3.484375 C 0.265625 -3.46875 0.265625 -3.421875 0.265625 -3.421875 C 0.265625 -3.390625 0.296875 -3.375 0.34375 -3.375 C 0.421875 -3.375 0.53125 -3.421875 0.640625 -3.484375 C 0.765625 -3.546875 0.859375 -3.625 0.890625 -3.6875 C 0.96875 -3.84375 1.078125 -3.984375 1.21875 -4.109375 C 1.3125 -4.1875 1.4375 -4.25 1.5625 -4.28125 C 1.734375 -4.328125 1.921875 -4.34375 2.078125 -4.34375 C 2.296875 -4.34375 2.4375 -4.1875 2.421875 -3.984375 C 2.390625 -3.515625 2.3125 -3.03125 2.1875 -2.5625 L 2.125 -2.359375 L 1.859375 -2.359375 C 1.78125 -2.359375 1.671875 -2.3125 1.546875 -2.25 C 1.40625 -2.15625 1.296875 -2.046875 1.296875 -1.984375 C 1.296875 -1.953125 1.3125 -1.9375 1.375 -1.9375 L 2.015625 -1.9375 C 1.8125 -1.21875 1.5625 -0.5 1.28125 0.203125 C 1.28125 0.265625 1.296875 0.296875 1.359375 0.296875 C 1.421875 0.296875 1.546875 0.25 1.65625 0.1875 C 1.796875 0.109375 1.890625 0.015625 1.921875 -0.046875 C 2.171875 -0.671875 2.390625 -1.296875 2.578125 -1.9375 L 4.453125 -1.9375 C 4.515625 -1.9375 4.59375 -1.953125 4.6875 -2 L 4.578125 -1.59375 C 4.453125 -1.09375 4.375 -0.609375 4.34375 -0.125 C 4.328125 0.171875 4.546875 0.375 4.84375 0.359375 C 5.09375 0.34375 5.375 0.3125 5.640625 0.203125 C 5.921875 0.09375 6.203125 -0.078125 6.328125 -0.34375 C 6.359375 -0.390625 6.375 -0.421875 6.390625 -0.46875 Z M 6.390625 -0.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-1">
|
||||
<path style="stroke:none;" d="M 2.921875 -0.953125 L 2.71875 -0.953125 C 2.703125 -0.859375 2.65625 -0.5625 2.578125 -0.5 C 2.53125 -0.484375 2.109375 -0.484375 2.046875 -0.484375 L 1.0625 -0.484375 C 1.390625 -0.71875 1.765625 -1 2.0625 -1.203125 C 2.515625 -1.5 2.921875 -1.796875 2.921875 -2.328125 C 2.921875 -2.953125 2.328125 -3.3125 1.609375 -3.3125 C 0.9375 -3.3125 0.453125 -2.921875 0.453125 -2.4375 C 0.453125 -2.171875 0.671875 -2.125 0.734375 -2.125 C 0.875 -2.125 1.03125 -2.21875 1.03125 -2.421875 C 1.03125 -2.609375 0.90625 -2.703125 0.75 -2.71875 C 0.890625 -2.9375 1.171875 -3.09375 1.515625 -3.09375 C 2 -3.09375 2.390625 -2.796875 2.390625 -2.3125 C 2.390625 -1.890625 2.109375 -1.578125 1.71875 -1.25 L 0.515625 -0.234375 C 0.46875 -0.1875 0.453125 -0.1875 0.453125 -0.15625 L 0.453125 0 L 2.765625 0 Z M 2.921875 -0.953125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-1">
|
||||
<path style="stroke:none;" d="M 3.296875 0 L 3.296875 -0.25 L 3.03125 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.578125 L 2.328125 -4.4375 C 2.328125 -4.625 2.328125 -4.625 2.125 -4.625 C 1.671875 -4.1875 1.046875 -4.1875 0.765625 -4.1875 L 0.765625 -3.9375 C 0.921875 -3.9375 1.390625 -3.9375 1.765625 -4.125 L 1.765625 -0.578125 C 1.765625 -0.34375 1.765625 -0.25 1.078125 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.296875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-2">
|
||||
<path style="stroke:none;" d="M 3.515625 -1.265625 L 3.28125 -1.265625 C 3.265625 -1.109375 3.1875 -0.703125 3.09375 -0.640625 C 3.046875 -0.59375 2.515625 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.109375 -1.4375 2.515625 -1.765625 C 3.03125 -2.171875 3.515625 -2.609375 3.515625 -3.265625 C 3.515625 -4.109375 2.78125 -4.625 1.890625 -4.625 C 1.03125 -4.625 0.4375 -4.015625 0.4375 -3.375 C 0.4375 -3.03125 0.734375 -2.984375 0.8125 -2.984375 C 0.96875 -2.984375 1.171875 -3.109375 1.171875 -3.359375 C 1.171875 -3.484375 1.125 -3.734375 0.765625 -3.734375 C 0.984375 -4.21875 1.453125 -4.375 1.78125 -4.375 C 2.484375 -4.375 2.84375 -3.828125 2.84375 -3.265625 C 2.84375 -2.65625 2.40625 -2.1875 2.1875 -1.9375 L 0.515625 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.3125 0 Z M 3.515625 -1.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-1">
|
||||
<path style="stroke:none;" d="M 8.09375 -3 C 8.09375 -3.21875 7.90625 -3.21875 7.71875 -3.21875 L 4.53125 -3.21875 L 4.53125 -6.40625 C 4.53125 -6.5625 4.53125 -6.78125 4.328125 -6.78125 C 4.109375 -6.78125 4.109375 -6.578125 4.109375 -6.40625 L 4.109375 -3.21875 L 0.921875 -3.21875 C 0.765625 -3.21875 0.546875 -3.21875 0.546875 -3.015625 C 0.546875 -2.796875 0.75 -2.796875 0.921875 -2.796875 L 4.109375 -2.796875 L 4.109375 0.390625 C 4.109375 0.5625 4.109375 0.765625 4.3125 0.765625 C 4.53125 0.765625 4.53125 0.578125 4.53125 0.390625 L 4.53125 -2.796875 L 7.71875 -2.796875 C 7.890625 -2.796875 8.09375 -2.796875 8.09375 -3 Z M 8.09375 -3 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-1">
|
||||
<path style="stroke:none;" d="M 6.90625 -2.484375 C 6.90625 -2.6875 6.71875 -2.6875 6.578125 -2.6875 L 1.15625 -2.6875 C 1.015625 -2.6875 0.828125 -2.6875 0.828125 -2.484375 C 0.828125 -2.296875 1.015625 -2.296875 1.15625 -2.296875 L 6.578125 -2.296875 C 6.71875 -2.296875 6.90625 -2.296875 6.90625 -2.484375 Z M 6.90625 -2.484375 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
<clipPath id="clip1">
|
||||
<path d="M 59 97 L 83 97 L 83 115.617188 L 59 115.617188 Z M 59 97 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip2">
|
||||
<path d="M 0.0625 30 L 57 30 L 57 32 L 0.0625 32 Z M 0.0625 30 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip3">
|
||||
<path d="M 70 90 L 103 90 L 103 115.617188 L 70 115.617188 Z M 70 90 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip4">
|
||||
<path d="M 120 15 L 141.71875 15 L 141.71875 48 L 120 48 Z M 120 15 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip5">
|
||||
<path d="M 120 37 L 141.71875 37 L 141.71875 69 L 120 69 Z M 120 37 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<path style="fill-rule:nonzero;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M -49.605008 -35.433406 L 49.606078 -35.433406 L 49.606078 35.433892 L -49.605008 35.433892 Z M -49.605008 -35.433406 " transform="matrix(0.998345,0,0,-0.998345,70.890091,52.781493)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="62.100663" y="10.610409"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="68.486077" y="12.101936"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="75.29978" y="13.097286"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.258376 13.057011 L 43.936538 13.057011 L 43.936538 30.061719 L 21.258376 30.061719 Z M 21.258376 13.057011 " transform="matrix(0.998345,0,0,-0.998345,70.890091,52.781493)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="97.207459" y="33.910779"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="105.199209" y="35.403304"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.258376 -8.506024 L 43.936538 -8.506024 L 43.936538 8.502597 L 21.258376 8.502597 Z M 21.258376 -8.506024 " transform="matrix(0.998345,0,0,-0.998345,70.890091,52.781493)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="97.207459" y="55.434095"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-2" x="105.199209" y="56.92662"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.752839 21.559365 C 3.752839 25.409487 0.630484 28.531843 -3.219639 28.531843 C -7.073674 28.531843 -10.19603 25.409487 -10.19603 21.559365 C -10.19603 17.709242 -7.073674 14.586887 -3.219639 14.586887 C 0.630484 14.586887 3.752839 17.709242 3.752839 21.559365 Z M 3.752839 21.559365 " transform="matrix(0.998345,0,0,-0.998345,70.890091,52.781493)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="63.344601" y="34.170348"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-1" x="57.950544" y="46.011716"/>
|
||||
</g>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 59.570312 114.621094 L 82.210938 114.621094 L 82.210938 97.640625 L 59.570312 97.640625 Z M 59.570312 114.621094 "/>
|
||||
<g clip-path="url(#clip1)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -11.338546 -61.942126 L 11.339615 -61.942126 L 11.339615 -44.933505 L -11.338546 -44.933505 Z M -11.338546 -61.942126 " transform="matrix(0.998345,0,0,-0.998345,70.890091,52.781493)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-3" x="64.525643" y="108.783646"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-2" x="72.792936" y="110.275173"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip2)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -69.947272 21.559365 L -14.828698 21.559365 " transform="matrix(0.998345,0,0,-0.998345,70.890091,52.781493)"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053703 0.000174655 L 1.608846 1.682647 L 3.087857 0.000174655 L 1.608846 -1.682298 Z M 6.053703 0.000174655 " transform="matrix(0.998345,0,0,-0.998345,53.253192,31.257987)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="4.871544" y="27.446496"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -11.835462 -53.439772 L -60.024598 -53.439772 L -60.024598 0.000243092 L 16.128792 0.000243092 " transform="matrix(0.998345,0,0,-0.998345,70.890091,52.781493)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.055153 0.000243092 L 1.610296 1.682715 L 3.089307 0.000243092 L 1.610296 -1.682229 Z M 6.055153 0.000243092 " transform="matrix(0.998345,0,0,-0.998345,84.157994,52.781493)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="8.117163" y="48.969812"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.219639 0.000243092 L -3.219639 9.950306 " transform="matrix(0.998345,0,0,-0.998345,70.890091,52.781493)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053347 -0.000531158 L 1.60849 1.681941 L 3.0875 -0.000531158 L 1.60849 -1.683003 Z M 6.053347 -0.000531158 " transform="matrix(0,-0.998345,-0.998345,0,67.675251,45.680046)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 69.664062 52.78125 C 69.664062 51.683594 68.773438 50.792969 67.675781 50.792969 C 66.578125 50.792969 65.6875 51.683594 65.6875 52.78125 C 65.6875 53.878906 66.578125 54.769531 67.675781 54.769531 C 68.773438 54.769531 69.664062 53.878906 69.664062 52.78125 Z M 69.664062 52.78125 "/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.752839 21.559365 L 16.128792 21.559365 " transform="matrix(0.998345,0,0,-0.998345,70.890091,52.781493)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.055153 0.000174655 L 1.610296 1.682647 L 3.089307 0.000174655 L 1.610296 -1.682298 Z M 6.055153 0.000174655 " transform="matrix(0.998345,0,0,-0.998345,84.157994,31.257987)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -27.200738 21.559365 L -27.200738 -21.558878 L 60.025668 -21.558878 L 60.025668 -53.439772 L 16.4692 -53.439772 " transform="matrix(0.998345,0,0,-0.998345,70.890091,52.781493)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 84.125 106.132812 L 88.5625 107.8125 L 87.085938 106.132812 L 88.5625 104.449219 Z M 84.125 106.132812 "/>
|
||||
<g clip-path="url(#clip3)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052129 0.00174185 L 1.607272 1.684214 L 3.086282 0.00174185 L 1.607272 -1.684643 Z M 6.052129 0.00174185 " transform="matrix(-0.998345,0,0,0.998345,90.167111,106.131074)"/>
|
||||
</g>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 45.722656 31.257812 C 45.722656 30.160156 44.832031 29.269531 43.734375 29.269531 C 42.632812 29.269531 41.742188 30.160156 41.742188 31.257812 C 41.742188 32.355469 42.632812 33.246094 43.734375 33.246094 C 44.832031 33.246094 45.722656 32.355469 45.722656 31.257812 Z M 45.722656 31.257812 "/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="128.227031" y="70.49213"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 44.437367 21.559365 L 65.315674 21.559365 " transform="matrix(0.998345,0,0,-0.998345,70.890091,52.781493)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 139.304688 31.257812 L 134.867188 29.578125 L 136.34375 31.257812 L 134.867188 32.9375 Z M 139.304688 31.257812 "/>
|
||||
<g clip-path="url(#clip4)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052392 0.000174655 L 1.607535 1.682647 L 3.086546 0.000174655 L 1.607535 -1.682298 Z M 6.052392 0.000174655 " transform="matrix(0.998345,0,0,-0.998345,133.262313,31.257987)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="127.821703" y="25.95397"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="132.447035" y="27.445498"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 44.437367 0.000243092 L 65.315674 0.000243092 " transform="matrix(0.998345,0,0,-0.998345,70.890091,52.781493)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 139.304688 52.78125 L 134.867188 51.101562 L 136.34375 52.78125 L 134.867188 54.460938 Z M 139.304688 52.78125 "/>
|
||||
<g clip-path="url(#clip5)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052392 0.000243092 L 1.607535 1.682715 L 3.086546 0.000243092 L 1.607535 -1.682229 Z M 6.052392 0.000243092 " transform="matrix(0.998345,0,0,-0.998345,133.262313,52.781493)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="127.821703" y="47.477287"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-2" x="132.447035" y="48.968814"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 28 KiB |
BIN
journal/figs/hinf_comp_filters.pdf
Normal file
BIN
journal/figs/htwo_comp_filters.pdf
Normal file
BIN
journal/figs/htwo_hinf_comp_filters.pdf
Normal file
BIN
journal/figs/mixed_h2_hinf_synthesis.pdf
Normal file
BIN
journal/figs/mixed_h2_hinf_synthesis.png
Normal file
After Width: | Height: | Size: 23 KiB |
277
journal/figs/mixed_h2_hinf_synthesis.svg
Normal file
@@ -0,0 +1,277 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="193.585pt" height="159.38pt" viewBox="0 0 193.585 159.38" version="1.2">
|
||||
<defs>
|
||||
<g>
|
||||
<symbol overflow="visible" id="glyph0-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<path style="stroke:none;" d="M 7.484375 -5.28125 C 7.484375 -6.046875 6.828125 -6.78125 5.53125 -6.78125 L 2.3125 -6.78125 C 2.125 -6.78125 2.015625 -6.78125 2.015625 -6.59375 C 2.015625 -6.46875 2.109375 -6.46875 2.296875 -6.46875 C 2.4375 -6.46875 2.609375 -6.453125 2.734375 -6.453125 C 2.890625 -6.421875 2.953125 -6.40625 2.953125 -6.296875 C 2.953125 -6.25 2.9375 -6.21875 2.90625 -6.109375 L 1.578125 -0.78125 C 1.484375 -0.390625 1.453125 -0.3125 0.671875 -0.3125 C 0.5 -0.3125 0.390625 -0.3125 0.390625 -0.125 C 0.390625 0 0.515625 0 0.546875 0 L 1.8125 -0.03125 L 2.4375 -0.015625 C 2.65625 -0.015625 2.875 0 3.078125 0 C 3.15625 0 3.28125 0 3.28125 -0.203125 C 3.28125 -0.3125 3.1875 -0.3125 3 -0.3125 C 2.640625 -0.3125 2.359375 -0.3125 2.359375 -0.484375 C 2.359375 -0.546875 2.375 -0.59375 2.390625 -0.65625 L 3 -3.140625 L 4.6875 -3.140625 C 6.109375 -3.140625 7.484375 -4.171875 7.484375 -5.28125 Z M 6.5625 -5.515625 C 6.5625 -5.125 6.359375 -4.28125 5.96875 -3.921875 C 5.484375 -3.46875 4.875 -3.390625 4.4375 -3.390625 L 3.046875 -3.390625 L 3.71875 -6.09375 C 3.8125 -6.4375 3.828125 -6.46875 4.25 -6.46875 L 5.203125 -6.46875 C 6.03125 -6.46875 6.5625 -6.203125 6.5625 -5.515625 Z M 6.5625 -5.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 10.390625 -6.671875 C 10.390625 -6.703125 10.359375 -6.78125 10.28125 -6.78125 C 10.046875 -6.78125 9.765625 -6.75 9.515625 -6.75 C 9.171875 -6.75 8.8125 -6.78125 8.484375 -6.78125 C 8.421875 -6.78125 8.296875 -6.78125 8.296875 -6.59375 C 8.296875 -6.484375 8.390625 -6.46875 8.4375 -6.46875 C 8.6875 -6.453125 9.03125 -6.375 9.03125 -6.078125 C 9.03125 -5.96875 8.984375 -5.890625 8.90625 -5.75 L 6.21875 -1.078125 L 5.859375 -6 C 5.84375 -6.203125 5.828125 -6.453125 6.546875 -6.46875 C 6.71875 -6.46875 6.8125 -6.46875 6.8125 -6.671875 C 6.8125 -6.765625 6.703125 -6.78125 6.671875 -6.78125 C 6.265625 -6.78125 5.859375 -6.75 5.453125 -6.75 C 5.234375 -6.75 4.640625 -6.78125 4.421875 -6.78125 C 4.359375 -6.78125 4.234375 -6.78125 4.234375 -6.578125 C 4.234375 -6.46875 4.328125 -6.46875 4.46875 -6.46875 C 4.90625 -6.46875 4.96875 -6.40625 4.984375 -6.21875 L 5.046875 -5.453125 L 2.546875 -1.078125 L 2.15625 -6.109375 C 2.15625 -6.234375 2.15625 -6.453125 2.921875 -6.46875 C 3.015625 -6.46875 3.125 -6.46875 3.125 -6.671875 C 3.125 -6.78125 2.984375 -6.78125 2.984375 -6.78125 C 2.59375 -6.78125 2.171875 -6.75 1.765625 -6.75 C 1.421875 -6.75 1.0625 -6.78125 0.71875 -6.78125 C 0.671875 -6.78125 0.546875 -6.78125 0.546875 -6.59375 C 0.546875 -6.46875 0.640625 -6.46875 0.796875 -6.46875 C 1.296875 -6.46875 1.296875 -6.375 1.3125 -6.109375 L 1.765625 -0.046875 C 1.78125 0.140625 1.78125 0.21875 1.921875 0.21875 C 2.046875 0.21875 2.078125 0.15625 2.15625 0.015625 L 5.078125 -5.046875 L 5.453125 -0.046875 C 5.46875 0.171875 5.484375 0.21875 5.609375 0.21875 C 5.734375 0.21875 5.796875 0.125 5.84375 0.03125 L 9.09375 -5.625 C 9.34375 -6.0625 9.578125 -6.421875 10.203125 -6.46875 C 10.296875 -6.484375 10.390625 -6.484375 10.390625 -6.671875 Z M 10.390625 -6.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 8.734375 -6.671875 C 8.734375 -6.671875 8.734375 -6.78125 8.609375 -6.78125 C 8.28125 -6.78125 7.9375 -6.75 7.609375 -6.75 C 7.265625 -6.75 6.921875 -6.78125 6.59375 -6.78125 C 6.53125 -6.78125 6.421875 -6.78125 6.421875 -6.578125 C 6.421875 -6.46875 6.515625 -6.46875 6.59375 -6.46875 C 7.15625 -6.453125 7.265625 -6.25 7.265625 -6.03125 C 7.265625 -6 7.25 -5.859375 7.25 -5.828125 L 6.125 -1.40625 L 3.9375 -6.59375 C 3.859375 -6.765625 3.84375 -6.78125 3.625 -6.78125 L 2.296875 -6.78125 C 2.09375 -6.78125 2 -6.78125 2 -6.578125 C 2 -6.46875 2.09375 -6.46875 2.28125 -6.46875 C 2.328125 -6.46875 2.953125 -6.46875 2.953125 -6.375 L 1.625 -1.046875 C 1.53125 -0.65625 1.359375 -0.34375 0.5625 -0.3125 C 0.5 -0.3125 0.390625 -0.296875 0.390625 -0.109375 C 0.390625 -0.046875 0.4375 0 0.515625 0 C 0.828125 0 1.1875 -0.03125 1.515625 -0.03125 C 1.84375 -0.03125 2.203125 0 2.53125 0 C 2.578125 0 2.703125 0 2.703125 -0.203125 C 2.703125 -0.296875 2.625 -0.3125 2.515625 -0.3125 C 1.9375 -0.328125 1.859375 -0.546875 1.859375 -0.75 C 1.859375 -0.8125 1.859375 -0.859375 1.890625 -0.96875 L 3.203125 -6.21875 C 3.25 -6.15625 3.25 -6.125 3.296875 -6.03125 L 5.765625 -0.1875 C 5.828125 -0.015625 5.859375 0 5.953125 0 C 6.0625 0 6.0625 -0.03125 6.109375 -0.203125 L 7.5 -5.734375 C 7.59375 -6.125 7.78125 -6.4375 8.578125 -6.46875 C 8.625 -6.46875 8.734375 -6.484375 8.734375 -6.671875 Z M 8.734375 -6.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 7.125 -0.203125 C 7.125 -0.3125 7.03125 -0.3125 6.84375 -0.3125 C 6.484375 -0.3125 6.203125 -0.3125 6.203125 -0.484375 C 6.203125 -0.546875 6.21875 -0.59375 6.234375 -0.65625 L 7.578125 -6.015625 C 7.65625 -6.375 7.671875 -6.46875 8.40625 -6.46875 C 8.65625 -6.46875 8.734375 -6.46875 8.734375 -6.671875 C 8.734375 -6.78125 8.625 -6.78125 8.609375 -6.78125 L 7.328125 -6.75 L 6.046875 -6.78125 C 5.96875 -6.78125 5.859375 -6.78125 5.859375 -6.578125 C 5.859375 -6.46875 5.953125 -6.46875 6.140625 -6.46875 C 6.140625 -6.46875 6.34375 -6.46875 6.515625 -6.453125 C 6.703125 -6.421875 6.78125 -6.421875 6.78125 -6.296875 C 6.78125 -6.25 6.78125 -6.234375 6.75 -6.109375 L 6.15625 -3.6875 L 3.125 -3.6875 L 3.703125 -6.015625 C 3.796875 -6.375 3.828125 -6.46875 4.546875 -6.46875 C 4.796875 -6.46875 4.875 -6.46875 4.875 -6.671875 C 4.875 -6.78125 4.765625 -6.78125 4.75 -6.78125 L 3.46875 -6.75 L 2.1875 -6.78125 C 2.109375 -6.78125 2 -6.78125 2 -6.578125 C 2 -6.46875 2.09375 -6.46875 2.28125 -6.46875 C 2.28125 -6.46875 2.484375 -6.46875 2.65625 -6.453125 C 2.84375 -6.421875 2.921875 -6.421875 2.921875 -6.296875 C 2.921875 -6.25 2.921875 -6.21875 2.890625 -6.109375 L 1.5625 -0.78125 C 1.453125 -0.390625 1.4375 -0.3125 0.65625 -0.3125 C 0.46875 -0.3125 0.390625 -0.3125 0.390625 -0.109375 C 0.390625 0 0.53125 0 0.53125 0 L 1.78125 -0.03125 L 2.421875 -0.015625 C 2.640625 -0.015625 2.859375 0 3.0625 0 C 3.140625 0 3.265625 0 3.265625 -0.203125 C 3.265625 -0.3125 3.171875 -0.3125 2.984375 -0.3125 C 2.625 -0.3125 2.34375 -0.3125 2.34375 -0.484375 C 2.34375 -0.546875 2.359375 -0.59375 2.375 -0.65625 L 3.046875 -3.375 L 6.078125 -3.375 L 5.390625 -0.640625 C 5.28125 -0.3125 5.09375 -0.3125 4.484375 -0.3125 C 4.328125 -0.3125 4.25 -0.3125 4.25 -0.109375 C 4.25 0 4.390625 0 4.390625 0 L 5.640625 -0.03125 L 6.28125 -0.015625 C 6.5 -0.015625 6.71875 0 6.921875 0 C 7 0 7.125 0 7.125 -0.203125 Z M 7.125 -0.203125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 6.859375 -3.6875 C 6.859375 -4.234375 6.59375 -4.390625 6.421875 -4.390625 C 6.171875 -4.390625 5.921875 -4.125 5.921875 -3.90625 C 5.921875 -3.78125 5.984375 -3.71875 6.078125 -3.640625 C 6.1875 -3.53125 6.421875 -3.28125 6.421875 -2.796875 C 6.421875 -2.453125 6.140625 -1.484375 5.890625 -0.984375 C 5.625 -0.453125 5.28125 -0.109375 4.796875 -0.109375 C 4.328125 -0.109375 4.0625 -0.40625 4.0625 -0.96875 C 4.0625 -1.25 4.125 -1.5625 4.171875 -1.703125 L 4.578125 -3.359375 C 4.640625 -3.578125 4.734375 -3.953125 4.734375 -4.015625 C 4.734375 -4.1875 4.59375 -4.28125 4.4375 -4.28125 C 4.328125 -4.28125 4.140625 -4.203125 4.078125 -4 C 4.046875 -3.921875 3.578125 -2.03125 3.515625 -1.78125 C 3.4375 -1.484375 3.421875 -1.296875 3.421875 -1.125 C 3.421875 -1.015625 3.421875 -0.984375 3.4375 -0.9375 C 3.203125 -0.421875 2.90625 -0.109375 2.515625 -0.109375 C 1.71875 -0.109375 1.71875 -0.84375 1.71875 -1.015625 C 1.71875 -1.328125 1.78125 -1.71875 2.25 -2.9375 C 2.34375 -3.234375 2.40625 -3.375 2.40625 -3.578125 C 2.40625 -4.015625 2.078125 -4.390625 1.59375 -4.390625 C 0.65625 -4.390625 0.28125 -2.953125 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.78125 0.5625 -2.9375 C 0.828125 -3.859375 1.21875 -4.171875 1.5625 -4.171875 C 1.65625 -4.171875 1.8125 -4.15625 1.8125 -3.84375 C 1.8125 -3.59375 1.703125 -3.3125 1.640625 -3.140625 C 1.203125 -1.96875 1.078125 -1.515625 1.078125 -1.140625 C 1.078125 -0.234375 1.75 0.109375 2.484375 0.109375 C 2.65625 0.109375 3.125 0.109375 3.515625 -0.578125 C 3.78125 0.046875 4.46875 0.109375 4.765625 0.109375 C 5.5 0.109375 5.9375 -0.515625 6.203125 -1.109375 C 6.53125 -1.890625 6.859375 -3.21875 6.859375 -3.6875 Z M 6.859375 -3.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 5.390625 -1.421875 C 5.390625 -1.515625 5.296875 -1.515625 5.265625 -1.515625 C 5.171875 -1.515625 5.15625 -1.484375 5.125 -1.34375 C 4.984375 -0.78125 4.796875 -0.109375 4.390625 -0.109375 C 4.171875 -0.109375 4.078125 -0.234375 4.078125 -0.5625 C 4.078125 -0.78125 4.203125 -1.25 4.28125 -1.59375 L 4.546875 -2.671875 C 4.578125 -2.8125 4.6875 -3.1875 4.71875 -3.34375 C 4.765625 -3.578125 4.875 -3.953125 4.875 -4.015625 C 4.875 -4.1875 4.734375 -4.28125 4.578125 -4.28125 C 4.53125 -4.28125 4.28125 -4.265625 4.203125 -3.921875 L 3.453125 -0.9375 C 3.4375 -0.90625 3.046875 -0.109375 2.328125 -0.109375 C 1.8125 -0.109375 1.703125 -0.5625 1.703125 -0.921875 C 1.703125 -1.484375 1.984375 -2.265625 2.25 -2.953125 C 2.359375 -3.25 2.40625 -3.390625 2.40625 -3.578125 C 2.40625 -4.015625 2.09375 -4.390625 1.59375 -4.390625 C 0.65625 -4.390625 0.28125 -2.953125 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.78125 0.5625 -2.9375 C 0.8125 -3.796875 1.1875 -4.171875 1.5625 -4.171875 C 1.65625 -4.171875 1.8125 -4.15625 1.8125 -3.84375 C 1.8125 -3.609375 1.703125 -3.3125 1.640625 -3.171875 C 1.28125 -2.1875 1.078125 -1.5625 1.078125 -1.078125 C 1.078125 -0.140625 1.75 0.109375 2.296875 0.109375 C 2.953125 0.109375 3.296875 -0.34375 3.46875 -0.5625 C 3.578125 -0.15625 3.921875 0.109375 4.359375 0.109375 C 4.703125 0.109375 4.9375 -0.125 5.09375 -0.4375 C 5.265625 -0.796875 5.390625 -1.421875 5.390625 -1.421875 Z M 5.390625 -1.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 4.640625 -3.6875 C 4.640625 -4.234375 4.390625 -4.390625 4.203125 -4.390625 C 3.953125 -4.390625 3.71875 -4.125 3.71875 -3.90625 C 3.71875 -3.78125 3.765625 -3.71875 3.875 -3.609375 C 4.09375 -3.40625 4.21875 -3.15625 4.21875 -2.796875 C 4.21875 -2.375 3.609375 -0.109375 2.453125 -0.109375 C 1.9375 -0.109375 1.71875 -0.453125 1.71875 -0.96875 C 1.71875 -1.53125 1.984375 -2.25 2.296875 -3.078125 C 2.359375 -3.25 2.40625 -3.390625 2.40625 -3.578125 C 2.40625 -4.015625 2.09375 -4.390625 1.59375 -4.390625 C 0.671875 -4.390625 0.28125 -2.953125 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.78125 0.5625 -2.9375 C 0.859375 -3.9375 1.28125 -4.171875 1.5625 -4.171875 C 1.640625 -4.171875 1.8125 -4.171875 1.8125 -3.84375 C 1.8125 -3.609375 1.71875 -3.328125 1.640625 -3.15625 C 1.203125 -2 1.078125 -1.546875 1.078125 -1.125 C 1.078125 -0.046875 1.953125 0.109375 2.40625 0.109375 C 4.078125 0.109375 4.640625 -3.171875 4.640625 -3.6875 Z M 4.640625 -3.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 4.3125 -1.421875 C 4.3125 -1.46875 4.28125 -1.515625 4.203125 -1.515625 C 4.109375 -1.515625 4.09375 -1.453125 4.0625 -1.390625 C 3.828125 -0.75 3.1875 -0.5625 2.875 -0.5625 C 2.671875 -0.5625 2.484375 -0.609375 2.28125 -0.6875 C 1.9375 -0.8125 1.796875 -0.859375 1.59375 -0.859375 C 1.59375 -0.859375 1.40625 -0.859375 1.3125 -0.828125 C 1.859375 -1.40625 2.140625 -1.640625 2.5 -1.953125 C 2.5 -1.953125 3.109375 -2.484375 3.46875 -2.84375 C 4.421875 -3.765625 4.640625 -4.25 4.640625 -4.28125 C 4.640625 -4.390625 4.53125 -4.390625 4.53125 -4.390625 C 4.453125 -4.390625 4.421875 -4.359375 4.375 -4.28125 C 4.078125 -3.796875 3.875 -3.640625 3.625 -3.640625 C 3.390625 -3.640625 3.28125 -3.796875 3.125 -3.953125 C 2.9375 -4.1875 2.765625 -4.390625 2.4375 -4.390625 C 1.703125 -4.390625 1.234375 -3.46875 1.234375 -3.25 C 1.234375 -3.203125 1.265625 -3.140625 1.359375 -3.140625 C 1.453125 -3.140625 1.46875 -3.1875 1.484375 -3.25 C 1.671875 -3.703125 2.25 -3.71875 2.328125 -3.71875 C 2.546875 -3.71875 2.734375 -3.65625 2.953125 -3.578125 C 3.359375 -3.421875 3.46875 -3.421875 3.71875 -3.421875 C 3.359375 -3 2.53125 -2.28125 2.34375 -2.125 L 1.453125 -1.296875 C 0.78125 -0.625 0.421875 -0.0625 0.421875 0.015625 C 0.421875 0.109375 0.546875 0.109375 0.546875 0.109375 C 0.625 0.109375 0.640625 0.09375 0.703125 -0.015625 C 0.9375 -0.359375 1.234375 -0.640625 1.546875 -0.640625 C 1.78125 -0.640625 1.875 -0.546875 2.125 -0.265625 C 2.296875 -0.046875 2.46875 0.109375 2.765625 0.109375 C 3.734375 0.109375 4.3125 -1.15625 4.3125 -1.421875 Z M 4.3125 -1.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<path style="stroke:none;" d="M 6.375 -0.46875 C 6.375 -0.515625 6.34375 -0.546875 6.296875 -0.546875 C 6.21875 -0.546875 6.09375 -0.5 5.984375 -0.4375 C 5.84375 -0.359375 5.75 -0.25 5.734375 -0.1875 C 5.71875 -0.171875 5.71875 -0.140625 5.703125 -0.125 C 5.578125 -0.078125 5.421875 -0.078125 5.296875 -0.0625 C 5.09375 -0.0625 4.953125 -0.21875 4.984375 -0.421875 C 5.015625 -0.90625 5.09375 -1.390625 5.203125 -1.875 C 5.4375 -2.8125 5.75 -3.734375 6.125 -4.671875 C 6.125 -4.734375 6.09375 -4.75 6.046875 -4.75 C 5.96875 -4.75 5.859375 -4.71875 5.75 -4.65625 C 5.625 -4.578125 5.515625 -4.484375 5.5 -4.421875 C 5.21875 -3.734375 4.984375 -3.046875 4.78125 -2.34375 L 2.6875 -2.34375 L 2.828125 -2.84375 C 2.9375 -3.328125 3.03125 -3.796875 3.046875 -4.28125 C 3.078125 -4.5625 2.859375 -4.75 2.5625 -4.75 C 2.328125 -4.75 2.09375 -4.734375 1.84375 -4.671875 C 1.453125 -4.5625 1.09375 -4.359375 0.78125 -4.09375 C 0.578125 -3.921875 0.40625 -3.703125 0.28125 -3.484375 C 0.265625 -3.453125 0.265625 -3.421875 0.265625 -3.421875 C 0.265625 -3.390625 0.296875 -3.359375 0.34375 -3.359375 C 0.421875 -3.359375 0.53125 -3.40625 0.640625 -3.46875 C 0.765625 -3.546875 0.859375 -3.609375 0.890625 -3.6875 C 0.96875 -3.828125 1.078125 -3.984375 1.203125 -4.09375 C 1.3125 -4.171875 1.4375 -4.234375 1.5625 -4.265625 C 1.734375 -4.3125 1.90625 -4.328125 2.078125 -4.328125 C 2.28125 -4.328125 2.421875 -4.171875 2.40625 -3.96875 C 2.375 -3.5 2.296875 -3.03125 2.1875 -2.5625 L 2.125 -2.34375 L 1.84375 -2.34375 C 1.765625 -2.34375 1.65625 -2.3125 1.546875 -2.25 C 1.390625 -2.15625 1.28125 -2.046875 1.28125 -1.984375 C 1.28125 -1.953125 1.3125 -1.921875 1.375 -1.921875 L 2.015625 -1.921875 C 1.8125 -1.203125 1.5625 -0.5 1.28125 0.203125 C 1.265625 0.265625 1.296875 0.296875 1.359375 0.296875 C 1.421875 0.296875 1.546875 0.25 1.65625 0.1875 C 1.78125 0.109375 1.890625 0.015625 1.90625 -0.046875 C 2.15625 -0.671875 2.390625 -1.296875 2.578125 -1.921875 L 4.4375 -1.921875 C 4.5 -1.921875 4.578125 -1.953125 4.671875 -2 L 4.5625 -1.59375 C 4.4375 -1.09375 4.359375 -0.609375 4.328125 -0.125 C 4.3125 0.171875 4.53125 0.375 4.828125 0.359375 C 5.09375 0.34375 5.359375 0.3125 5.625 0.203125 C 5.90625 0.09375 6.1875 -0.078125 6.328125 -0.34375 C 6.34375 -0.375 6.359375 -0.421875 6.375 -0.46875 Z M 6.375 -0.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-1">
|
||||
<path style="stroke:none;" d="M 2.921875 -0.953125 L 2.71875 -0.953125 C 2.703125 -0.859375 2.65625 -0.5625 2.578125 -0.5 C 2.53125 -0.484375 2.109375 -0.484375 2.046875 -0.484375 L 1.0625 -0.484375 C 1.390625 -0.71875 1.765625 -1 2.0625 -1.203125 C 2.515625 -1.5 2.921875 -1.796875 2.921875 -2.328125 C 2.921875 -2.953125 2.328125 -3.3125 1.609375 -3.3125 C 0.9375 -3.3125 0.453125 -2.921875 0.453125 -2.4375 C 0.453125 -2.171875 0.671875 -2.125 0.734375 -2.125 C 0.875 -2.125 1.03125 -2.21875 1.03125 -2.421875 C 1.03125 -2.609375 0.90625 -2.703125 0.75 -2.71875 C 0.890625 -2.9375 1.171875 -3.09375 1.515625 -3.09375 C 2 -3.09375 2.390625 -2.796875 2.390625 -2.3125 C 2.390625 -1.890625 2.109375 -1.578125 1.71875 -1.25 L 0.515625 -0.234375 C 0.46875 -0.1875 0.453125 -0.1875 0.453125 -0.15625 L 0.453125 0 L 2.765625 0 Z M 2.921875 -0.953125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-1">
|
||||
<path style="stroke:none;" d="M 3.53125 -5.046875 C 3.53125 -5.15625 3.4375 -5.21875 3.359375 -5.21875 C 3.234375 -5.21875 3.203125 -5.125 3.171875 -5.046875 L 0.578125 1.4375 C 0.53125 1.515625 0.53125 1.53125 0.53125 1.5625 C 0.53125 1.671875 0.625 1.734375 0.703125 1.734375 C 0.828125 1.734375 0.859375 1.65625 0.890625 1.5625 L 3.484375 -4.90625 C 3.53125 -5 3.53125 -5.015625 3.53125 -5.046875 Z M 3.53125 -5.046875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-2">
|
||||
<path style="stroke:none;" d="M 4.359375 -1 C 4.359375 -1.078125 4.265625 -1.078125 4.25 -1.078125 C 4.15625 -1.078125 4.140625 -1.0625 4.09375 -0.875 C 4.015625 -0.546875 3.875 -0.125 3.59375 -0.125 C 3.40625 -0.125 3.359375 -0.28125 3.359375 -0.46875 C 3.359375 -0.578125 3.40625 -0.828125 3.46875 -1.015625 L 3.609375 -1.640625 L 3.78125 -2.265625 C 3.8125 -2.4375 3.890625 -2.734375 3.890625 -2.78125 C 3.890625 -2.90625 3.78125 -3 3.671875 -3 C 3.40625 -3 3.359375 -2.796875 3.296875 -2.578125 L 2.9375 -1.125 C 2.90625 -0.984375 2.84375 -0.71875 2.828125 -0.71875 C 2.703125 -0.5 2.421875 -0.125 1.984375 -0.125 C 1.515625 -0.125 1.515625 -0.578125 1.515625 -0.703125 C 1.515625 -1.109375 1.703125 -1.609375 1.890625 -2.109375 C 1.953125 -2.25 2 -2.359375 2 -2.46875 C 2 -2.828125 1.6875 -3.0625 1.328125 -3.0625 C 0.640625 -3.0625 0.328125 -2.109375 0.328125 -2 C 0.328125 -1.90625 0.421875 -1.90625 0.4375 -1.90625 C 0.546875 -1.90625 0.546875 -1.953125 0.5625 -2.015625 C 0.734375 -2.59375 1.046875 -2.875 1.3125 -2.875 C 1.4375 -2.875 1.484375 -2.796875 1.484375 -2.625 C 1.484375 -2.46875 1.4375 -2.328125 1.359375 -2.15625 C 0.984375 -1.203125 0.984375 -1 0.984375 -0.8125 C 0.984375 -0.703125 0.984375 -0.375 1.25 -0.15625 C 1.453125 0.015625 1.71875 0.0625 1.953125 0.0625 C 2.40625 0.0625 2.640625 -0.171875 2.859375 -0.390625 C 3.015625 0.0625 3.484375 0.0625 3.5625 0.0625 C 3.796875 0.0625 3.984375 -0.0625 4.109375 -0.296875 C 4.265625 -0.5625 4.359375 -0.96875 4.359375 -1 Z M 4.359375 -1 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-1">
|
||||
<path style="stroke:none;" d="M 6.140625 -1.078125 C 6.140625 -1.671875 5.640625 -2.203125 4.953125 -2.203125 C 4.203125 -2.203125 3.671875 -1.671875 3.4375 -1.359375 C 3.15625 -1.671875 2.65625 -2.203125 1.8125 -2.203125 C 1.15625 -2.203125 0.625 -1.703125 0.625 -1.0625 C 0.625 -0.46875 1.125 0.046875 1.796875 0.046875 C 2.546875 0.046875 3.09375 -0.46875 3.328125 -0.78125 C 3.609375 -0.46875 4.09375 0.046875 4.9375 0.046875 C 5.609375 0.046875 6.140625 -0.4375 6.140625 -1.078125 Z M 5.984375 -1.078125 C 5.984375 -0.578125 5.5 -0.25 5.03125 -0.25 C 4.578125 -0.25 4.1875 -0.546875 3.609375 -1.171875 C 3.96875 -1.640625 4.453125 -1.984375 5 -1.984375 C 5.59375 -1.984375 5.984375 -1.53125 5.984375 -1.078125 Z M 3.140625 -0.96875 C 2.796875 -0.5 2.3125 -0.15625 1.765625 -0.15625 C 1.171875 -0.15625 0.78125 -0.609375 0.78125 -1.0625 C 0.78125 -1.5625 1.25 -1.890625 1.734375 -1.890625 C 2.1875 -1.890625 2.578125 -1.59375 3.140625 -0.96875 Z M 3.140625 -0.96875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-1">
|
||||
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.03125 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.5625 L 2.328125 -4.421875 C 2.328125 -4.609375 2.3125 -4.609375 2.125 -4.609375 C 1.671875 -4.171875 1.046875 -4.171875 0.765625 -4.171875 L 0.765625 -3.921875 C 0.921875 -3.921875 1.390625 -3.921875 1.765625 -4.109375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.078125 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.28125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-2">
|
||||
<path style="stroke:none;" d="M 3.515625 -1.265625 L 3.28125 -1.265625 C 3.25 -1.109375 3.1875 -0.703125 3.09375 -0.625 C 3.03125 -0.59375 2.5 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.09375 -1.4375 2.515625 -1.765625 C 3.03125 -2.171875 3.515625 -2.59375 3.515625 -3.265625 C 3.515625 -4.109375 2.78125 -4.609375 1.890625 -4.609375 C 1.015625 -4.609375 0.4375 -4.015625 0.4375 -3.375 C 0.4375 -3.015625 0.734375 -2.984375 0.8125 -2.984375 C 0.96875 -2.984375 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.484375 1.125 -3.71875 0.765625 -3.71875 C 0.984375 -4.21875 1.453125 -4.359375 1.78125 -4.359375 C 2.46875 -4.359375 2.84375 -3.828125 2.84375 -3.265625 C 2.84375 -2.65625 2.40625 -2.171875 2.1875 -1.921875 L 0.5 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.296875 0 Z M 3.515625 -1.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-3">
|
||||
<path style="stroke:none;" d="M 3.578125 -1.203125 C 3.578125 -1.75 3.125 -2.28125 2.359375 -2.453125 C 3.09375 -2.71875 3.359375 -3.234375 3.359375 -3.65625 C 3.359375 -4.203125 2.71875 -4.609375 1.953125 -4.609375 C 1.1875 -4.609375 0.59375 -4.234375 0.59375 -3.6875 C 0.59375 -3.453125 0.75 -3.3125 0.953125 -3.3125 C 1.171875 -3.3125 1.3125 -3.484375 1.3125 -3.671875 C 1.3125 -3.875 1.171875 -4.015625 0.953125 -4.03125 C 1.203125 -4.34375 1.671875 -4.421875 1.9375 -4.421875 C 2.25 -4.421875 2.6875 -4.265625 2.6875 -3.65625 C 2.6875 -3.359375 2.59375 -3.046875 2.40625 -2.828125 C 2.171875 -2.5625 1.984375 -2.546875 1.640625 -2.53125 C 1.453125 -2.515625 1.453125 -2.515625 1.40625 -2.515625 C 1.40625 -2.515625 1.34375 -2.5 1.34375 -2.421875 C 1.34375 -2.328125 1.40625 -2.328125 1.515625 -2.328125 L 1.890625 -2.328125 C 2.4375 -2.328125 2.828125 -1.953125 2.828125 -1.203125 C 2.828125 -0.34375 2.328125 -0.078125 1.921875 -0.078125 C 1.640625 -0.078125 1.03125 -0.15625 0.75 -0.5625 C 1.078125 -0.578125 1.140625 -0.8125 1.140625 -0.953125 C 1.140625 -1.1875 0.984375 -1.34375 0.765625 -1.34375 C 0.5625 -1.34375 0.375 -1.21875 0.375 -0.9375 C 0.375 -0.28125 1.09375 0.140625 1.9375 0.140625 C 2.90625 0.140625 3.578125 -0.5 3.578125 -1.203125 Z M 3.578125 -1.203125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-4">
|
||||
<path style="stroke:none;" d="M 3.671875 -1.140625 L 3.671875 -1.390625 L 2.90625 -1.390625 L 2.90625 -4.484375 C 2.90625 -4.640625 2.90625 -4.6875 2.75 -4.6875 C 2.671875 -4.6875 2.640625 -4.6875 2.578125 -4.59375 L 0.265625 -1.390625 L 0.265625 -1.140625 L 2.3125 -1.140625 L 2.3125 -0.5625 C 2.3125 -0.328125 2.3125 -0.25 1.75 -0.25 L 1.5625 -0.25 L 1.5625 0 L 2.609375 -0.03125 L 3.65625 0 L 3.65625 -0.25 L 3.46875 -0.25 C 2.90625 -0.25 2.90625 -0.328125 2.90625 -0.5625 L 2.90625 -1.140625 Z M 2.359375 -1.390625 L 0.53125 -1.390625 L 2.359375 -3.9375 Z M 2.359375 -1.390625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-1">
|
||||
<path style="stroke:none;" d="M 8.078125 -2.984375 C 8.078125 -3.203125 7.890625 -3.203125 7.703125 -3.203125 L 4.53125 -3.203125 L 4.53125 -6.390625 C 4.53125 -6.546875 4.53125 -6.75 4.3125 -6.75 C 4.109375 -6.75 4.109375 -6.5625 4.109375 -6.390625 L 4.109375 -3.203125 L 0.921875 -3.203125 C 0.75 -3.203125 0.546875 -3.203125 0.546875 -3 C 0.546875 -2.78125 0.75 -2.78125 0.921875 -2.78125 L 4.109375 -2.78125 L 4.109375 0.390625 C 4.109375 0.5625 4.109375 0.765625 4.3125 0.765625 C 4.53125 0.765625 4.53125 0.578125 4.53125 0.390625 L 4.53125 -2.78125 L 7.703125 -2.78125 C 7.875 -2.78125 8.078125 -2.78125 8.078125 -2.984375 Z M 8.078125 -2.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-1">
|
||||
<path style="stroke:none;" d="M 6.890625 -2.484375 C 6.890625 -2.671875 6.703125 -2.671875 6.5625 -2.671875 L 1.15625 -2.671875 C 1.015625 -2.671875 0.828125 -2.671875 0.828125 -2.484375 C 0.828125 -2.28125 1.015625 -2.28125 1.15625 -2.28125 L 6.5625 -2.28125 C 6.703125 -2.28125 6.890625 -2.28125 6.890625 -2.484375 Z M 6.890625 -2.484375 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
<clipPath id="clip1">
|
||||
<path d="M 68 140 L 93 140 L 93 158.761719 L 68 158.761719 Z M 68 140 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip2">
|
||||
<path d="M 0.167969 34 L 45 34 L 45 36 L 0.167969 36 Z M 0.167969 34 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip3">
|
||||
<path d="M 79 133 L 113 133 L 113 158.761719 L 79 158.761719 Z M 79 133 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<path style="fill-rule:nonzero;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M -59.529822 -56.693294 L 59.529188 -56.693294 L 59.529188 56.695305 L -59.529822 56.695305 Z M -59.529822 -56.693294 " transform="matrix(0.996125,0,0,-0.996125,80.721019,74.889674)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="62.894366" y="10.587813"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="69.265582" y="12.379842"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="76.064135" y="13.371982"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="79.937069" y="12.379842"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="84.003251" y="12.379842"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="90.801804" y="13.371982"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.345852 31.531389 L 51.023572 31.531389 L 51.023572 48.538699 L 28.345852 48.538699 Z M 28.345852 31.531389 " transform="matrix(0.996125,0,0,-0.996125,80.721019,74.889674)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="113.340129" y="37.656513"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-1" x="122.712669" y="39.144724"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.345852 8.653675 L 51.023572 8.653675 L 51.023572 25.660985 L 28.345852 25.660985 Z M 28.345852 8.653675 " transform="matrix(0.996125,0,0,-0.996125,80.721019,74.889674)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="113.340129" y="60.445861"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-2" x="122.712669" y="61.934072"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -6.664814 31.531389 L 16.012906 31.531389 L 16.012906 48.538699 L -6.664814 48.538699 Z M -6.664814 31.531389 " transform="matrix(0.996125,0,0,-0.996125,80.721019,74.889674)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="78.095234" y="37.656513"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-2" x="87.467774" y="39.144724"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -6.664814 8.653675 L 16.012906 8.653675 L 16.012906 25.660985 L -6.664814 25.660985 Z M -6.664814 8.653675 " transform="matrix(0.996125,0,0,-0.996125,80.721019,74.889674)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="78.095234" y="60.445861"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-2" x="87.467774" y="61.934072"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -18.503658 40.033083 C -18.503658 43.887864 -21.625129 47.009335 -25.475989 47.009335 C -29.326848 47.009335 -32.448319 43.887864 -32.448319 40.033083 C -32.448319 36.182223 -29.326848 33.060753 -25.475989 33.060753 C -21.625129 33.060753 -18.503658 36.182223 -18.503658 40.033083 Z M -18.503658 40.033083 " transform="matrix(0.996125,0,0,-0.996125,80.721019,74.889674)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph6-1" x="51.023545" y="37.915506"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-1" x="45.640485" y="49.730545"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.345852 -14.224038 L 51.023572 -14.224038 L 51.023572 2.783271 L 28.345852 2.783271 Z M 28.345852 -14.224038 " transform="matrix(0.996125,0,0,-0.996125,80.721019,74.889674)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-3" x="114.039408" y="83.233217"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-1" x="122.013389" y="84.721427"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.345852 -37.101752 L 51.023572 -37.101752 L 51.023572 -20.090521 L 28.345852 -20.090521 Z M 28.345852 -37.101752 " transform="matrix(0.996125,0,0,-0.996125,80.721019,74.889674)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-3" x="114.039408" y="106.020572"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-2" x="122.013389" y="107.508783"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.840519 -5.718423 C 10.840519 -1.867563 7.719048 1.253908 3.868189 1.253908 C 0.0134077 1.253908 -3.108063 -1.867563 -3.108063 -5.718423 C -3.108063 -9.569282 0.0134077 -12.694674 3.868189 -12.694674 C 7.719048 -12.694674 10.840519 -9.569282 10.840519 -5.718423 Z M 10.840519 -5.718423 " transform="matrix(0.996125,0,0,-0.996125,80.721019,74.889674)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph6-1" x="80.251844" y="83.492209"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-1" x="74.868785" y="95.307248"/>
|
||||
</g>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 69.425781 157.769531 L 92.015625 157.769531 L 92.015625 140.828125 L 69.425781 140.828125 Z M 69.425781 157.769531 "/>
|
||||
<g clip-path="url(#clip1)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -11.339177 -83.202266 L 11.338543 -83.202266 L 11.338543 -66.194957 L -11.339177 -66.194957 Z M -11.339177 -83.202266 " transform="matrix(0.996125,0,0,-0.996125,80.721019,74.889674)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="74.370722" y="151.943927"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-2" x="82.619634" y="153.432138"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip2)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -79.870361 40.033083 L -37.083468 40.033083 " transform="matrix(0.996125,0,0,-0.996125,80.721019,74.889674)"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054418 -0.00182693 L 1.607498 1.684395 L 3.085883 -0.00182693 L 1.607498 -1.684127 Z M 6.054418 -0.00182693 " transform="matrix(0.996125,0,0,-0.996125,40.953418,35.009899)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="4.966709" y="31.206604"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -11.837201 -74.696651 L -69.949103 -74.696651 L -69.949103 -28.596136 L 23.216601 -28.596136 " transform="matrix(0.996125,0,0,-0.996125,80.721019,74.889674)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051875 -0.000246404 L 1.608877 1.682054 L 3.087262 -0.000246404 L 1.608877 -1.682547 Z M 6.051875 -0.000246404 " transform="matrix(0.996125,0,0,-0.996125,101.018451,103.374755)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="8.205111" y="99.570663"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -25.475989 -28.596136 L -25.475989 28.425604 " transform="matrix(0.996125,0,0,-0.996125,80.721019,74.889674)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052249 -0.000341294 L 1.609252 1.681959 L 3.087637 -0.000341294 L 1.609252 -1.682641 Z M 6.052249 -0.000341294 " transform="matrix(0,-0.996125,-0.996125,0,55.34341,49.399891)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 57.328125 103.375 C 57.328125 102.277344 56.441406 101.390625 55.34375 101.390625 C 54.246094 101.390625 53.359375 102.277344 53.359375 103.375 C 53.359375 104.472656 54.246094 105.359375 55.34375 105.359375 C 56.441406 105.359375 57.328125 104.472656 57.328125 103.375 Z M 57.328125 103.375 "/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.868189 -28.596136 L 3.868189 -17.325902 " transform="matrix(0.996125,0,0,-0.996125,80.721019,74.889674)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.055184 -0.00188873 L 1.608264 1.684333 L 3.086649 -0.00188873 L 1.608264 -1.684189 Z M 6.055184 -0.00188873 " transform="matrix(0,-0.996125,-0.996125,0,84.572337,94.977032)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 86.558594 103.375 C 86.558594 102.277344 85.667969 101.390625 84.574219 101.390625 C 83.476562 101.390625 82.585938 102.277344 82.585938 103.375 C 82.585938 104.472656 83.476562 105.359375 84.574219 105.359375 C 85.667969 105.359375 86.558594 104.472656 86.558594 103.375 Z M 86.558594 103.375 "/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -25.475989 17.155369 L -11.797986 17.155369 " transform="matrix(0.996125,0,0,-0.996125,80.721019,74.889674)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053559 -0.00146057 L 1.610561 1.684761 L 3.088946 -0.00146057 L 1.610561 -1.683761 Z M 6.053559 -0.00146057 " transform="matrix(0.996125,0,0,-0.996125,66.141774,57.799326)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 57.328125 57.800781 C 57.328125 56.703125 56.441406 55.816406 55.34375 55.816406 C 54.246094 55.816406 53.359375 56.703125 53.359375 57.800781 C 53.359375 58.894531 54.246094 59.785156 55.34375 59.785156 C 56.441406 59.785156 57.328125 58.894531 57.328125 57.800781 Z M 57.328125 57.800781 "/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -18.503658 40.033083 L -11.797986 40.033083 " transform="matrix(0.996125,0,0,-0.996125,80.721019,74.889674)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053559 -0.00182693 L 1.610561 1.684395 L 3.088946 -0.00182693 L 1.610561 -1.684127 Z M 6.053559 -0.00182693 " transform="matrix(0.996125,0,0,-0.996125,66.141774,35.009899)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.840519 -5.718423 L 23.216601 -5.718423 " transform="matrix(0.996125,0,0,-0.996125,80.721019,74.889674)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051895 0.00110724 L 1.608897 1.683407 L 3.087282 0.00110724 L 1.608897 -1.681193 Z M 6.051895 0.00110724 " transform="matrix(0.996125,0,0,-0.996125,101.018431,80.58704)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.45955 40.033083 L -49.45955 -45.752461 L 69.948469 -45.752461 L 69.948469 -74.696651 L 16.471715 -74.696651 " transform="matrix(0.996125,0,0,-0.996125,80.721019,74.889674)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 93.925781 149.296875 L 98.351562 150.976562 L 96.878906 149.296875 L 98.351562 147.621094 Z M 93.925781 149.296875 "/>
|
||||
<g clip-path="url(#clip3)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05285 -0.0014991 L 1.609853 1.684723 L 3.088238 -0.0014991 L 1.609853 -1.683799 Z M 6.05285 -0.0014991 " transform="matrix(-0.996125,0,0,0.996125,99.955177,149.298368)"/>
|
||||
</g>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 33.4375 35.011719 C 33.4375 33.914062 32.550781 33.023438 31.453125 33.023438 C 30.359375 33.023438 29.46875 33.914062 29.46875 35.011719 C 29.46875 36.105469 30.359375 36.996094 31.453125 36.996094 C 32.550781 36.996094 33.4375 36.105469 33.4375 35.011719 Z M 33.4375 35.011719 "/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="147.813026" y="116.660183"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -49.45955 -5.718423 L -7.73929 -5.718423 " transform="matrix(0.996125,0,0,-0.996125,80.721019,74.889674)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052024 0.00110724 L 1.609026 1.683407 L 3.087411 0.00110724 L 1.609026 -1.681193 Z M 6.052024 0.00110724 " transform="matrix(0.996125,0,0,-0.996125,70.182365,80.58704)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 33.4375 80.585938 C 33.4375 79.492188 32.550781 78.601562 31.453125 78.601562 C 30.359375 78.601562 29.46875 79.492188 29.46875 80.585938 C 29.46875 81.683594 30.359375 82.570312 31.453125 82.570312 C 32.550781 82.570312 33.4375 81.683594 33.4375 80.585938 Z M 33.4375 80.585938 "/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16.510929 40.033083 L 23.216601 40.033083 " transform="matrix(0.996125,0,0,-0.996125,80.721019,74.889674)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051895 -0.00182693 L 1.608897 1.684395 L 3.087282 -0.00182693 L 1.608897 -1.684127 Z M 6.051895 -0.00182693 " transform="matrix(0.996125,0,0,-0.996125,101.018431,35.009899)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16.510929 17.155369 L 23.216601 17.155369 " transform="matrix(0.996125,0,0,-0.996125,80.721019,74.889674)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051895 -0.00146057 L 1.608897 1.684761 L 3.087282 -0.00146057 L 1.608897 -1.683761 Z M 6.051895 -0.00146057 " transform="matrix(0.996125,0,0,-0.996125,101.018431,57.799326)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 51.521596 40.033083 L 75.234577 40.033083 " transform="matrix(0.996125,0,0,-0.996125,80.721019,74.889674)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053173 -0.00182693 L 1.610175 1.684395 L 3.08856 -0.00182693 L 1.610175 -1.684127 Z M 6.053173 -0.00182693 " transform="matrix(0.996125,0,0,-0.996125,152.837471,35.009899)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="147.4086" y="29.717397"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-1" x="152.023647" y="31.206604"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 51.521596 17.155369 L 75.234577 17.155369 " transform="matrix(0.996125,0,0,-0.996125,80.721019,74.889674)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053173 -0.00146057 L 1.610175 1.684761 L 3.08856 -0.00146057 L 1.610175 -1.683761 Z M 6.053173 -0.00146057 " transform="matrix(0.996125,0,0,-0.996125,152.837471,57.799326)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="147.4086" y="52.506745"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-2" x="152.023647" y="53.995952"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 51.521596 -5.718423 L 75.234577 -5.718423 " transform="matrix(0.996125,0,0,-0.996125,80.721019,74.889674)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053173 0.00110724 L 1.610175 1.683407 L 3.08856 0.00110724 L 1.610175 -1.681193 Z M 6.053173 0.00110724 " transform="matrix(0.996125,0,0,-0.996125,152.837471,80.58704)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="147.4086" y="75.2941"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-3" x="152.023647" y="76.783307"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 51.521596 -28.596136 L 75.234577 -28.596136 " transform="matrix(0.996125,0,0,-0.996125,80.721019,74.889674)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053163 -0.000246404 L 1.610165 1.682054 L 3.08855 -0.000246404 L 1.610165 -1.682547 Z M 6.053163 -0.000246404 " transform="matrix(0.996125,0,0,-0.996125,152.837481,103.374755)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="147.4086" y="98.081456"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-4" x="152.023647" y="99.570663"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84.849962 53.456191 C 85.598958 53.083654 86.096982 52.209172 86.096982 50.966073 L 86.096982 37.797859 C 86.096982 36.550839 86.595005 35.680278 87.34008 35.307741 C 86.595005 34.931282 86.096982 34.060721 86.096982 32.817623 L 86.096982 19.649409 C 86.096982 18.402389 85.598958 17.531828 84.849962 17.155369 " transform="matrix(0.996125,0,0,-0.996125,80.721019,74.889674)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="170.037571" y="40.616001"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="174.652618" y="42.104212"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="181.451172" y="43.097348"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84.849962 7.700764 C 85.598958 7.328227 86.096982 6.457666 86.096982 5.210646 L 86.096982 -7.957568 C 86.096982 -9.200666 86.595005 -10.075149 87.34008 -10.447686 C 86.595005 -10.820223 86.096982 -11.690784 86.096982 -12.937804 L 86.096982 -26.106018 C 86.096982 -27.353038 85.598958 -28.223599 84.849962 -28.596136 " transform="matrix(0.996125,0,0,-0.996125,80.721019,74.889674)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="170.037571" y="86.191708"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="174.652618" y="87.679919"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="181.451172" y="88.673055"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 46 KiB |
BIN
journal/figs/psd_sensors_hinf_synthesis.pdf
Normal file
BIN
journal/figs/psd_sensors_htwo_hinf_synthesis.pdf
Normal file
BIN
journal/figs/psd_sensors_htwo_synthesis.pdf
Normal file
BIN
journal/figs/sensor_fusion_arch_full.pdf
Normal file
BIN
journal/figs/sensor_fusion_arch_full.png
Normal file
After Width: | Height: | Size: 39 KiB |
324
journal/figs/sensor_fusion_arch_full.svg
Normal file
@@ -0,0 +1,324 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="222.529pt" height="152.641pt" viewBox="0 0 222.529 152.641" version="1.2">
|
||||
<defs>
|
||||
<g>
|
||||
<symbol overflow="visible" id="glyph0-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<path style="stroke:none;" d="M 4.953125 -1.84375 C 4.953125 -2.84375 4.296875 -3.65625 3.46875 -3.859375 L 2.203125 -4.15625 C 1.578125 -4.3125 1.1875 -4.84375 1.1875 -5.421875 C 1.1875 -6.125 1.734375 -6.734375 2.5 -6.734375 C 4.15625 -6.734375 4.375 -5.09375 4.4375 -4.65625 C 4.453125 -4.59375 4.453125 -4.53125 4.5625 -4.53125 C 4.6875 -4.53125 4.6875 -4.578125 4.6875 -4.765625 L 4.6875 -6.765625 C 4.6875 -6.9375 4.6875 -7 4.578125 -7 C 4.515625 -7 4.5 -7 4.4375 -6.875 L 4.078125 -6.3125 C 3.78125 -6.59375 3.375 -7 2.5 -7 C 1.390625 -7 0.5625 -6.125 0.5625 -5.078125 C 0.5625 -4.25 1.078125 -3.53125 1.859375 -3.265625 C 1.96875 -3.21875 2.46875 -3.09375 3.171875 -2.9375 C 3.4375 -2.859375 3.734375 -2.796875 4.015625 -2.421875 C 4.21875 -2.171875 4.328125 -1.84375 4.328125 -1.515625 C 4.328125 -0.8125 3.828125 -0.09375 2.984375 -0.09375 C 2.703125 -0.09375 1.953125 -0.140625 1.421875 -0.625 C 0.84375 -1.15625 0.8125 -1.796875 0.8125 -2.15625 C 0.796875 -2.25 0.71875 -2.25 0.6875 -2.25 C 0.5625 -2.25 0.5625 -2.1875 0.5625 -2 L 0.5625 -0.015625 C 0.5625 0.15625 0.5625 0.21875 0.671875 0.21875 C 0.734375 0.21875 0.75 0.203125 0.8125 0.09375 C 0.8125 0.09375 0.84375 0.046875 1.171875 -0.484375 C 1.484375 -0.140625 2.109375 0.21875 3 0.21875 C 4.15625 0.21875 4.953125 -0.75 4.953125 -1.84375 Z M 4.953125 -1.84375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 5.3125 0 L 5.3125 -0.3125 C 4.625 -0.3125 4.546875 -0.375 4.546875 -0.859375 L 4.546875 -4.390625 L 3.078125 -4.28125 L 3.078125 -3.96875 C 3.78125 -3.96875 3.859375 -3.90625 3.859375 -3.421875 L 3.859375 -1.65625 C 3.859375 -0.78125 3.375 -0.109375 2.65625 -0.109375 C 1.8125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.09375 -3.96875 1.09375 -3.9375 1.09375 -3.0625 L 1.09375 -1.5625 C 1.09375 -0.796875 1.09375 0.109375 2.609375 0.109375 C 3.15625 0.109375 3.59375 -0.171875 3.890625 -0.78125 L 3.890625 0.109375 Z M 5.3125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 5.171875 -2.140625 C 5.171875 -3.40625 4.21875 -4.390625 3.09375 -4.390625 C 2.328125 -4.390625 1.90625 -3.953125 1.703125 -3.734375 L 1.703125 -4.390625 L 0.28125 -4.28125 L 0.28125 -3.96875 C 0.984375 -3.96875 1.046875 -3.921875 1.046875 -3.484375 L 1.046875 1.171875 C 1.046875 1.625 0.9375 1.625 0.28125 1.625 L 0.28125 1.921875 L 1.390625 1.890625 L 2.515625 1.921875 L 2.515625 1.625 C 1.84375 1.625 1.734375 1.625 1.734375 1.171875 L 1.734375 -0.59375 C 1.78125 -0.421875 2.203125 0.109375 2.96875 0.109375 C 4.140625 0.109375 5.171875 -0.859375 5.171875 -2.140625 Z M 4.359375 -2.140625 C 4.359375 -0.9375 3.65625 -0.109375 2.921875 -0.109375 C 2.53125 -0.109375 2.140625 -0.3125 1.875 -0.71875 C 1.734375 -0.921875 1.734375 -0.9375 1.734375 -1.140625 L 1.734375 -3.34375 C 2.03125 -3.859375 2.515625 -4.140625 3.015625 -4.140625 C 3.75 -4.140625 4.359375 -3.265625 4.359375 -2.140625 Z M 4.359375 -2.140625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 4.125 -1.1875 C 4.125 -1.28125 4.046875 -1.296875 4 -1.296875 C 3.90625 -1.296875 3.890625 -1.25 3.859375 -1.15625 C 3.515625 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 L 3.875 -2.296875 C 4.09375 -2.296875 4.125 -2.296875 4.125 -2.5 C 4.125 -3.484375 3.59375 -4.453125 2.34375 -4.453125 C 1.1875 -4.453125 0.28125 -3.421875 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.671875 0.109375 4.125 -1 4.125 -1.1875 Z M 3.46875 -2.5 L 1.109375 -2.5 C 1.171875 -3.984375 2 -4.234375 2.34375 -4.234375 C 3.375 -4.234375 3.46875 -2.890625 3.46875 -2.5 Z M 3.46875 -2.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 3.625 -3.78125 C 3.625 -4.109375 3.3125 -4.390625 2.875 -4.390625 C 2.15625 -4.390625 1.796875 -3.734375 1.65625 -3.296875 L 1.65625 -4.390625 L 0.28125 -4.28125 L 0.28125 -3.96875 C 0.96875 -3.96875 1.046875 -3.90625 1.046875 -3.421875 L 1.046875 -0.75 C 1.046875 -0.3125 0.9375 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.40625 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.671875 0 L 2.671875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.703125 -0.421875 1.703125 -0.78125 L 1.703125 -2.3125 C 1.703125 -3.296875 2.125 -4.171875 2.875 -4.171875 C 2.953125 -4.171875 2.96875 -4.171875 2.984375 -4.15625 C 2.96875 -4.15625 2.765625 -4.03125 2.765625 -3.78125 C 2.765625 -3.5 2.96875 -3.34375 3.1875 -3.34375 C 3.375 -3.34375 3.625 -3.46875 3.625 -3.78125 Z M 3.625 -3.78125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 5.3125 0 L 5.3125 -0.3125 C 4.796875 -0.3125 4.546875 -0.3125 4.546875 -0.609375 L 4.546875 -2.5 C 4.546875 -3.359375 4.546875 -3.671875 4.234375 -4.03125 C 4.09375 -4.1875 3.765625 -4.390625 3.1875 -4.390625 C 2.46875 -4.390625 2 -3.96875 1.71875 -3.34375 L 1.71875 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.015625 -3.96875 1.09375 -3.90625 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.578125 C 1.78125 -3.625 2.484375 -4.171875 3.125 -4.171875 C 3.75 -4.171875 3.859375 -3.640625 3.859375 -3.078125 L 3.859375 -0.75 C 3.859375 -0.3125 3.75 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.203125 -0.03125 Z M 5.3125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 3.578125 -1.265625 C 3.578125 -1.796875 3.28125 -2.09375 3.15625 -2.21875 C 2.828125 -2.53125 2.4375 -2.609375 2.03125 -2.6875 C 1.46875 -2.796875 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.859375 1.0625 -4.265625 1.921875 -4.265625 C 3.015625 -4.265625 3.0625 -3.375 3.078125 -3.0625 C 3.09375 -2.96875 3.203125 -2.96875 3.203125 -2.96875 C 3.328125 -2.96875 3.328125 -3.015625 3.328125 -3.203125 L 3.328125 -4.21875 C 3.328125 -4.375 3.328125 -4.453125 3.21875 -4.453125 C 3.171875 -4.453125 3.15625 -4.453125 3.015625 -4.328125 C 2.984375 -4.296875 2.890625 -4.203125 2.859375 -4.171875 C 2.46875 -4.453125 2.0625 -4.453125 1.921875 -4.453125 C 0.703125 -4.453125 0.328125 -3.78125 0.328125 -3.234375 C 0.328125 -2.875 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.125 1.34375 -2.0625 2.0625 -1.921875 C 2.28125 -1.890625 3.09375 -1.734375 3.09375 -1.015625 C 3.09375 -0.5 2.75 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.515625 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.4375 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.765625 0.109375 1.984375 0.109375 C 3.125 0.109375 3.578125 -0.5625 3.578125 -1.265625 Z M 3.578125 -1.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 4.6875 -2.125 C 4.6875 -3.40625 3.6875 -4.453125 2.484375 -4.453125 C 1.25 -4.453125 0.28125 -3.375 0.28125 -2.125 C 0.28125 -0.84375 1.3125 0.109375 2.46875 0.109375 C 3.671875 0.109375 4.6875 -0.859375 4.6875 -2.125 Z M 3.859375 -2.203125 C 3.859375 -1.84375 3.859375 -1.3125 3.640625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.484375 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.34375 -0.8125 C 1.109375 -1.25 1.109375 -1.84375 1.109375 -2.203125 C 1.109375 -2.59375 1.109375 -3.125 1.34375 -3.5625 C 1.609375 -4.03125 2.078125 -4.234375 2.46875 -4.234375 C 2.90625 -4.234375 3.34375 -4.015625 3.59375 -3.59375 C 3.859375 -3.15625 3.859375 -2.578125 3.859375 -2.203125 Z M 3.859375 -2.203125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-9">
|
||||
<path style="stroke:none;" d="M 4.15625 0 L 4.15625 -0.3125 L 3.84375 -0.3125 C 2.953125 -0.3125 2.921875 -0.421875 2.921875 -0.78125 L 2.921875 -6.359375 C 2.921875 -6.59375 2.921875 -6.625 2.6875 -6.625 C 2.078125 -5.984375 1.203125 -5.984375 0.890625 -5.984375 L 0.890625 -5.671875 C 1.078125 -5.671875 1.671875 -5.671875 2.1875 -5.9375 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.9375 -0.3125 L 0.9375 0 C 1.296875 -0.03125 2.15625 -0.03125 2.546875 -0.03125 C 2.953125 -0.03125 3.8125 -0.03125 4.15625 0 Z M 4.15625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-10">
|
||||
<path style="stroke:none;" d="M 4.46875 -1.734375 L 4.21875 -1.734375 C 4.15625 -1.4375 4.09375 -1 4 -0.84375 C 3.921875 -0.765625 3.265625 -0.765625 3.046875 -0.765625 L 1.265625 -0.765625 L 2.3125 -1.78125 C 3.859375 -3.15625 4.46875 -3.703125 4.46875 -4.6875 C 4.46875 -5.828125 3.5625 -6.625 2.359375 -6.625 C 1.234375 -6.625 0.5 -5.703125 0.5 -4.8125 C 0.5 -4.265625 1 -4.265625 1.03125 -4.265625 C 1.1875 -4.265625 1.546875 -4.375 1.546875 -4.796875 C 1.546875 -5.046875 1.359375 -5.3125 1.015625 -5.3125 C 0.9375 -5.3125 0.921875 -5.3125 0.890625 -5.296875 C 1.109375 -5.9375 1.65625 -6.3125 2.21875 -6.3125 C 3.125 -6.3125 3.5625 -5.5 3.5625 -4.6875 C 3.5625 -3.890625 3.0625 -3.109375 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.1875 0 Z M 4.46875 -1.734375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-11">
|
||||
<path style="stroke:none;" d="M 7.796875 -0.078125 C 7.796875 -0.078125 7.796875 -0.109375 7.75 -0.203125 L 4.390625 -6.9375 C 4.328125 -7.0625 4.296875 -7.109375 4.140625 -7.109375 C 3.96875 -7.109375 3.9375 -7.0625 3.875 -6.9375 L 0.515625 -0.203125 C 0.46875 -0.109375 0.46875 -0.078125 0.46875 -0.078125 C 0.46875 0 0.53125 0 0.6875 0 L 7.578125 0 C 7.734375 0 7.796875 0 7.796875 -0.078125 Z M 6.484375 -0.75 L 1.140625 -0.75 L 3.8125 -6.125 Z M 6.484375 -0.75 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-12">
|
||||
<path style="stroke:none;" d="M 4 -5.265625 L 2.484375 -6.875 L 0.96875 -5.265625 L 1.109375 -5.125 L 2.484375 -6.203125 L 3.859375 -5.125 Z M 4 -5.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-13">
|
||||
<path style="stroke:none;" d="M 4.140625 -6.3125 L 3.984375 -6.46875 C 3.984375 -6.46875 3.609375 -6 3.171875 -6 C 2.9375 -6 2.6875 -6.140625 2.53125 -6.234375 C 2.25 -6.40625 2.078125 -6.46875 1.90625 -6.46875 C 1.53125 -6.46875 1.34375 -6.25 0.828125 -5.6875 L 1 -5.546875 C 1 -5.546875 1.375 -6.015625 1.8125 -6.015625 C 2.03125 -6.015625 2.28125 -5.875 2.453125 -5.78125 C 2.71875 -5.609375 2.90625 -5.546875 3.078125 -5.546875 C 3.453125 -5.546875 3.640625 -5.765625 4.140625 -6.3125 Z M 4.140625 -6.3125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<path style="stroke:none;" d="M 8.09375 -2.984375 C 8.09375 -3.203125 7.890625 -3.203125 7.71875 -3.203125 L 4.53125 -3.203125 L 4.53125 -6.390625 C 4.53125 -6.5625 4.53125 -6.765625 4.328125 -6.765625 C 4.109375 -6.765625 4.109375 -6.578125 4.109375 -6.390625 L 4.109375 -3.203125 L 0.921875 -3.203125 C 0.75 -3.203125 0.546875 -3.203125 0.546875 -3 C 0.546875 -2.78125 0.75 -2.78125 0.921875 -2.78125 L 4.109375 -2.78125 L 4.109375 0.390625 C 4.109375 0.5625 4.109375 0.765625 4.3125 0.765625 C 4.53125 0.765625 4.53125 0.578125 4.53125 0.390625 L 4.53125 -2.78125 L 7.71875 -2.78125 C 7.875 -2.78125 8.09375 -2.78125 8.09375 -2.984375 Z M 8.09375 -2.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-1">
|
||||
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.03125 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.5625 L 2.328125 -4.421875 C 2.328125 -4.609375 2.3125 -4.609375 2.125 -4.609375 C 1.671875 -4.171875 1.046875 -4.171875 0.765625 -4.171875 L 0.765625 -3.921875 C 0.921875 -3.921875 1.390625 -3.921875 1.765625 -4.109375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.078125 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.28125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 3.515625 -1.265625 L 3.28125 -1.265625 C 3.25 -1.109375 3.1875 -0.703125 3.09375 -0.625 C 3.03125 -0.59375 2.5 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.09375 -1.4375 2.515625 -1.765625 C 3.03125 -2.171875 3.515625 -2.59375 3.515625 -3.265625 C 3.515625 -4.109375 2.78125 -4.609375 1.890625 -4.609375 C 1.015625 -4.609375 0.4375 -4.015625 0.4375 -3.375 C 0.4375 -3.015625 0.734375 -2.984375 0.8125 -2.984375 C 0.96875 -2.984375 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.484375 1.125 -3.71875 0.765625 -3.71875 C 0.984375 -4.21875 1.453125 -4.359375 1.78125 -4.359375 C 2.46875 -4.359375 2.84375 -3.828125 2.84375 -3.265625 C 2.84375 -2.65625 2.40625 -2.171875 2.1875 -1.921875 L 0.5 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.296875 0 Z M 3.515625 -1.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-1">
|
||||
<path style="stroke:none;" d="M 10.421875 -6.671875 C 10.421875 -6.71875 10.375 -6.78125 10.296875 -6.78125 C 10.0625 -6.78125 9.78125 -6.75 9.53125 -6.75 C 9.1875 -6.75 8.828125 -6.78125 8.5 -6.78125 C 8.4375 -6.78125 8.3125 -6.78125 8.3125 -6.59375 C 8.3125 -6.484375 8.390625 -6.484375 8.453125 -6.484375 C 8.703125 -6.46875 9.046875 -6.390625 9.046875 -6.09375 C 9.046875 -5.984375 9 -5.90625 8.90625 -5.765625 L 6.234375 -1.078125 L 5.859375 -6.015625 C 5.859375 -6.21875 5.828125 -6.46875 6.5625 -6.484375 C 6.734375 -6.484375 6.828125 -6.484375 6.828125 -6.671875 C 6.828125 -6.78125 6.71875 -6.78125 6.671875 -6.78125 C 6.28125 -6.78125 5.859375 -6.75 5.46875 -6.75 C 5.234375 -6.75 4.65625 -6.78125 4.421875 -6.78125 C 4.359375 -6.78125 4.234375 -6.78125 4.234375 -6.59375 C 4.234375 -6.484375 4.328125 -6.484375 4.46875 -6.484375 C 4.90625 -6.484375 4.984375 -6.421875 5 -6.234375 L 5.0625 -5.46875 L 2.546875 -1.078125 L 2.171875 -6.125 C 2.171875 -6.234375 2.171875 -6.46875 2.921875 -6.484375 C 3.015625 -6.484375 3.125 -6.484375 3.125 -6.671875 C 3.125 -6.78125 2.984375 -6.78125 2.984375 -6.78125 C 2.59375 -6.78125 2.171875 -6.75 1.765625 -6.75 C 1.421875 -6.75 1.0625 -6.78125 0.71875 -6.78125 C 0.671875 -6.78125 0.546875 -6.78125 0.546875 -6.59375 C 0.546875 -6.484375 0.640625 -6.484375 0.796875 -6.484375 C 1.296875 -6.484375 1.296875 -6.390625 1.328125 -6.109375 L 1.765625 -0.046875 C 1.78125 0.140625 1.78125 0.21875 1.921875 0.21875 C 2.046875 0.21875 2.078125 0.15625 2.171875 0.015625 L 5.09375 -5.0625 L 5.453125 -0.046875 C 5.46875 0.171875 5.5 0.21875 5.609375 0.21875 C 5.75 0.21875 5.796875 0.125 5.859375 0.03125 L 9.109375 -5.640625 C 9.359375 -6.078125 9.59375 -6.421875 10.21875 -6.484375 C 10.3125 -6.484375 10.421875 -6.484375 10.421875 -6.671875 Z M 10.421875 -6.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-2">
|
||||
<path style="stroke:none;" d="M 8.75 -6.671875 C 8.75 -6.671875 8.75 -6.78125 8.625 -6.78125 C 8.296875 -6.78125 7.953125 -6.75 7.625 -6.75 C 7.28125 -6.75 6.9375 -6.78125 6.609375 -6.78125 C 6.546875 -6.78125 6.421875 -6.78125 6.421875 -6.59375 C 6.421875 -6.484375 6.53125 -6.484375 6.609375 -6.484375 C 7.171875 -6.46875 7.28125 -6.265625 7.28125 -6.046875 C 7.28125 -6.015625 7.265625 -5.859375 7.25 -5.828125 L 6.140625 -1.40625 L 3.9375 -6.59375 C 3.859375 -6.78125 3.859375 -6.78125 3.625 -6.78125 L 2.296875 -6.78125 C 2.09375 -6.78125 2 -6.78125 2 -6.59375 C 2 -6.484375 2.09375 -6.484375 2.28125 -6.484375 C 2.328125 -6.484375 2.96875 -6.484375 2.96875 -6.390625 L 1.625 -1.046875 C 1.53125 -0.65625 1.359375 -0.34375 0.5625 -0.3125 C 0.5 -0.3125 0.390625 -0.296875 0.390625 -0.109375 C 0.390625 -0.046875 0.4375 0 0.515625 0 C 0.828125 0 1.1875 -0.03125 1.515625 -0.03125 C 1.84375 -0.03125 2.203125 0 2.53125 0 C 2.578125 0 2.71875 0 2.71875 -0.203125 C 2.71875 -0.296875 2.625 -0.3125 2.515625 -0.3125 C 1.9375 -0.328125 1.859375 -0.546875 1.859375 -0.75 C 1.859375 -0.8125 1.875 -0.859375 1.890625 -0.96875 L 3.203125 -6.21875 C 3.25 -6.15625 3.25 -6.140625 3.296875 -6.046875 L 5.78125 -0.1875 C 5.84375 -0.015625 5.875 0 5.96875 0 C 6.078125 0 6.078125 -0.03125 6.125 -0.203125 L 7.515625 -5.75 C 7.609375 -6.140625 7.796875 -6.453125 8.59375 -6.484375 C 8.640625 -6.484375 8.75 -6.484375 8.75 -6.671875 Z M 8.75 -6.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-3">
|
||||
<path style="stroke:none;" d="M 7.140625 -0.203125 C 7.140625 -0.3125 7.046875 -0.3125 6.859375 -0.3125 C 6.484375 -0.3125 6.21875 -0.3125 6.21875 -0.484375 C 6.21875 -0.546875 6.234375 -0.59375 6.234375 -0.65625 L 7.578125 -6.015625 C 7.671875 -6.375 7.6875 -6.484375 8.421875 -6.484375 C 8.671875 -6.484375 8.75 -6.484375 8.75 -6.671875 C 8.75 -6.78125 8.640625 -6.78125 8.609375 -6.78125 L 7.34375 -6.75 L 6.0625 -6.78125 C 5.984375 -6.78125 5.875 -6.78125 5.875 -6.59375 C 5.875 -6.484375 5.96875 -6.484375 6.15625 -6.484375 C 6.15625 -6.484375 6.359375 -6.484375 6.53125 -6.453125 C 6.703125 -6.4375 6.796875 -6.421875 6.796875 -6.296875 C 6.796875 -6.265625 6.78125 -6.234375 6.75 -6.109375 L 6.15625 -3.6875 L 3.125 -3.6875 L 3.71875 -6.015625 C 3.8125 -6.375 3.828125 -6.484375 4.546875 -6.484375 C 4.8125 -6.484375 4.890625 -6.484375 4.890625 -6.671875 C 4.890625 -6.78125 4.78125 -6.78125 4.75 -6.78125 L 3.484375 -6.75 L 2.203125 -6.78125 C 2.109375 -6.78125 2 -6.78125 2 -6.59375 C 2 -6.484375 2.09375 -6.484375 2.28125 -6.484375 C 2.28125 -6.484375 2.5 -6.484375 2.65625 -6.453125 C 2.84375 -6.4375 2.9375 -6.421875 2.9375 -6.296875 C 2.9375 -6.265625 2.921875 -6.234375 2.890625 -6.109375 L 1.5625 -0.78125 C 1.453125 -0.390625 1.4375 -0.3125 0.65625 -0.3125 C 0.484375 -0.3125 0.390625 -0.3125 0.390625 -0.109375 C 0.390625 0 0.53125 0 0.53125 0 L 1.78125 -0.03125 L 2.421875 -0.015625 C 2.640625 -0.015625 2.859375 0 3.078125 0 C 3.15625 0 3.265625 0 3.265625 -0.203125 C 3.265625 -0.3125 3.1875 -0.3125 2.984375 -0.3125 C 2.625 -0.3125 2.34375 -0.3125 2.34375 -0.484375 C 2.34375 -0.546875 2.359375 -0.59375 2.375 -0.65625 L 3.046875 -3.375 L 6.078125 -3.375 L 5.390625 -0.640625 C 5.296875 -0.3125 5.109375 -0.3125 4.484375 -0.3125 C 4.34375 -0.3125 4.25 -0.3125 4.25 -0.109375 C 4.25 0 4.390625 0 4.390625 0 L 5.65625 -0.03125 L 6.296875 -0.015625 C 6.515625 -0.015625 6.734375 0 6.9375 0 C 7.015625 0 7.140625 0 7.140625 -0.203125 Z M 7.140625 -0.203125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-4">
|
||||
<path style="stroke:none;" d="M 4.921875 -1.421875 C 4.921875 -1.515625 4.84375 -1.515625 4.8125 -1.515625 C 4.71875 -1.515625 4.703125 -1.484375 4.6875 -1.40625 C 4.359375 -0.34375 3.671875 -0.109375 3.359375 -0.109375 C 2.96875 -0.109375 2.8125 -0.421875 2.8125 -0.765625 C 2.8125 -0.984375 2.875 -1.203125 2.984375 -1.640625 L 3.3125 -3 C 3.375 -3.265625 3.609375 -4.171875 4.296875 -4.171875 C 4.359375 -4.171875 4.59375 -4.171875 4.796875 -4.046875 C 4.515625 -4 4.328125 -3.75 4.328125 -3.515625 C 4.328125 -3.34375 4.4375 -3.15625 4.703125 -3.15625 C 4.921875 -3.15625 5.234375 -3.34375 5.234375 -3.734375 C 5.234375 -4.25 4.65625 -4.390625 4.3125 -4.390625 C 3.734375 -4.390625 3.390625 -3.859375 3.265625 -3.640625 C 3.015625 -4.296875 2.484375 -4.390625 2.203125 -4.390625 C 1.15625 -4.390625 0.59375 -3.109375 0.59375 -2.859375 C 0.59375 -2.765625 0.71875 -2.765625 0.71875 -2.765625 C 0.796875 -2.765625 0.828125 -2.78125 0.84375 -2.875 C 1.1875 -3.921875 1.84375 -4.171875 2.171875 -4.171875 C 2.359375 -4.171875 2.71875 -4.078125 2.71875 -3.515625 C 2.71875 -3.203125 2.546875 -2.53125 2.171875 -1.140625 C 2.015625 -0.53125 1.671875 -0.109375 1.234375 -0.109375 C 1.171875 -0.109375 0.9375 -0.109375 0.734375 -0.234375 C 0.984375 -0.28125 1.203125 -0.5 1.203125 -0.78125 C 1.203125 -1.046875 0.984375 -1.125 0.828125 -1.125 C 0.53125 -1.125 0.28125 -0.859375 0.28125 -0.546875 C 0.28125 -0.09375 0.78125 0.109375 1.21875 0.109375 C 1.875 0.109375 2.234375 -0.59375 2.265625 -0.640625 C 2.390625 -0.28125 2.75 0.109375 3.34375 0.109375 C 4.359375 0.109375 4.921875 -1.171875 4.921875 -1.421875 Z M 4.921875 -1.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-5">
|
||||
<path style="stroke:none;" d="M 5.671875 -1.421875 C 5.671875 -1.515625 5.578125 -1.515625 5.5625 -1.515625 C 5.453125 -1.515625 5.453125 -1.484375 5.40625 -1.34375 C 5.203125 -0.671875 4.875 -0.109375 4.390625 -0.109375 C 4.21875 -0.109375 4.15625 -0.203125 4.15625 -0.4375 C 4.15625 -0.6875 4.25 -0.921875 4.328125 -1.140625 C 4.515625 -1.671875 4.9375 -2.765625 4.9375 -3.328125 C 4.9375 -4 4.515625 -4.390625 3.796875 -4.390625 C 2.90625 -4.390625 2.421875 -3.75 2.25 -3.53125 C 2.203125 -4.078125 1.78125 -4.390625 1.328125 -4.390625 C 0.875 -4.390625 0.6875 -4 0.59375 -3.828125 C 0.421875 -3.484375 0.28125 -2.90625 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.765625 0.578125 -2.984375 C 0.75 -3.703125 0.9375 -4.171875 1.296875 -4.171875 C 1.5 -4.171875 1.609375 -4.046875 1.609375 -3.71875 C 1.609375 -3.515625 1.578125 -3.40625 1.453125 -2.875 L 0.875 -0.59375 C 0.84375 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.921875 0.109375 1.078125 0.109375 C 1.1875 0.109375 1.375 0.03125 1.4375 -0.171875 C 1.453125 -0.1875 1.5625 -0.65625 1.625 -0.90625 L 1.84375 -1.796875 C 1.90625 -2.015625 1.96875 -2.234375 2.015625 -2.46875 L 2.140625 -2.96875 C 2.296875 -3.265625 2.828125 -4.171875 3.765625 -4.171875 C 4.21875 -4.171875 4.296875 -3.8125 4.296875 -3.484375 C 4.296875 -2.859375 3.8125 -1.59375 3.65625 -1.15625 C 3.5625 -0.9375 3.5625 -0.8125 3.5625 -0.703125 C 3.5625 -0.234375 3.90625 0.109375 4.375 0.109375 C 5.3125 0.109375 5.671875 -1.34375 5.671875 -1.421875 Z M 5.671875 -1.421875 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
<clipPath id="clip1">
|
||||
<path d="M 23 112 L 66 112 L 66 152.28125 L 23 152.28125 Z M 23 112 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip2">
|
||||
<path d="M 110 112 L 153 112 L 153 152.28125 L 110 152.28125 Z M 110 112 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip3">
|
||||
<path d="M 0.0273438 98 L 22 98 L 22 100 L 0.0273438 100 Z M 0.0273438 98 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip4">
|
||||
<path d="M 201 83 L 222.03125 83 L 222.03125 115 L 201 115 Z M 201 83 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<path style="fill-rule:nonzero;fill:rgb(89.99939%,89.99939%,89.99939%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M -5.667458 -52.546883 L 186.517861 -52.546883 L 186.517861 98.099564 L -5.667458 98.099564 Z M -5.667458 -52.546883 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="146.875745" y="11.155762"/>
|
||||
<use xlink:href="#glyph0-2" x="152.397978" y="11.155762"/>
|
||||
<use xlink:href="#glyph0-3" x="157.92021" y="11.155762"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="163.720741" y="11.155762"/>
|
||||
<use xlink:href="#glyph0-5" x="168.138726" y="11.155762"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="175.341682" y="11.155762"/>
|
||||
<use xlink:href="#glyph0-4" x="180.863914" y="11.155762"/>
|
||||
<use xlink:href="#glyph0-6" x="185.281899" y="11.155762"/>
|
||||
<use xlink:href="#glyph0-7" x="190.804132" y="11.155762"/>
|
||||
<use xlink:href="#glyph0-8" x="194.725156" y="11.155762"/>
|
||||
<use xlink:href="#glyph0-5" x="199.694768" y="11.155762"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M 5.612916 25.229362 L 121.157468 25.229362 L 121.157468 89.595234 L 5.612916 89.595234 Z M 5.612916 25.229362 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="101.851638" y="19.639809"/>
|
||||
<use xlink:href="#glyph0-4" x="107.373871" y="19.639809"/>
|
||||
<use xlink:href="#glyph0-6" x="111.791856" y="19.639809"/>
|
||||
<use xlink:href="#glyph0-7" x="117.314089" y="19.639809"/>
|
||||
<use xlink:href="#glyph0-8" x="121.235112" y="19.639809"/>
|
||||
<use xlink:href="#glyph0-5" x="126.204724" y="19.639809"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-9" x="133.40768" y="19.639809"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M 5.612916 -44.849133 L 121.157468 -44.849133 L 121.157468 19.516739 L 5.612916 19.516739 Z M 5.612916 -44.849133 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="101.851638" y="89.553377"/>
|
||||
<use xlink:href="#glyph0-4" x="107.373871" y="89.553377"/>
|
||||
<use xlink:href="#glyph0-6" x="111.791856" y="89.553377"/>
|
||||
<use xlink:href="#glyph0-7" x="117.314089" y="89.553377"/>
|
||||
<use xlink:href="#glyph0-8" x="121.235112" y="89.553377"/>
|
||||
<use xlink:href="#glyph0-5" x="126.204724" y="89.553377"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="133.40768" y="89.553377"/>
|
||||
</g>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 22.804688 98.867188 C 22.804688 97.769531 21.917969 96.878906 20.816406 96.878906 C 19.71875 96.878906 18.832031 97.769531 18.832031 98.867188 C 18.832031 99.964844 19.71875 100.851562 20.816406 100.851562 C 21.917969 100.851562 22.804688 99.964844 22.804688 98.867188 Z M 22.804688 98.867188 "/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 30.67563 35.037532 C 30.67563 38.890322 27.551111 42.014841 23.702236 42.014841 C 19.849446 42.014841 16.724927 38.890322 16.724927 35.037532 C 16.724927 31.188657 19.849446 28.064138 23.702236 28.064138 C 27.551111 28.064138 30.67563 31.188657 30.67563 35.037532 Z M 30.67563 35.037532 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="40.135789" y="66.81785"/>
|
||||
</g>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 51.421875 133.824219 C 51.421875 129.980469 48.304688 126.863281 44.464844 126.863281 C 40.621094 126.863281 37.503906 129.980469 37.503906 133.824219 C 37.503906 137.664062 40.621094 140.78125 44.464844 140.78125 C 48.304688 140.78125 51.421875 137.664062 51.421875 133.824219 Z M 51.421875 133.824219 "/>
|
||||
<g clip-path="url(#clip1)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 30.67563 -35.040963 C 30.67563 -31.188173 27.551111 -28.063654 23.702236 -28.063654 C 19.849446 -28.063654 16.724927 -31.188173 16.724927 -35.040963 C 16.724927 -38.889838 19.849446 -42.014357 23.702236 -42.014357 C 27.551111 -42.014357 30.67563 -38.889838 30.67563 -35.040963 Z M 30.67563 -35.040963 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="40.135789" y="136.731418"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.322691 35.037532 C 118.322691 38.890322 115.202088 42.014841 111.349298 42.014841 C 107.500423 42.014841 104.375904 38.890322 104.375904 35.037532 C 104.375904 31.188657 107.500423 28.064138 111.349298 28.064138 C 115.202088 28.064138 118.322691 31.188657 118.322691 35.037532 Z M 118.322691 35.037532 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="127.578132" y="66.81785"/>
|
||||
</g>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 138.863281 133.824219 C 138.863281 129.980469 135.75 126.863281 131.90625 126.863281 C 128.066406 126.863281 124.949219 129.980469 124.949219 133.824219 C 124.949219 137.664062 128.066406 140.78125 131.90625 140.78125 C 135.75 140.78125 138.863281 137.664062 138.863281 133.824219 Z M 138.863281 133.824219 "/>
|
||||
<g clip-path="url(#clip2)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.322691 -35.040963 C 118.322691 -31.188173 115.202088 -28.063654 111.349298 -28.063654 C 107.500423 -28.063654 104.375904 -31.188173 104.375904 -35.040963 C 104.375904 -38.889838 107.500423 -42.014357 111.349298 -42.014357 C 115.202088 -42.014357 118.322691 -38.889838 118.322691 -35.040963 Z M 118.322691 -35.040963 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="127.578132" y="136.731418"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 83.24429 46.137796 L 105.922502 46.137796 L 105.922502 63.146456 L 83.24429 63.146456 Z M 83.24429 46.137796 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-11" x="108.806282" y="47.165071"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="117.088802" y="48.655566"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 83.24429 -23.940699 L 105.922502 -23.940699 L 105.922502 -6.932039 L 83.24429 -6.932039 Z M 83.24429 -23.940699 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-11" x="108.806282" y="117.07864"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="117.088802" y="118.569134"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.23245 46.137796 L 70.906747 46.137796 L 70.906747 63.146456 L 48.23245 63.146456 Z M 48.23245 46.137796 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="73.323734" y="47.002454"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="82.711654" y="48.493946"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.23245 -23.940699 L 70.906747 -23.940699 L 70.906747 -6.932039 L 48.23245 -6.932039 Z M 48.23245 -23.940699 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="73.323734" y="116.916022"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="82.711654" y="118.406517"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.36313 56.685984 L 35.041342 56.685984 L 35.041342 73.694643 L 12.36313 73.694643 Z M 12.36313 56.685984 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-2" x="38.240247" y="36.481199"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="46.226465" y="37.971693"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.36313 -13.392511 L 35.041342 -13.392511 L 35.041342 3.616148 L 12.36313 3.616148 Z M 12.36313 -13.392511 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-2" x="38.240247" y="106.39377"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="46.226465" y="107.885262"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.663388 26.533202 L 161.3416 26.533202 L 161.3416 43.541862 L 138.663388 43.541862 Z M 138.663388 26.533202 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-3" x="164.107218" y="66.559457"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="172.369785" y="68.049952"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.663388 -43.545293 L 161.3416 -43.545293 L 161.3416 -26.536634 L 138.663388 -26.536634 Z M 138.663388 -43.545293 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-3" x="164.107218" y="136.472028"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="172.369785" y="137.96352"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 180.848308 -0.00171559 C 180.848308 3.851075 177.727705 6.975594 173.874915 6.975594 C 170.02604 6.975594 166.901521 3.851075 166.901521 -0.00171559 C 166.901521 -3.85059 170.02604 -6.975109 173.874915 -6.975109 C 177.727705 -6.975109 180.848308 -3.85059 180.848308 -0.00171559 Z M 180.848308 -0.00171559 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="189.956423" y="101.774634"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip3)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -19.841341 -0.00171559 L -0.00182077 -0.00171559 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-4" x="4.831822" y="95.055437"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00182077 -0.00171559 L -0.00182077 35.037532 L 12.092965 35.037532 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052789 -0.00172807 L 1.608767 1.68191 L 3.088803 -0.00172807 L 1.608767 -1.681451 Z M 6.052789 -0.00172807 " transform="matrix(0.997654,0,0,-0.997654,30.051257,63.908432)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00182077 -0.00171559 L -0.00182077 -35.040963 L 12.092965 -35.040963 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052789 -0.00167311 L 1.608767 1.681965 L 3.088803 -0.00167311 L 1.608767 -1.681396 Z M 6.052789 -0.00167311 " transform="matrix(0.997654,0,0,-0.997654,30.051257,133.82255)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 39.226945 35.037532 L 39.226945 54.642126 L 43.099312 54.642126 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053026 0.0000260048 L 1.609005 1.683664 L 3.08904 0.0000260048 L 1.609005 -1.683612 Z M 6.053026 0.0000260048 " transform="matrix(0.997654,0,0,-0.997654,60.984614,44.351588)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 61.941406 63.910156 C 61.941406 62.8125 61.054688 61.921875 59.953125 61.921875 C 58.855469 61.921875 57.96875 62.8125 57.96875 63.910156 C 57.96875 65.007812 58.855469 65.894531 59.953125 65.894531 C 61.054688 65.894531 61.941406 65.007812 61.941406 63.910156 Z M 61.941406 63.910156 "/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 39.226945 -35.040963 L 39.226945 -15.436369 L 43.099312 -15.436369 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053026 0.0000809576 L 1.609005 1.683719 L 3.08904 0.0000809576 L 1.609005 -1.683557 Z M 6.053026 0.0000809576 " transform="matrix(0.997654,0,0,-0.997654,60.984614,114.265706)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 61.941406 133.824219 C 61.941406 132.726562 61.054688 131.835938 59.953125 131.835938 C 58.855469 131.835938 57.96875 132.726562 57.96875 133.824219 C 57.96875 134.921875 58.855469 135.808594 59.953125 135.808594 C 61.054688 135.808594 61.941406 134.921875 61.941406 133.824219 Z M 61.941406 133.824219 "/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 71.407923 54.642126 L 78.111151 54.642126 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052515 0.0000260048 L 1.608494 1.683664 L 3.088529 0.0000260048 L 1.608494 -1.683612 Z M 6.052515 0.0000260048 " transform="matrix(0.997654,0,0,-0.997654,95.914811,44.351588)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 71.407923 -15.436369 L 78.111151 -15.436369 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052515 0.0000809576 L 1.608494 1.683719 L 3.088529 0.0000809576 L 1.608494 -1.683557 Z M 6.052515 0.0000809576 " transform="matrix(0.997654,0,0,-0.997654,95.914811,114.265706)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 106.419762 54.642126 L 111.349298 54.642126 L 111.349298 46.646803 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053011 -0.00107218 L 1.608989 1.682566 L 3.089025 -0.00107218 L 1.608989 -1.68471 Z M 6.053011 -0.00107218 " transform="matrix(0,0.997654,0.997654,0,131.90732,49.496348)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 106.419762 -15.436369 L 111.349298 -15.436369 L 111.349298 -23.431692 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052966 -0.00107218 L 1.608945 1.682566 L 3.08898 -0.00107218 L 1.608945 -1.68471 Z M 6.052966 -0.00107218 " transform="matrix(0,0.997654,0.997654,0,131.90732,119.410456)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 30.67563 35.037532 L 99.743942 35.037532 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054116 -0.00172807 L 1.610095 1.68191 L 3.086214 -0.00172807 L 1.610095 -1.681451 Z M 6.054116 -0.00172807 " transform="matrix(0.997654,0,0,-0.997654,117.495246,63.908432)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 30.67563 -35.040963 L 99.743942 -35.040963 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054116 -0.00167311 L 1.610095 1.681965 L 3.086214 -0.00167311 L 1.610095 -1.681396 Z M 6.054116 -0.00167311 " transform="matrix(0.997654,0,0,-0.997654,117.495246,133.82255)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.322691 35.037532 L 133.534165 35.037532 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053849 -0.00172807 L 1.609828 1.68191 L 3.085948 -0.00172807 L 1.609828 -1.681451 Z M 6.053849 -0.00172807 " transform="matrix(0.997654,0,0,-0.997654,151.20645,63.908432)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-12" x="145.341354" y="58.608158"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-4" x="144.709839" y="58.608158"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="150.390479" y="60.098653"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.322691 -35.040963 L 133.534165 -35.040963 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053849 -0.00167311 L 1.609828 1.681965 L 3.085948 -0.00167311 L 1.609828 -1.681396 Z M 6.053849 -0.00167311 " transform="matrix(0.997654,0,0,-0.997654,151.20645,133.82255)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-12" x="145.341354" y="128.521727"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-4" x="144.709839" y="128.521727"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="150.390479" y="130.012221"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.702236 78.823866 L 23.702236 85.53101 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053868 0.00152605 L 1.609847 1.681249 L 3.085966 0.00152605 L 1.609847 -1.682112 Z M 6.053868 0.00152605 " transform="matrix(0,0.997654,0.997654,0,44.463321,17.393931)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-13" x="30.726918" y="19.549022"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-5" x="30.228091" y="19.549022"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="36.19406" y="21.039517"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.702236 8.745371 L 23.702236 15.452515 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053803 0.00152605 L 1.609782 1.681249 L 3.085901 0.00152605 L 1.609782 -1.682112 Z M 6.053803 0.00152605 " transform="matrix(0,0.997654,0.997654,0,44.463321,87.308058)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-13" x="30.726918" y="89.461593"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-5" x="30.228091" y="89.461593"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="36.19406" y="90.953085"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.702236 56.184808 L 23.702236 46.646803 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053011 0.00152605 L 1.608989 1.681249 L 3.089025 0.00152605 L 1.608989 -1.682112 Z M 6.053011 0.00152605 " transform="matrix(0,0.997654,0.997654,0,44.463321,49.496348)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-5" x="30.228091" y="51.650522"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="36.19406" y="53.142014"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.702236 -13.893687 L 23.702236 -23.431692 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052966 0.00152605 L 1.608945 1.681249 L 3.08898 0.00152605 L 1.608945 -1.682112 Z M 6.052966 0.00152605 " transform="matrix(0,0.997654,0.997654,0,44.463321,119.410456)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-5" x="30.228091" y="121.564091"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="36.19406" y="123.054585"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.838861 35.037532 L 173.874915 35.037532 L 173.874915 11.607556 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052998 -0.00122549 L 1.608977 1.682413 L 3.089012 -0.00122549 L 1.608977 -1.684863 Z M 6.052998 -0.00122549 " transform="matrix(0,0.997654,0.997654,0,194.286379,84.453392)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.838861 -35.040963 L 173.874915 -35.040963 L 173.874915 -11.607071 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053472 0.00122549 L 1.609451 1.684863 L 3.089487 0.00122549 L 1.609451 -1.682413 Z M 6.053472 0.00122549 " transform="matrix(0,-0.997654,-0.997654,0,194.286379,113.27755)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 180.848308 -0.00171559 L 196.059782 -0.00171559 " transform="matrix(0.997654,0,0,-0.997654,20.818223,98.865476)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 219.625 98.867188 L 215.191406 97.1875 L 216.664062 98.867188 L 215.191406 100.542969 Z M 219.625 98.867188 "/>
|
||||
<g clip-path="url(#clip4)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053716 -0.00171559 L 1.609694 1.681922 L 3.085814 -0.00171559 L 1.609694 -1.681438 Z M 6.053716 -0.00171559 " transform="matrix(0.997654,0,0,-0.997654,213.585489,98.865476)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-12" x="212.178159" y="95.055437"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-4" x="211.546644" y="95.055437"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 50 KiB |
BIN
journal/figs/sensor_fusion_arch_uncertainty.pdf
Normal file
BIN
journal/figs/sensor_fusion_arch_uncertainty.png
Normal file
After Width: | Height: | Size: 35 KiB |
311
journal/figs/sensor_fusion_arch_uncertainty.svg
Normal file
@@ -0,0 +1,311 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="250.875pt" height="108.675pt" viewBox="0 0 250.875 108.675" version="1.2">
|
||||
<defs>
|
||||
<g>
|
||||
<symbol overflow="visible" id="glyph0-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<path style="stroke:none;" d="M 4.953125 -1.84375 C 4.953125 -2.84375 4.296875 -3.65625 3.46875 -3.859375 L 2.203125 -4.15625 C 1.578125 -4.3125 1.1875 -4.84375 1.1875 -5.421875 C 1.1875 -6.125 1.734375 -6.734375 2.5 -6.734375 C 4.15625 -6.734375 4.375 -5.09375 4.4375 -4.65625 C 4.453125 -4.59375 4.453125 -4.53125 4.5625 -4.53125 C 4.6875 -4.53125 4.6875 -4.578125 4.6875 -4.765625 L 4.6875 -6.765625 C 4.6875 -6.9375 4.6875 -7 4.578125 -7 C 4.515625 -7 4.5 -7 4.4375 -6.875 L 4.078125 -6.3125 C 3.78125 -6.59375 3.375 -7 2.5 -7 C 1.390625 -7 0.5625 -6.125 0.5625 -5.078125 C 0.5625 -4.25 1.078125 -3.53125 1.859375 -3.265625 C 1.96875 -3.21875 2.46875 -3.09375 3.171875 -2.9375 C 3.4375 -2.859375 3.734375 -2.796875 4.015625 -2.421875 C 4.21875 -2.171875 4.328125 -1.84375 4.328125 -1.515625 C 4.328125 -0.8125 3.828125 -0.09375 2.984375 -0.09375 C 2.703125 -0.09375 1.953125 -0.140625 1.421875 -0.625 C 0.84375 -1.15625 0.8125 -1.796875 0.8125 -2.15625 C 0.796875 -2.25 0.71875 -2.25 0.6875 -2.25 C 0.5625 -2.25 0.5625 -2.1875 0.5625 -2 L 0.5625 -0.015625 C 0.5625 0.15625 0.5625 0.21875 0.671875 0.21875 C 0.734375 0.21875 0.75 0.203125 0.8125 0.09375 C 0.8125 0.09375 0.84375 0.046875 1.171875 -0.484375 C 1.484375 -0.140625 2.109375 0.21875 3 0.21875 C 4.15625 0.21875 4.953125 -0.75 4.953125 -1.84375 Z M 4.953125 -1.84375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 5.3125 0 L 5.3125 -0.3125 C 4.625 -0.3125 4.546875 -0.375 4.546875 -0.859375 L 4.546875 -4.390625 L 3.078125 -4.28125 L 3.078125 -3.96875 C 3.78125 -3.96875 3.859375 -3.90625 3.859375 -3.421875 L 3.859375 -1.65625 C 3.859375 -0.78125 3.375 -0.109375 2.65625 -0.109375 C 1.8125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.09375 -3.96875 1.09375 -3.9375 1.09375 -3.0625 L 1.09375 -1.5625 C 1.09375 -0.796875 1.09375 0.109375 2.609375 0.109375 C 3.15625 0.109375 3.59375 -0.171875 3.890625 -0.78125 L 3.890625 0.109375 Z M 5.3125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 5.171875 -2.140625 C 5.171875 -3.40625 4.21875 -4.390625 3.09375 -4.390625 C 2.328125 -4.390625 1.90625 -3.953125 1.703125 -3.734375 L 1.703125 -4.390625 L 0.28125 -4.28125 L 0.28125 -3.96875 C 0.984375 -3.96875 1.046875 -3.921875 1.046875 -3.484375 L 1.046875 1.171875 C 1.046875 1.625 0.9375 1.625 0.28125 1.625 L 0.28125 1.921875 L 1.390625 1.890625 L 2.515625 1.921875 L 2.515625 1.625 C 1.84375 1.625 1.734375 1.625 1.734375 1.171875 L 1.734375 -0.59375 C 1.78125 -0.421875 2.203125 0.109375 2.96875 0.109375 C 4.140625 0.109375 5.171875 -0.859375 5.171875 -2.140625 Z M 4.359375 -2.140625 C 4.359375 -0.9375 3.65625 -0.109375 2.921875 -0.109375 C 2.53125 -0.109375 2.140625 -0.3125 1.875 -0.71875 C 1.734375 -0.921875 1.734375 -0.9375 1.734375 -1.140625 L 1.734375 -3.34375 C 2.03125 -3.859375 2.515625 -4.140625 3.015625 -4.140625 C 3.75 -4.140625 4.359375 -3.265625 4.359375 -2.140625 Z M 4.359375 -2.140625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 4.125 -1.1875 C 4.125 -1.28125 4.046875 -1.296875 4 -1.296875 C 3.90625 -1.296875 3.890625 -1.25 3.859375 -1.15625 C 3.515625 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 L 3.875 -2.296875 C 4.09375 -2.296875 4.125 -2.296875 4.125 -2.5 C 4.125 -3.484375 3.59375 -4.453125 2.34375 -4.453125 C 1.1875 -4.453125 0.28125 -3.421875 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.671875 0.109375 4.125 -1 4.125 -1.1875 Z M 3.46875 -2.5 L 1.109375 -2.5 C 1.171875 -3.984375 2 -4.234375 2.34375 -4.234375 C 3.375 -4.234375 3.46875 -2.890625 3.46875 -2.5 Z M 3.46875 -2.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 3.625 -3.78125 C 3.625 -4.109375 3.3125 -4.390625 2.875 -4.390625 C 2.15625 -4.390625 1.796875 -3.734375 1.65625 -3.296875 L 1.65625 -4.390625 L 0.28125 -4.28125 L 0.28125 -3.96875 C 0.96875 -3.96875 1.046875 -3.90625 1.046875 -3.421875 L 1.046875 -0.75 C 1.046875 -0.3125 0.9375 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.40625 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.671875 0 L 2.671875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.703125 -0.421875 1.703125 -0.78125 L 1.703125 -2.3125 C 1.703125 -3.296875 2.125 -4.171875 2.875 -4.171875 C 2.953125 -4.171875 2.96875 -4.171875 2.984375 -4.15625 C 2.96875 -4.15625 2.765625 -4.03125 2.765625 -3.78125 C 2.765625 -3.5 2.96875 -3.34375 3.1875 -3.34375 C 3.375 -3.34375 3.625 -3.46875 3.625 -3.78125 Z M 3.625 -3.78125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 5.3125 0 L 5.3125 -0.3125 C 4.796875 -0.3125 4.546875 -0.3125 4.546875 -0.609375 L 4.546875 -2.5 C 4.546875 -3.359375 4.546875 -3.671875 4.234375 -4.03125 C 4.09375 -4.1875 3.765625 -4.390625 3.1875 -4.390625 C 2.46875 -4.390625 2 -3.96875 1.71875 -3.34375 L 1.71875 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.015625 -3.96875 1.09375 -3.90625 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.578125 C 1.78125 -3.625 2.484375 -4.171875 3.125 -4.171875 C 3.75 -4.171875 3.859375 -3.640625 3.859375 -3.078125 L 3.859375 -0.75 C 3.859375 -0.3125 3.75 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.203125 -0.03125 Z M 5.3125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 3.578125 -1.265625 C 3.578125 -1.796875 3.28125 -2.09375 3.15625 -2.21875 C 2.828125 -2.53125 2.4375 -2.609375 2.03125 -2.6875 C 1.46875 -2.796875 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.859375 1.0625 -4.265625 1.921875 -4.265625 C 3.015625 -4.265625 3.0625 -3.375 3.078125 -3.0625 C 3.09375 -2.96875 3.203125 -2.96875 3.203125 -2.96875 C 3.328125 -2.96875 3.328125 -3.015625 3.328125 -3.203125 L 3.328125 -4.21875 C 3.328125 -4.375 3.328125 -4.453125 3.21875 -4.453125 C 3.171875 -4.453125 3.15625 -4.453125 3.015625 -4.328125 C 2.984375 -4.296875 2.890625 -4.203125 2.859375 -4.171875 C 2.46875 -4.453125 2.0625 -4.453125 1.921875 -4.453125 C 0.703125 -4.453125 0.328125 -3.78125 0.328125 -3.234375 C 0.328125 -2.875 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.125 1.34375 -2.0625 2.0625 -1.921875 C 2.28125 -1.890625 3.09375 -1.734375 3.09375 -1.015625 C 3.09375 -0.5 2.75 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.515625 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.4375 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.765625 0.109375 1.984375 0.109375 C 3.125 0.109375 3.578125 -0.5625 3.578125 -1.265625 Z M 3.578125 -1.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 4.6875 -2.125 C 4.6875 -3.40625 3.6875 -4.453125 2.484375 -4.453125 C 1.25 -4.453125 0.28125 -3.375 0.28125 -2.125 C 0.28125 -0.84375 1.3125 0.109375 2.46875 0.109375 C 3.671875 0.109375 4.6875 -0.859375 4.6875 -2.125 Z M 3.859375 -2.203125 C 3.859375 -1.84375 3.859375 -1.3125 3.640625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.484375 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.34375 -0.8125 C 1.109375 -1.25 1.109375 -1.84375 1.109375 -2.203125 C 1.109375 -2.59375 1.109375 -3.125 1.34375 -3.5625 C 1.609375 -4.03125 2.078125 -4.234375 2.46875 -4.234375 C 2.90625 -4.234375 3.34375 -4.015625 3.59375 -3.59375 C 3.859375 -3.15625 3.859375 -2.578125 3.859375 -2.203125 Z M 3.859375 -2.203125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-9">
|
||||
<path style="stroke:none;" d="M 4.15625 0 L 4.15625 -0.3125 L 3.84375 -0.3125 C 2.953125 -0.3125 2.921875 -0.421875 2.921875 -0.78125 L 2.921875 -6.359375 C 2.921875 -6.59375 2.921875 -6.625 2.6875 -6.625 C 2.078125 -5.984375 1.203125 -5.984375 0.890625 -5.984375 L 0.890625 -5.671875 C 1.078125 -5.671875 1.671875 -5.671875 2.1875 -5.9375 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.9375 -0.3125 L 0.9375 0 C 1.296875 -0.03125 2.15625 -0.03125 2.546875 -0.03125 C 2.953125 -0.03125 3.8125 -0.03125 4.15625 0 Z M 4.15625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-10">
|
||||
<path style="stroke:none;" d="M 4.46875 -1.734375 L 4.21875 -1.734375 C 4.15625 -1.4375 4.09375 -1 4 -0.84375 C 3.921875 -0.765625 3.265625 -0.765625 3.046875 -0.765625 L 1.265625 -0.765625 L 2.3125 -1.78125 C 3.859375 -3.15625 4.46875 -3.703125 4.46875 -4.6875 C 4.46875 -5.828125 3.5625 -6.625 2.359375 -6.625 C 1.234375 -6.625 0.5 -5.703125 0.5 -4.8125 C 0.5 -4.265625 1 -4.265625 1.03125 -4.265625 C 1.1875 -4.265625 1.546875 -4.375 1.546875 -4.796875 C 1.546875 -5.046875 1.359375 -5.3125 1.015625 -5.3125 C 0.9375 -5.3125 0.921875 -5.3125 0.890625 -5.296875 C 1.109375 -5.9375 1.65625 -6.3125 2.21875 -6.3125 C 3.125 -6.3125 3.5625 -5.5 3.5625 -4.6875 C 3.5625 -3.890625 3.0625 -3.109375 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.1875 0 Z M 4.46875 -1.734375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-11">
|
||||
<path style="stroke:none;" d="M 7.796875 -0.078125 C 7.796875 -0.078125 7.796875 -0.109375 7.75 -0.203125 L 4.390625 -6.9375 C 4.328125 -7.0625 4.296875 -7.109375 4.140625 -7.109375 C 3.96875 -7.109375 3.9375 -7.0625 3.875 -6.9375 L 0.515625 -0.203125 C 0.46875 -0.109375 0.46875 -0.078125 0.46875 -0.078125 C 0.46875 0 0.53125 0 0.6875 0 L 7.578125 0 C 7.734375 0 7.796875 0 7.796875 -0.078125 Z M 6.484375 -0.75 L 1.140625 -0.75 L 3.8125 -6.125 Z M 6.484375 -0.75 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-12">
|
||||
<path style="stroke:none;" d="M 4 -5.265625 L 2.484375 -6.875 L 0.96875 -5.265625 L 1.109375 -5.125 L 2.484375 -6.203125 L 3.859375 -5.125 Z M 4 -5.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<path style="stroke:none;" d="M 10.421875 -6.671875 C 10.421875 -6.71875 10.375 -6.78125 10.296875 -6.78125 C 10.0625 -6.78125 9.78125 -6.75 9.53125 -6.75 C 9.1875 -6.75 8.828125 -6.78125 8.5 -6.78125 C 8.4375 -6.78125 8.3125 -6.78125 8.3125 -6.59375 C 8.3125 -6.484375 8.390625 -6.484375 8.453125 -6.484375 C 8.703125 -6.46875 9.046875 -6.390625 9.046875 -6.09375 C 9.046875 -5.984375 9 -5.90625 8.90625 -5.765625 L 6.234375 -1.078125 L 5.859375 -6.015625 C 5.859375 -6.21875 5.828125 -6.46875 6.5625 -6.484375 C 6.734375 -6.484375 6.828125 -6.484375 6.828125 -6.671875 C 6.828125 -6.78125 6.71875 -6.78125 6.671875 -6.78125 C 6.28125 -6.78125 5.859375 -6.75 5.46875 -6.75 C 5.234375 -6.75 4.65625 -6.78125 4.421875 -6.78125 C 4.359375 -6.78125 4.234375 -6.78125 4.234375 -6.59375 C 4.234375 -6.484375 4.328125 -6.484375 4.46875 -6.484375 C 4.90625 -6.484375 4.984375 -6.421875 5 -6.234375 L 5.0625 -5.46875 L 2.546875 -1.078125 L 2.171875 -6.125 C 2.171875 -6.234375 2.171875 -6.46875 2.921875 -6.484375 C 3.015625 -6.484375 3.125 -6.484375 3.125 -6.671875 C 3.125 -6.78125 2.984375 -6.78125 2.984375 -6.78125 C 2.59375 -6.78125 2.171875 -6.75 1.765625 -6.75 C 1.421875 -6.75 1.0625 -6.78125 0.71875 -6.78125 C 0.671875 -6.78125 0.546875 -6.78125 0.546875 -6.59375 C 0.546875 -6.484375 0.640625 -6.484375 0.796875 -6.484375 C 1.296875 -6.484375 1.296875 -6.390625 1.328125 -6.109375 L 1.765625 -0.046875 C 1.78125 0.140625 1.78125 0.21875 1.921875 0.21875 C 2.046875 0.21875 2.078125 0.15625 2.171875 0.015625 L 5.09375 -5.0625 L 5.453125 -0.046875 C 5.46875 0.171875 5.5 0.21875 5.609375 0.21875 C 5.75 0.21875 5.796875 0.125 5.859375 0.03125 L 9.109375 -5.640625 C 9.359375 -6.078125 9.59375 -6.421875 10.21875 -6.484375 C 10.3125 -6.484375 10.421875 -6.484375 10.421875 -6.671875 Z M 10.421875 -6.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 7.171875 -2.609375 C 7.171875 -2.671875 7.109375 -2.71875 7.03125 -2.71875 C 6.8125 -2.71875 6.21875 -2.6875 6 -2.6875 L 4.59375 -2.71875 C 4.515625 -2.71875 4.390625 -2.71875 4.390625 -2.515625 C 4.390625 -2.40625 4.46875 -2.40625 4.6875 -2.40625 C 4.6875 -2.40625 4.984375 -2.40625 5.21875 -2.390625 C 5.46875 -2.359375 5.53125 -2.328125 5.53125 -2.203125 C 5.53125 -2.109375 5.421875 -1.65625 5.3125 -1.296875 C 5.03125 -0.203125 3.75 -0.09375 3.40625 -0.09375 C 2.4375 -0.09375 1.40625 -0.65625 1.40625 -2.171875 C 1.40625 -2.484375 1.5 -4.125 2.546875 -5.421875 C 3.078125 -6.09375 4.046875 -6.703125 5.03125 -6.703125 C 6.046875 -6.703125 6.625 -5.9375 6.625 -4.78125 C 6.625 -4.375 6.59375 -4.375 6.59375 -4.265625 C 6.59375 -4.171875 6.703125 -4.171875 6.75 -4.171875 C 6.875 -4.171875 6.875 -4.1875 6.921875 -4.375 L 7.546875 -6.90625 C 7.546875 -6.9375 7.53125 -7 7.4375 -7 C 7.40625 -7 7.40625 -7 7.296875 -6.890625 L 6.59375 -6.125 C 6.515625 -6.265625 6.046875 -7 4.953125 -7 C 2.734375 -7 0.5 -4.8125 0.5 -2.5 C 0.5 -0.921875 1.59375 0.21875 3.203125 0.21875 C 3.640625 0.21875 4.09375 0.125 4.453125 -0.015625 C 4.953125 -0.21875 5.140625 -0.421875 5.3125 -0.625 C 5.40625 -0.375 5.671875 -0.015625 5.765625 -0.015625 C 5.8125 -0.015625 5.828125 -0.046875 5.828125 -0.046875 C 5.859375 -0.0625 5.953125 -0.453125 6 -0.65625 L 6.1875 -1.421875 C 6.234375 -1.59375 6.28125 -1.765625 6.3125 -1.921875 C 6.421875 -2.375 6.4375 -2.390625 7 -2.40625 C 7.0625 -2.40625 7.171875 -2.421875 7.171875 -2.609375 Z M 7.171875 -2.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<path style="stroke:none;" d="M 7.140625 -0.203125 C 7.140625 -0.3125 7.046875 -0.3125 6.859375 -0.3125 C 6.484375 -0.3125 6.21875 -0.3125 6.21875 -0.484375 C 6.21875 -0.546875 6.234375 -0.59375 6.234375 -0.65625 L 7.578125 -6.015625 C 7.671875 -6.375 7.6875 -6.484375 8.421875 -6.484375 C 8.671875 -6.484375 8.75 -6.484375 8.75 -6.671875 C 8.75 -6.78125 8.640625 -6.78125 8.609375 -6.78125 L 7.34375 -6.75 L 6.0625 -6.78125 C 5.984375 -6.78125 5.875 -6.78125 5.875 -6.59375 C 5.875 -6.484375 5.96875 -6.484375 6.15625 -6.484375 C 6.15625 -6.484375 6.359375 -6.484375 6.53125 -6.453125 C 6.703125 -6.4375 6.796875 -6.421875 6.796875 -6.296875 C 6.796875 -6.265625 6.78125 -6.234375 6.75 -6.109375 L 6.15625 -3.6875 L 3.125 -3.6875 L 3.71875 -6.015625 C 3.8125 -6.375 3.828125 -6.484375 4.546875 -6.484375 C 4.8125 -6.484375 4.890625 -6.484375 4.890625 -6.671875 C 4.890625 -6.78125 4.78125 -6.78125 4.75 -6.78125 L 3.484375 -6.75 L 2.203125 -6.78125 C 2.109375 -6.78125 2 -6.78125 2 -6.59375 C 2 -6.484375 2.09375 -6.484375 2.28125 -6.484375 C 2.28125 -6.484375 2.5 -6.484375 2.65625 -6.453125 C 2.84375 -6.4375 2.9375 -6.421875 2.9375 -6.296875 C 2.9375 -6.265625 2.921875 -6.234375 2.890625 -6.109375 L 1.5625 -0.78125 C 1.453125 -0.390625 1.4375 -0.3125 0.65625 -0.3125 C 0.484375 -0.3125 0.390625 -0.3125 0.390625 -0.109375 C 0.390625 0 0.53125 0 0.53125 0 L 1.78125 -0.03125 L 2.421875 -0.015625 C 2.640625 -0.015625 2.859375 0 3.078125 0 C 3.15625 0 3.265625 0 3.265625 -0.203125 C 3.265625 -0.3125 3.1875 -0.3125 2.984375 -0.3125 C 2.625 -0.3125 2.34375 -0.3125 2.34375 -0.484375 C 2.34375 -0.546875 2.359375 -0.59375 2.375 -0.65625 L 3.046875 -3.375 L 6.078125 -3.375 L 5.390625 -0.640625 C 5.296875 -0.3125 5.109375 -0.3125 4.484375 -0.3125 C 4.34375 -0.3125 4.25 -0.3125 4.25 -0.109375 C 4.25 0 4.390625 0 4.390625 0 L 5.65625 -0.03125 L 6.296875 -0.015625 C 6.515625 -0.015625 6.734375 0 6.9375 0 C 7.015625 0 7.140625 0 7.140625 -0.203125 Z M 7.140625 -0.203125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-4">
|
||||
<path style="stroke:none;" d="M 4.921875 -1.421875 C 4.921875 -1.515625 4.84375 -1.515625 4.8125 -1.515625 C 4.71875 -1.515625 4.703125 -1.484375 4.6875 -1.40625 C 4.359375 -0.34375 3.671875 -0.109375 3.359375 -0.109375 C 2.96875 -0.109375 2.8125 -0.421875 2.8125 -0.765625 C 2.8125 -0.984375 2.875 -1.203125 2.984375 -1.640625 L 3.3125 -3 C 3.375 -3.265625 3.609375 -4.171875 4.296875 -4.171875 C 4.359375 -4.171875 4.59375 -4.171875 4.796875 -4.046875 C 4.515625 -4 4.328125 -3.75 4.328125 -3.515625 C 4.328125 -3.34375 4.4375 -3.15625 4.703125 -3.15625 C 4.921875 -3.15625 5.234375 -3.34375 5.234375 -3.734375 C 5.234375 -4.25 4.65625 -4.390625 4.3125 -4.390625 C 3.734375 -4.390625 3.390625 -3.859375 3.265625 -3.640625 C 3.015625 -4.296875 2.484375 -4.390625 2.203125 -4.390625 C 1.15625 -4.390625 0.59375 -3.109375 0.59375 -2.859375 C 0.59375 -2.765625 0.71875 -2.765625 0.71875 -2.765625 C 0.796875 -2.765625 0.828125 -2.78125 0.84375 -2.875 C 1.1875 -3.921875 1.84375 -4.171875 2.171875 -4.171875 C 2.359375 -4.171875 2.71875 -4.078125 2.71875 -3.515625 C 2.71875 -3.203125 2.546875 -2.53125 2.171875 -1.140625 C 2.015625 -0.53125 1.671875 -0.109375 1.234375 -0.109375 C 1.171875 -0.109375 0.9375 -0.109375 0.734375 -0.234375 C 0.984375 -0.28125 1.203125 -0.5 1.203125 -0.78125 C 1.203125 -1.046875 0.984375 -1.125 0.828125 -1.125 C 0.53125 -1.125 0.28125 -0.859375 0.28125 -0.546875 C 0.28125 -0.09375 0.78125 0.109375 1.21875 0.109375 C 1.875 0.109375 2.234375 -0.59375 2.265625 -0.640625 C 2.390625 -0.28125 2.75 0.109375 3.34375 0.109375 C 4.359375 0.109375 4.921875 -1.171875 4.921875 -1.421875 Z M 4.921875 -1.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-5">
|
||||
<path style="stroke:none;" d="M 4.65625 -3.703125 C 4.65625 -4.234375 4.390625 -4.390625 4.21875 -4.390625 C 3.96875 -4.390625 3.734375 -4.140625 3.734375 -3.921875 C 3.734375 -3.78125 3.78125 -3.734375 3.890625 -3.625 C 4.09375 -3.421875 4.21875 -3.15625 4.21875 -2.796875 C 4.21875 -2.390625 3.625 -0.109375 2.453125 -0.109375 C 1.953125 -0.109375 1.71875 -0.453125 1.71875 -0.96875 C 1.71875 -1.53125 1.984375 -2.25 2.296875 -3.078125 C 2.359375 -3.25 2.421875 -3.390625 2.421875 -3.578125 C 2.421875 -4.03125 2.09375 -4.390625 1.59375 -4.390625 C 0.671875 -4.390625 0.28125 -2.953125 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.78125 0.5625 -2.9375 C 0.859375 -3.9375 1.28125 -4.171875 1.5625 -4.171875 C 1.65625 -4.171875 1.8125 -4.171875 1.8125 -3.859375 C 1.8125 -3.609375 1.71875 -3.34375 1.65625 -3.15625 C 1.21875 -2 1.078125 -1.546875 1.078125 -1.125 C 1.078125 -0.046875 1.953125 0.109375 2.421875 0.109375 C 4.078125 0.109375 4.65625 -3.1875 4.65625 -3.703125 Z M 4.65625 -3.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-1">
|
||||
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.03125 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.5625 L 2.328125 -4.421875 C 2.328125 -4.609375 2.3125 -4.609375 2.125 -4.609375 C 1.671875 -4.171875 1.046875 -4.171875 0.765625 -4.171875 L 0.765625 -3.921875 C 0.921875 -3.921875 1.390625 -3.921875 1.765625 -4.109375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.078125 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.28125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 3.515625 -1.265625 L 3.28125 -1.265625 C 3.25 -1.109375 3.1875 -0.703125 3.09375 -0.625 C 3.03125 -0.59375 2.5 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.09375 -1.4375 2.515625 -1.765625 C 3.03125 -2.171875 3.515625 -2.59375 3.515625 -3.265625 C 3.515625 -4.109375 2.78125 -4.609375 1.890625 -4.609375 C 1.015625 -4.609375 0.4375 -4.015625 0.4375 -3.375 C 0.4375 -3.015625 0.734375 -2.984375 0.8125 -2.984375 C 0.96875 -2.984375 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.484375 1.125 -3.71875 0.765625 -3.71875 C 0.984375 -4.21875 1.453125 -4.359375 1.78125 -4.359375 C 2.46875 -4.359375 2.84375 -3.828125 2.84375 -3.265625 C 2.84375 -2.65625 2.40625 -2.171875 2.1875 -1.921875 L 0.5 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.296875 0 Z M 3.515625 -1.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-1">
|
||||
<path style="stroke:none;" d="M 8.09375 -2.984375 C 8.09375 -3.203125 7.890625 -3.203125 7.71875 -3.203125 L 4.53125 -3.203125 L 4.53125 -6.390625 C 4.53125 -6.5625 4.53125 -6.765625 4.328125 -6.765625 C 4.109375 -6.765625 4.109375 -6.578125 4.109375 -6.390625 L 4.109375 -3.203125 L 0.921875 -3.203125 C 0.75 -3.203125 0.546875 -3.203125 0.546875 -3 C 0.546875 -2.78125 0.75 -2.78125 0.921875 -2.78125 L 4.109375 -2.78125 L 4.109375 0.390625 C 4.109375 0.5625 4.109375 0.765625 4.3125 0.765625 C 4.53125 0.765625 4.53125 0.578125 4.53125 0.390625 L 4.53125 -2.78125 L 7.71875 -2.78125 C 7.875 -2.78125 8.09375 -2.78125 8.09375 -2.984375 Z M 8.09375 -2.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-1">
|
||||
<path style="stroke:none;" d="M 5.453125 -1.734375 C 5.453125 -1.90625 5.296875 -1.90625 5.1875 -1.90625 L 1.015625 -1.90625 C 0.90625 -1.90625 0.75 -1.90625 0.75 -1.734375 C 0.75 -1.578125 0.921875 -1.578125 1.015625 -1.578125 L 5.1875 -1.578125 C 5.28125 -1.578125 5.453125 -1.578125 5.453125 -1.734375 Z M 5.453125 -1.734375 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
<clipPath id="clip1">
|
||||
<path d="M 77 68 L 120 68 L 120 108.351562 L 77 108.351562 Z M 77 68 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip2">
|
||||
<path d="M 0.3125 63 L 22 63 L 22 65 L 0.3125 65 Z M 0.3125 63 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip3">
|
||||
<path d="M 229 48 L 250.4375 48 L 250.4375 80 L 229 80 Z M 229 48 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<path style="fill-rule:nonzero;fill:rgb(89.99939%,89.99939%,89.99939%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M -5.669963 -43.705523 L 214.866507 -43.705523 L 214.866507 62.971927 L -5.669963 62.971927 Z M -5.669963 -43.705523 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="175.329295" y="11.148659"/>
|
||||
<use xlink:href="#glyph0-2" x="180.848012" y="11.148659"/>
|
||||
<use xlink:href="#glyph0-3" x="186.366728" y="11.148659"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="192.163566" y="11.148659"/>
|
||||
<use xlink:href="#glyph0-5" x="196.578737" y="11.148659"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="203.777106" y="11.148659"/>
|
||||
<use xlink:href="#glyph0-4" x="209.295823" y="11.148659"/>
|
||||
<use xlink:href="#glyph0-6" x="213.710995" y="11.148659"/>
|
||||
<use xlink:href="#glyph0-7" x="219.229711" y="11.148659"/>
|
||||
<use xlink:href="#glyph0-8" x="223.148238" y="11.148659"/>
|
||||
<use xlink:href="#glyph0-5" x="228.114686" y="11.148659"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M 4.939797 12.693107 L 120.934089 12.693107 L 120.934089 58.720971 L 4.939797 58.720971 Z M 4.939797 12.693107 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="101.85004" y="15.387981"/>
|
||||
<use xlink:href="#glyph0-4" x="107.368756" y="15.387981"/>
|
||||
<use xlink:href="#glyph0-6" x="111.783928" y="15.387981"/>
|
||||
<use xlink:href="#glyph0-7" x="117.302645" y="15.387981"/>
|
||||
<use xlink:href="#glyph0-8" x="121.221172" y="15.387981"/>
|
||||
<use xlink:href="#glyph0-5" x="126.187619" y="15.387981"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-9" x="133.385988" y="15.387981"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M 4.939797 -39.709232 L 120.934089 -39.709232 L 120.934089 6.32255 L 4.939797 6.32255 Z M 4.939797 -39.709232 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="101.85004" y="67.630746"/>
|
||||
<use xlink:href="#glyph0-4" x="107.368756" y="67.630746"/>
|
||||
<use xlink:href="#glyph0-6" x="111.783928" y="67.630746"/>
|
||||
<use xlink:href="#glyph0-7" x="117.302645" y="67.630746"/>
|
||||
<use xlink:href="#glyph0-8" x="121.221172" y="67.630746"/>
|
||||
<use xlink:href="#glyph0-5" x="126.187619" y="67.630746"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="133.385988" y="67.630746"/>
|
||||
</g>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 23.078125 63.78125 C 23.078125 62.683594 22.1875 61.792969 21.089844 61.792969 C 19.992188 61.792969 19.105469 62.683594 19.105469 63.78125 C 19.105469 64.878906 19.992188 65.765625 21.089844 65.765625 C 22.1875 65.765625 23.078125 64.878906 23.078125 63.78125 Z M 23.078125 63.78125 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 32.242188 37.660156 C 32.242188 36.5625 31.351562 35.671875 30.253906 35.671875 C 29.15625 35.671875 28.269531 36.5625 28.269531 37.660156 C 28.269531 38.753906 29.15625 39.644531 30.253906 39.644531 C 31.351562 39.644531 32.242188 38.753906 32.242188 37.660156 Z M 32.242188 37.660156 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 32.242188 89.902344 C 32.242188 88.804688 31.351562 87.914062 30.253906 87.914062 C 29.15625 87.914062 28.269531 88.804688 28.269531 89.902344 C 28.269531 91 29.15625 91.886719 30.253906 91.886719 C 31.351562 91.886719 32.242188 91 32.242188 89.902344 Z M 32.242188 89.902344 "/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 18.538939 36.964695 L 41.215929 36.964695 L 41.215929 53.972438 L 18.538939 53.972438 Z M 18.538939 36.964695 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="43.958169" y="21.097905"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="53.340112" y="22.587451"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 18.538939 -15.437644 L 41.215929 -15.437644 L 41.215929 1.570099 L 18.538939 1.570099 Z M 18.538939 -15.437644 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="43.958169" y="73.34067"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="53.340112" y="74.830215"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 50.716914 36.964695 L 73.393903 36.964695 L 73.393903 53.972438 L 50.716914 53.972438 Z M 50.716914 36.964695 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-11" x="76.592574" y="21.260419"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="84.868823" y="22.749965"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 50.716914 -15.437644 L 73.393903 -15.437644 L 73.393903 1.570099 L 50.716914 1.570099 Z M 50.716914 -15.437644 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-11" x="76.592574" y="73.503184"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="84.868823" y="74.992729"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84.505158 26.198218 C 84.505158 30.049546 81.382567 33.172137 77.531239 33.172137 C 73.679912 33.172137 70.557321 30.049546 70.557321 26.198218 C 70.557321 22.346891 73.679912 19.2243 77.531239 19.2243 C 81.382567 19.2243 84.505158 22.346891 84.505158 26.198218 Z M 84.505158 26.198218 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="94.066318" y="40.566683"/>
|
||||
</g>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 105.34375 89.902344 C 105.34375 86.0625 102.230469 82.949219 98.390625 82.949219 C 94.550781 82.949219 91.4375 86.0625 91.4375 89.902344 C 91.4375 93.742188 94.550781 96.855469 98.390625 96.855469 C 102.230469 96.855469 105.34375 93.742188 105.34375 89.902344 Z M 105.34375 89.902344 "/>
|
||||
<g clip-path="url(#clip1)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84.505158 -26.200203 C 84.505158 -22.348876 81.382567 -19.226284 77.531239 -19.226284 C 73.679912 -19.226284 70.557321 -22.348876 70.557321 -26.200203 C 70.557321 -30.05153 73.679912 -33.174122 77.531239 -33.174122 C 81.382567 -33.174122 84.505158 -30.05153 84.505158 -26.200203 Z M 84.505158 -26.200203 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="94.066318" y="92.809447"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 93.508566 17.441641 L 116.185556 17.441641 L 116.185556 34.958714 L 93.508566 34.958714 Z M 93.508566 17.441641 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-12" x="121.739559" y="39.080128"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="119.490286" y="41.59062"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="127.29993" y="43.081163"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 93.508566 -34.956781 L 116.185556 -34.956781 L 116.185556 -17.439707 L 93.508566 -17.439707 Z M 93.508566 -34.956781 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-12" x="121.739559" y="91.322893"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="119.490286" y="93.833385"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="127.29993" y="95.323927"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.025035 16.861787 L 162.19383 16.861787 L 162.19383 35.538568 L 137.025035 35.538568 Z M 137.025035 16.861787 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-12" x="163.264376" y="38.500861"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="161.015103" y="41.011353"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="168.824747" y="36.762061"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="175.033181" y="36.762061"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="168.824747" y="43.660431"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.025035 -35.540553 L 162.19383 -35.540553 L 162.19383 -16.859853 L 137.025035 -16.859853 Z M 137.025035 -35.540553 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-12" x="163.264376" y="90.743625"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="161.015103" y="93.254117"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="168.824747" y="89.004825"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="175.033181" y="89.004825"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="168.824747" y="95.903195"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.113106 17.696306 L 195.790096 17.696306 L 195.790096 34.704049 L 173.113106 34.704049 Z M 173.113106 17.696306 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="198.633602" y="40.307458"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="206.889911" y="41.798"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.113106 -34.702115 L 195.790096 -34.702115 L 195.790096 -17.694373 L 173.113106 -17.694373 Z M 173.113106 -34.702115 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="198.633602" y="92.550222"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="206.889911" y="94.040765"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 209.197259 -0.000992179 C 209.197259 3.850335 206.074667 6.972927 202.22334 6.972927 C 198.372013 6.972927 195.249422 3.850335 195.249422 -0.000992179 C 195.249422 -3.852319 198.372013 -6.974911 202.22334 -6.974911 C 206.074667 -6.974911 209.197259 -3.852319 209.197259 -0.000992179 Z M 209.197259 -0.000992179 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="218.383539" y="66.687566"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip2)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -19.841122 -0.000992179 L -0.000715033 -0.000992179 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="5.114335" y="59.972648"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.000715033 -0.000992179 L -0.000715033 26.198218 L 65.926325 26.198218 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052669 -0.00165152 L 1.609735 1.683059 L 3.086795 -0.00165152 L 1.609735 -1.682444 Z M 6.052669 -0.00165152 " transform="matrix(0.997018,0,0,-0.997018,83.988815,37.65851)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.000715033 -0.000992179 L -0.000715033 -26.200203 L 65.926325 -26.200203 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052669 -0.000332841 L 1.609735 1.684378 L 3.086795 -0.000332841 L 1.609735 -1.681126 Z M 6.052669 -0.000332841 " transform="matrix(0.997018,0,0,-0.997018,83.988815,89.902012)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84.505158 26.198218 L 88.376075 26.198218 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054417 -0.00165152 L 1.607564 1.683059 L 3.088543 -0.00165152 L 1.607564 -1.682444 Z M 6.054417 -0.00165152 " transform="matrix(0.997018,0,0,-0.997018,106.373791,37.65851)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84.505158 -26.200203 L 88.376075 -26.200203 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054417 -0.000332841 L 1.607564 1.684378 L 3.088543 -0.000332841 L 1.607564 -1.681126 Z M 6.054417 -0.000332841 " transform="matrix(0.997018,0,0,-0.997018,106.373791,89.902012)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9.190753 28.690023 L 9.190753 45.466608 L 13.406448 45.466608 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051742 -0.000832397 L 1.608807 1.683878 L 3.085868 -0.000832397 L 1.608807 -1.681625 Z M 6.051742 -0.000832397 " transform="matrix(0.997018,0,0,-0.997018,31.626458,18.448389)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9.190753 -23.708398 L 9.190753 -6.931814 L 13.406448 -6.931814 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051742 0.000496278 L 1.608807 1.681289 L 3.085868 0.000496278 L 1.608807 -1.684214 Z M 6.051742 0.000496278 " transform="matrix(0.997018,0,0,-0.997018,31.626458,70.691901)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 41.713506 45.466608 L 45.584423 45.466608 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051777 -0.000832397 L 1.608842 1.683878 L 3.085902 -0.000832397 L 1.608842 -1.681625 Z M 6.051777 -0.000832397 " transform="matrix(0.997018,0,0,-0.997018,63.708455,18.448389)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 41.713506 -6.931814 L 45.584423 -6.931814 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051777 0.000496278 L 1.608842 1.681289 L 3.085902 0.000496278 L 1.608842 -1.684214 Z M 6.051777 0.000496278 " transform="matrix(0.997018,0,0,-0.997018,63.708455,70.691901)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 73.891481 45.466608 L 77.531239 45.466608 L 77.531239 37.807051 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051513 -0.00109052 L 1.608579 1.68362 L 3.085639 -0.00109052 L 1.608579 -1.681883 Z M 6.051513 -0.00109052 " transform="matrix(0,0.997018,0.997018,0,98.391712,23.255593)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 73.891481 -6.931814 L 77.531239 -6.931814 L 77.531239 -14.591371 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054103 -0.00109052 L 1.60725 1.68362 L 3.088228 -0.00109052 L 1.60725 -1.681883 Z M 6.054103 -0.00109052 " transform="matrix(0,0.997018,0.997018,0,98.391712,75.499105)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 116.683133 26.198218 L 131.892545 26.198218 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054417 -0.00165152 L 1.607564 1.683059 L 3.088542 -0.00165152 L 1.607564 -1.682444 Z M 6.054417 -0.00165152 " transform="matrix(0.997018,0,0,-0.997018,149.76051,37.65851)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="144.130597" y="32.361222"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="148.945199" y="33.851764"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 116.683133 -26.200203 L 131.892545 -26.200203 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054417 -0.000332841 L 1.607564 1.684378 L 3.088542 -0.000332841 L 1.607564 -1.681126 Z M 6.054417 -0.000332841 " transform="matrix(0.997018,0,0,-0.997018,149.76051,89.902012)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="144.130597" y="84.604983"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="148.945199" y="86.094528"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 162.695325 26.198218 L 167.980615 26.198218 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054278 -0.00165152 L 1.607425 1.683059 L 3.088403 -0.00165152 L 1.607425 -1.682444 Z M 6.054278 -0.00165152 " transform="matrix(0.997018,0,0,-0.997018,185.741118,37.65851)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 162.695325 -26.200203 L 167.980615 -26.200203 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054278 -0.000332841 L 1.607425 1.684378 L 3.088403 -0.000332841 L 1.607425 -1.681126 Z M 6.054278 -0.000332841 " transform="matrix(0.997018,0,0,-0.997018,185.741118,89.902012)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.287674 26.198218 L 202.22334 26.198218 L 202.22334 11.60784 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054762 0.00038035 L 1.607909 1.681173 L 3.088888 0.00038035 L 1.607909 -1.68433 Z M 6.054762 0.00038035 " transform="matrix(0,0.997018,0.997018,0,222.710558,49.377354)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.287674 -26.200203 L 202.22334 -26.200203 L 202.22334 -11.605906 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052768 -0.00038035 L 1.609833 1.68433 L 3.086893 -0.00038035 L 1.609833 -1.681173 Z M 6.052768 -0.00038035 " transform="matrix(0,-0.997018,-0.997018,0,222.710558,78.183158)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 209.197259 -0.000992179 L 224.406671 -0.000992179 " transform="matrix(0.997018,0,0,-0.997018,21.090557,63.780261)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 248.03125 63.78125 L 243.601562 62.101562 L 245.074219 63.78125 L 243.601562 65.457031 Z M 248.03125 63.78125 "/>
|
||||
<g clip-path="url(#clip3)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051915 -0.000992179 L 1.60898 1.683719 L 3.086041 -0.000992179 L 1.60898 -1.681785 Z M 6.051915 -0.000992179 " transform="matrix(0.997018,0,0,-0.997018,241.99738,63.780261)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-12" x="240.591125" y="59.972648"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="239.960013" y="59.972648"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 47 KiB |
BIN
journal/figs/sensor_fusion_noise_arch.pdf
Normal file
BIN
journal/figs/sensor_fusion_noise_arch.png
Normal file
After Width: | Height: | Size: 35 KiB |
337
journal/figs/sensor_fusion_noise_arch.svg
Normal file
@@ -0,0 +1,337 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="208.356pt" height="152.641pt" viewBox="0 0 208.356 152.641" version="1.2">
|
||||
<defs>
|
||||
<g>
|
||||
<symbol overflow="visible" id="glyph0-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<path style="stroke:none;" d="M 4.953125 -1.84375 C 4.953125 -2.84375 4.296875 -3.65625 3.46875 -3.859375 L 2.203125 -4.15625 C 1.578125 -4.3125 1.1875 -4.84375 1.1875 -5.421875 C 1.1875 -6.125 1.734375 -6.734375 2.5 -6.734375 C 4.15625 -6.734375 4.375 -5.09375 4.4375 -4.65625 C 4.453125 -4.59375 4.453125 -4.53125 4.5625 -4.53125 C 4.6875 -4.53125 4.6875 -4.578125 4.6875 -4.765625 L 4.6875 -6.765625 C 4.6875 -6.9375 4.6875 -7 4.578125 -7 C 4.515625 -7 4.5 -7 4.4375 -6.875 L 4.078125 -6.3125 C 3.78125 -6.59375 3.375 -7 2.5 -7 C 1.390625 -7 0.5625 -6.125 0.5625 -5.078125 C 0.5625 -4.25 1.078125 -3.53125 1.859375 -3.265625 C 1.96875 -3.21875 2.46875 -3.09375 3.171875 -2.9375 C 3.4375 -2.859375 3.734375 -2.796875 4.015625 -2.421875 C 4.21875 -2.171875 4.328125 -1.84375 4.328125 -1.515625 C 4.328125 -0.8125 3.828125 -0.09375 2.984375 -0.09375 C 2.703125 -0.09375 1.953125 -0.140625 1.421875 -0.625 C 0.84375 -1.15625 0.8125 -1.796875 0.8125 -2.15625 C 0.796875 -2.25 0.71875 -2.25 0.6875 -2.25 C 0.5625 -2.25 0.5625 -2.1875 0.5625 -2 L 0.5625 -0.015625 C 0.5625 0.15625 0.5625 0.21875 0.671875 0.21875 C 0.734375 0.21875 0.75 0.203125 0.8125 0.09375 C 0.8125 0.09375 0.84375 0.046875 1.171875 -0.484375 C 1.484375 -0.140625 2.109375 0.21875 3 0.21875 C 4.15625 0.21875 4.953125 -0.75 4.953125 -1.84375 Z M 4.953125 -1.84375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 5.3125 0 L 5.3125 -0.3125 C 4.625 -0.3125 4.546875 -0.375 4.546875 -0.859375 L 4.546875 -4.390625 L 3.078125 -4.28125 L 3.078125 -3.96875 C 3.78125 -3.96875 3.859375 -3.90625 3.859375 -3.421875 L 3.859375 -1.65625 C 3.859375 -0.78125 3.375 -0.109375 2.65625 -0.109375 C 1.8125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.09375 -3.96875 1.09375 -3.9375 1.09375 -3.0625 L 1.09375 -1.5625 C 1.09375 -0.796875 1.09375 0.109375 2.609375 0.109375 C 3.15625 0.109375 3.59375 -0.171875 3.890625 -0.78125 L 3.890625 0.109375 Z M 5.3125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 5.171875 -2.140625 C 5.171875 -3.40625 4.21875 -4.390625 3.09375 -4.390625 C 2.328125 -4.390625 1.90625 -3.953125 1.703125 -3.734375 L 1.703125 -4.390625 L 0.28125 -4.28125 L 0.28125 -3.96875 C 0.984375 -3.96875 1.046875 -3.921875 1.046875 -3.484375 L 1.046875 1.171875 C 1.046875 1.625 0.9375 1.625 0.28125 1.625 L 0.28125 1.921875 L 1.390625 1.890625 L 2.515625 1.921875 L 2.515625 1.625 C 1.84375 1.625 1.734375 1.625 1.734375 1.171875 L 1.734375 -0.59375 C 1.78125 -0.421875 2.203125 0.109375 2.96875 0.109375 C 4.140625 0.109375 5.171875 -0.859375 5.171875 -2.140625 Z M 4.359375 -2.140625 C 4.359375 -0.9375 3.65625 -0.109375 2.921875 -0.109375 C 2.53125 -0.109375 2.140625 -0.3125 1.875 -0.71875 C 1.734375 -0.921875 1.734375 -0.9375 1.734375 -1.140625 L 1.734375 -3.34375 C 2.03125 -3.859375 2.515625 -4.140625 3.015625 -4.140625 C 3.75 -4.140625 4.359375 -3.265625 4.359375 -2.140625 Z M 4.359375 -2.140625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 4.125 -1.1875 C 4.125 -1.28125 4.046875 -1.296875 4 -1.296875 C 3.90625 -1.296875 3.890625 -1.25 3.859375 -1.15625 C 3.515625 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 L 3.875 -2.296875 C 4.09375 -2.296875 4.125 -2.296875 4.125 -2.5 C 4.125 -3.484375 3.59375 -4.453125 2.34375 -4.453125 C 1.1875 -4.453125 0.28125 -3.421875 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.671875 0.109375 4.125 -1 4.125 -1.1875 Z M 3.46875 -2.5 L 1.109375 -2.5 C 1.171875 -3.984375 2 -4.234375 2.34375 -4.234375 C 3.375 -4.234375 3.46875 -2.890625 3.46875 -2.5 Z M 3.46875 -2.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 3.625 -3.78125 C 3.625 -4.109375 3.3125 -4.390625 2.875 -4.390625 C 2.15625 -4.390625 1.796875 -3.734375 1.65625 -3.296875 L 1.65625 -4.390625 L 0.28125 -4.28125 L 0.28125 -3.96875 C 0.96875 -3.96875 1.046875 -3.90625 1.046875 -3.421875 L 1.046875 -0.75 C 1.046875 -0.3125 0.9375 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.40625 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.671875 0 L 2.671875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.703125 -0.421875 1.703125 -0.78125 L 1.703125 -2.3125 C 1.703125 -3.296875 2.125 -4.171875 2.875 -4.171875 C 2.953125 -4.171875 2.96875 -4.171875 2.984375 -4.15625 C 2.96875 -4.15625 2.765625 -4.03125 2.765625 -3.78125 C 2.765625 -3.5 2.96875 -3.34375 3.1875 -3.34375 C 3.375 -3.34375 3.625 -3.46875 3.625 -3.78125 Z M 3.625 -3.78125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 5.3125 0 L 5.3125 -0.3125 C 4.796875 -0.3125 4.546875 -0.3125 4.546875 -0.609375 L 4.546875 -2.5 C 4.546875 -3.359375 4.546875 -3.671875 4.234375 -4.03125 C 4.09375 -4.1875 3.765625 -4.390625 3.1875 -4.390625 C 2.46875 -4.390625 2 -3.96875 1.71875 -3.34375 L 1.71875 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.015625 -3.96875 1.09375 -3.90625 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.578125 C 1.78125 -3.625 2.484375 -4.171875 3.125 -4.171875 C 3.75 -4.171875 3.859375 -3.640625 3.859375 -3.078125 L 3.859375 -0.75 C 3.859375 -0.3125 3.75 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.203125 -0.03125 Z M 5.3125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 3.578125 -1.265625 C 3.578125 -1.796875 3.28125 -2.09375 3.15625 -2.21875 C 2.828125 -2.53125 2.4375 -2.609375 2.03125 -2.6875 C 1.46875 -2.796875 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.859375 1.0625 -4.265625 1.921875 -4.265625 C 3.015625 -4.265625 3.0625 -3.375 3.078125 -3.0625 C 3.09375 -2.96875 3.203125 -2.96875 3.203125 -2.96875 C 3.328125 -2.96875 3.328125 -3.015625 3.328125 -3.203125 L 3.328125 -4.21875 C 3.328125 -4.375 3.328125 -4.453125 3.21875 -4.453125 C 3.171875 -4.453125 3.15625 -4.453125 3.015625 -4.328125 C 2.984375 -4.296875 2.890625 -4.203125 2.859375 -4.171875 C 2.46875 -4.453125 2.0625 -4.453125 1.921875 -4.453125 C 0.703125 -4.453125 0.328125 -3.78125 0.328125 -3.234375 C 0.328125 -2.875 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.125 1.34375 -2.0625 2.0625 -1.921875 C 2.28125 -1.890625 3.09375 -1.734375 3.09375 -1.015625 C 3.09375 -0.5 2.75 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.515625 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.4375 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.765625 0.109375 1.984375 0.109375 C 3.125 0.109375 3.578125 -0.5625 3.578125 -1.265625 Z M 3.578125 -1.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 4.6875 -2.125 C 4.6875 -3.40625 3.6875 -4.453125 2.484375 -4.453125 C 1.25 -4.453125 0.28125 -3.375 0.28125 -2.125 C 0.28125 -0.84375 1.3125 0.109375 2.46875 0.109375 C 3.671875 0.109375 4.6875 -0.859375 4.6875 -2.125 Z M 3.859375 -2.203125 C 3.859375 -1.84375 3.859375 -1.3125 3.640625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.484375 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.34375 -0.8125 C 1.109375 -1.25 1.109375 -1.84375 1.109375 -2.203125 C 1.109375 -2.59375 1.109375 -3.125 1.34375 -3.5625 C 1.609375 -4.03125 2.078125 -4.234375 2.46875 -4.234375 C 2.90625 -4.234375 3.34375 -4.015625 3.59375 -3.59375 C 3.859375 -3.15625 3.859375 -2.578125 3.859375 -2.203125 Z M 3.859375 -2.203125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-9">
|
||||
<path style="stroke:none;" d="M 4.15625 0 L 4.15625 -0.3125 L 3.84375 -0.3125 C 2.953125 -0.3125 2.921875 -0.421875 2.921875 -0.78125 L 2.921875 -6.359375 C 2.921875 -6.59375 2.921875 -6.625 2.6875 -6.625 C 2.078125 -5.984375 1.203125 -5.984375 0.890625 -5.984375 L 0.890625 -5.671875 C 1.078125 -5.671875 1.671875 -5.671875 2.1875 -5.9375 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.9375 -0.3125 L 0.9375 0 C 1.296875 -0.03125 2.15625 -0.03125 2.546875 -0.03125 C 2.953125 -0.03125 3.8125 -0.03125 4.15625 0 Z M 4.15625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-10">
|
||||
<path style="stroke:none;" d="M 4.46875 -1.734375 L 4.21875 -1.734375 C 4.15625 -1.4375 4.09375 -1 4 -0.84375 C 3.921875 -0.765625 3.265625 -0.765625 3.046875 -0.765625 L 1.265625 -0.765625 L 2.3125 -1.78125 C 3.859375 -3.15625 4.46875 -3.703125 4.46875 -4.6875 C 4.46875 -5.828125 3.5625 -6.625 2.359375 -6.625 C 1.234375 -6.625 0.5 -5.703125 0.5 -4.8125 C 0.5 -4.265625 1 -4.265625 1.03125 -4.265625 C 1.1875 -4.265625 1.546875 -4.375 1.546875 -4.796875 C 1.546875 -5.046875 1.359375 -5.3125 1.015625 -5.3125 C 0.9375 -5.3125 0.921875 -5.3125 0.890625 -5.296875 C 1.109375 -5.9375 1.65625 -6.3125 2.21875 -6.3125 C 3.125 -6.3125 3.5625 -5.5 3.5625 -4.6875 C 3.5625 -3.890625 3.0625 -3.109375 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.1875 0 Z M 4.46875 -1.734375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-11">
|
||||
<path style="stroke:none;" d="M 4 -5.265625 L 2.484375 -6.875 L 0.96875 -5.265625 L 1.109375 -5.125 L 2.484375 -6.203125 L 3.859375 -5.125 Z M 4 -5.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-12">
|
||||
<path style="stroke:none;" d="M 4.140625 -6.3125 L 3.984375 -6.46875 C 3.984375 -6.46875 3.609375 -6 3.171875 -6 C 2.9375 -6 2.6875 -6.140625 2.53125 -6.234375 C 2.25 -6.40625 2.078125 -6.46875 1.90625 -6.46875 C 1.53125 -6.46875 1.34375 -6.25 0.828125 -5.6875 L 1 -5.546875 C 1 -5.546875 1.375 -6.015625 1.8125 -6.015625 C 2.03125 -6.015625 2.28125 -5.875 2.453125 -5.78125 C 2.71875 -5.609375 2.90625 -5.546875 3.078125 -5.546875 C 3.453125 -5.546875 3.640625 -5.765625 4.140625 -6.3125 Z M 4.140625 -6.3125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<path style="stroke:none;" d="M 8.09375 -2.984375 C 8.09375 -3.203125 7.890625 -3.203125 7.71875 -3.203125 L 4.53125 -3.203125 L 4.53125 -6.390625 C 4.53125 -6.5625 4.53125 -6.765625 4.328125 -6.765625 C 4.109375 -6.765625 4.109375 -6.578125 4.109375 -6.390625 L 4.109375 -3.203125 L 0.921875 -3.203125 C 0.75 -3.203125 0.546875 -3.203125 0.546875 -3 C 0.546875 -2.78125 0.75 -2.78125 0.921875 -2.78125 L 4.109375 -2.78125 L 4.109375 0.390625 C 4.109375 0.5625 4.109375 0.765625 4.3125 0.765625 C 4.53125 0.765625 4.53125 0.578125 4.53125 0.390625 L 4.53125 -2.78125 L 7.71875 -2.78125 C 7.875 -2.78125 8.09375 -2.78125 8.09375 -2.984375 Z M 8.09375 -2.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-1">
|
||||
<path style="stroke:none;" d="M 7.171875 -2.609375 C 7.171875 -2.671875 7.109375 -2.71875 7.03125 -2.71875 C 6.8125 -2.71875 6.21875 -2.6875 6 -2.6875 L 4.59375 -2.71875 C 4.515625 -2.71875 4.390625 -2.71875 4.390625 -2.515625 C 4.390625 -2.40625 4.46875 -2.40625 4.6875 -2.40625 C 4.6875 -2.40625 4.984375 -2.40625 5.21875 -2.390625 C 5.46875 -2.359375 5.53125 -2.328125 5.53125 -2.203125 C 5.53125 -2.109375 5.421875 -1.65625 5.3125 -1.296875 C 5.03125 -0.203125 3.75 -0.09375 3.40625 -0.09375 C 2.4375 -0.09375 1.40625 -0.65625 1.40625 -2.171875 C 1.40625 -2.484375 1.5 -4.125 2.546875 -5.421875 C 3.078125 -6.09375 4.046875 -6.703125 5.03125 -6.703125 C 6.046875 -6.703125 6.625 -5.9375 6.625 -4.78125 C 6.625 -4.375 6.59375 -4.375 6.59375 -4.265625 C 6.59375 -4.171875 6.703125 -4.171875 6.75 -4.171875 C 6.875 -4.171875 6.875 -4.1875 6.921875 -4.375 L 7.546875 -6.90625 C 7.546875 -6.9375 7.53125 -7 7.4375 -7 C 7.40625 -7 7.40625 -7 7.296875 -6.890625 L 6.59375 -6.125 C 6.515625 -6.265625 6.046875 -7 4.953125 -7 C 2.734375 -7 0.5 -4.8125 0.5 -2.5 C 0.5 -0.921875 1.59375 0.21875 3.203125 0.21875 C 3.640625 0.21875 4.09375 0.125 4.453125 -0.015625 C 4.953125 -0.21875 5.140625 -0.421875 5.3125 -0.625 C 5.40625 -0.375 5.671875 -0.015625 5.765625 -0.015625 C 5.8125 -0.015625 5.828125 -0.046875 5.828125 -0.046875 C 5.859375 -0.0625 5.953125 -0.453125 6 -0.65625 L 6.1875 -1.421875 C 6.234375 -1.59375 6.28125 -1.765625 6.3125 -1.921875 C 6.421875 -2.375 6.4375 -2.390625 7 -2.40625 C 7.0625 -2.40625 7.171875 -2.421875 7.171875 -2.609375 Z M 7.171875 -2.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 7.140625 -0.203125 C 7.140625 -0.3125 7.046875 -0.3125 6.859375 -0.3125 C 6.484375 -0.3125 6.21875 -0.3125 6.21875 -0.484375 C 6.21875 -0.546875 6.234375 -0.59375 6.234375 -0.65625 L 7.578125 -6.015625 C 7.671875 -6.375 7.6875 -6.484375 8.421875 -6.484375 C 8.671875 -6.484375 8.75 -6.484375 8.75 -6.671875 C 8.75 -6.78125 8.640625 -6.78125 8.609375 -6.78125 L 7.34375 -6.75 L 6.0625 -6.78125 C 5.984375 -6.78125 5.875 -6.78125 5.875 -6.59375 C 5.875 -6.484375 5.96875 -6.484375 6.15625 -6.484375 C 6.15625 -6.484375 6.359375 -6.484375 6.53125 -6.453125 C 6.703125 -6.4375 6.796875 -6.421875 6.796875 -6.296875 C 6.796875 -6.265625 6.78125 -6.234375 6.75 -6.109375 L 6.15625 -3.6875 L 3.125 -3.6875 L 3.71875 -6.015625 C 3.8125 -6.375 3.828125 -6.484375 4.546875 -6.484375 C 4.8125 -6.484375 4.890625 -6.484375 4.890625 -6.671875 C 4.890625 -6.78125 4.78125 -6.78125 4.75 -6.78125 L 3.484375 -6.75 L 2.203125 -6.78125 C 2.109375 -6.78125 2 -6.78125 2 -6.59375 C 2 -6.484375 2.09375 -6.484375 2.28125 -6.484375 C 2.28125 -6.484375 2.5 -6.484375 2.65625 -6.453125 C 2.84375 -6.4375 2.9375 -6.421875 2.9375 -6.296875 C 2.9375 -6.265625 2.921875 -6.234375 2.890625 -6.109375 L 1.5625 -0.78125 C 1.453125 -0.390625 1.4375 -0.3125 0.65625 -0.3125 C 0.484375 -0.3125 0.390625 -0.3125 0.390625 -0.109375 C 0.390625 0 0.53125 0 0.53125 0 L 1.78125 -0.03125 L 2.421875 -0.015625 C 2.640625 -0.015625 2.859375 0 3.078125 0 C 3.15625 0 3.265625 0 3.265625 -0.203125 C 3.265625 -0.3125 3.1875 -0.3125 2.984375 -0.3125 C 2.625 -0.3125 2.34375 -0.3125 2.34375 -0.484375 C 2.34375 -0.546875 2.359375 -0.59375 2.375 -0.65625 L 3.046875 -3.375 L 6.078125 -3.375 L 5.390625 -0.640625 C 5.296875 -0.3125 5.109375 -0.3125 4.484375 -0.3125 C 4.34375 -0.3125 4.25 -0.3125 4.25 -0.109375 C 4.25 0 4.390625 0 4.390625 0 L 5.65625 -0.03125 L 6.296875 -0.015625 C 6.515625 -0.015625 6.734375 0 6.9375 0 C 7.015625 0 7.140625 0 7.140625 -0.203125 Z M 7.140625 -0.203125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-3">
|
||||
<path style="stroke:none;" d="M 8.75 -6.671875 C 8.75 -6.671875 8.75 -6.78125 8.625 -6.78125 C 8.296875 -6.78125 7.953125 -6.75 7.625 -6.75 C 7.28125 -6.75 6.9375 -6.78125 6.609375 -6.78125 C 6.546875 -6.78125 6.421875 -6.78125 6.421875 -6.59375 C 6.421875 -6.484375 6.53125 -6.484375 6.609375 -6.484375 C 7.171875 -6.46875 7.28125 -6.265625 7.28125 -6.046875 C 7.28125 -6.015625 7.265625 -5.859375 7.25 -5.828125 L 6.140625 -1.40625 L 3.9375 -6.59375 C 3.859375 -6.78125 3.859375 -6.78125 3.625 -6.78125 L 2.296875 -6.78125 C 2.09375 -6.78125 2 -6.78125 2 -6.59375 C 2 -6.484375 2.09375 -6.484375 2.28125 -6.484375 C 2.328125 -6.484375 2.96875 -6.484375 2.96875 -6.390625 L 1.625 -1.046875 C 1.53125 -0.65625 1.359375 -0.34375 0.5625 -0.3125 C 0.5 -0.3125 0.390625 -0.296875 0.390625 -0.109375 C 0.390625 -0.046875 0.4375 0 0.515625 0 C 0.828125 0 1.1875 -0.03125 1.515625 -0.03125 C 1.84375 -0.03125 2.203125 0 2.53125 0 C 2.578125 0 2.71875 0 2.71875 -0.203125 C 2.71875 -0.296875 2.625 -0.3125 2.515625 -0.3125 C 1.9375 -0.328125 1.859375 -0.546875 1.859375 -0.75 C 1.859375 -0.8125 1.875 -0.859375 1.890625 -0.96875 L 3.203125 -6.21875 C 3.25 -6.15625 3.25 -6.140625 3.296875 -6.046875 L 5.78125 -0.1875 C 5.84375 -0.015625 5.875 0 5.96875 0 C 6.078125 0 6.078125 -0.03125 6.125 -0.203125 L 7.515625 -5.75 C 7.609375 -6.140625 7.796875 -6.453125 8.59375 -6.484375 C 8.640625 -6.484375 8.75 -6.484375 8.75 -6.671875 Z M 8.75 -6.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-4">
|
||||
<path style="stroke:none;" d="M 4.921875 -1.421875 C 4.921875 -1.515625 4.84375 -1.515625 4.8125 -1.515625 C 4.71875 -1.515625 4.703125 -1.484375 4.6875 -1.40625 C 4.359375 -0.34375 3.671875 -0.109375 3.359375 -0.109375 C 2.96875 -0.109375 2.8125 -0.421875 2.8125 -0.765625 C 2.8125 -0.984375 2.875 -1.203125 2.984375 -1.640625 L 3.3125 -3 C 3.375 -3.265625 3.609375 -4.171875 4.296875 -4.171875 C 4.359375 -4.171875 4.59375 -4.171875 4.796875 -4.046875 C 4.515625 -4 4.328125 -3.75 4.328125 -3.515625 C 4.328125 -3.34375 4.4375 -3.15625 4.703125 -3.15625 C 4.921875 -3.15625 5.234375 -3.34375 5.234375 -3.734375 C 5.234375 -4.25 4.65625 -4.390625 4.3125 -4.390625 C 3.734375 -4.390625 3.390625 -3.859375 3.265625 -3.640625 C 3.015625 -4.296875 2.484375 -4.390625 2.203125 -4.390625 C 1.15625 -4.390625 0.59375 -3.109375 0.59375 -2.859375 C 0.59375 -2.765625 0.71875 -2.765625 0.71875 -2.765625 C 0.796875 -2.765625 0.828125 -2.78125 0.84375 -2.875 C 1.1875 -3.921875 1.84375 -4.171875 2.171875 -4.171875 C 2.359375 -4.171875 2.71875 -4.078125 2.71875 -3.515625 C 2.71875 -3.203125 2.546875 -2.53125 2.171875 -1.140625 C 2.015625 -0.53125 1.671875 -0.109375 1.234375 -0.109375 C 1.171875 -0.109375 0.9375 -0.109375 0.734375 -0.234375 C 0.984375 -0.28125 1.203125 -0.5 1.203125 -0.78125 C 1.203125 -1.046875 0.984375 -1.125 0.828125 -1.125 C 0.53125 -1.125 0.28125 -0.859375 0.28125 -0.546875 C 0.28125 -0.09375 0.78125 0.109375 1.21875 0.109375 C 1.875 0.109375 2.234375 -0.59375 2.265625 -0.640625 C 2.390625 -0.28125 2.75 0.109375 3.34375 0.109375 C 4.359375 0.109375 4.921875 -1.171875 4.921875 -1.421875 Z M 4.921875 -1.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-5">
|
||||
<path style="stroke:none;" d="M 5.671875 -1.421875 C 5.671875 -1.515625 5.578125 -1.515625 5.5625 -1.515625 C 5.453125 -1.515625 5.453125 -1.484375 5.40625 -1.34375 C 5.203125 -0.671875 4.875 -0.109375 4.390625 -0.109375 C 4.21875 -0.109375 4.15625 -0.203125 4.15625 -0.4375 C 4.15625 -0.6875 4.25 -0.921875 4.328125 -1.140625 C 4.515625 -1.671875 4.9375 -2.765625 4.9375 -3.328125 C 4.9375 -4 4.515625 -4.390625 3.796875 -4.390625 C 2.90625 -4.390625 2.421875 -3.75 2.25 -3.53125 C 2.203125 -4.078125 1.78125 -4.390625 1.328125 -4.390625 C 0.875 -4.390625 0.6875 -4 0.59375 -3.828125 C 0.421875 -3.484375 0.28125 -2.90625 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.765625 0.578125 -2.984375 C 0.75 -3.703125 0.9375 -4.171875 1.296875 -4.171875 C 1.5 -4.171875 1.609375 -4.046875 1.609375 -3.71875 C 1.609375 -3.515625 1.578125 -3.40625 1.453125 -2.875 L 0.875 -0.59375 C 0.84375 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.921875 0.109375 1.078125 0.109375 C 1.1875 0.109375 1.375 0.03125 1.4375 -0.171875 C 1.453125 -0.1875 1.5625 -0.65625 1.625 -0.90625 L 1.84375 -1.796875 C 1.90625 -2.015625 1.96875 -2.234375 2.015625 -2.46875 L 2.140625 -2.96875 C 2.296875 -3.265625 2.828125 -4.171875 3.765625 -4.171875 C 4.21875 -4.171875 4.296875 -3.8125 4.296875 -3.484375 C 4.296875 -2.859375 3.8125 -1.59375 3.65625 -1.15625 C 3.5625 -0.9375 3.5625 -0.8125 3.5625 -0.703125 C 3.5625 -0.234375 3.90625 0.109375 4.375 0.109375 C 5.3125 0.109375 5.671875 -1.34375 5.671875 -1.421875 Z M 5.671875 -1.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-6">
|
||||
<path style="stroke:none;" d="M 4.65625 -3.703125 C 4.65625 -4.234375 4.390625 -4.390625 4.21875 -4.390625 C 3.96875 -4.390625 3.734375 -4.140625 3.734375 -3.921875 C 3.734375 -3.78125 3.78125 -3.734375 3.890625 -3.625 C 4.09375 -3.421875 4.21875 -3.15625 4.21875 -2.796875 C 4.21875 -2.390625 3.625 -0.109375 2.453125 -0.109375 C 1.953125 -0.109375 1.71875 -0.453125 1.71875 -0.96875 C 1.71875 -1.53125 1.984375 -2.25 2.296875 -3.078125 C 2.359375 -3.25 2.421875 -3.390625 2.421875 -3.578125 C 2.421875 -4.03125 2.09375 -4.390625 1.59375 -4.390625 C 0.671875 -4.390625 0.28125 -2.953125 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.78125 0.5625 -2.9375 C 0.859375 -3.9375 1.28125 -4.171875 1.5625 -4.171875 C 1.65625 -4.171875 1.8125 -4.171875 1.8125 -3.859375 C 1.8125 -3.609375 1.71875 -3.34375 1.65625 -3.15625 C 1.21875 -2 1.078125 -1.546875 1.078125 -1.125 C 1.078125 -0.046875 1.953125 0.109375 2.421875 0.109375 C 4.078125 0.109375 4.65625 -3.1875 4.65625 -3.703125 Z M 4.65625 -3.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-1">
|
||||
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.03125 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.5625 L 2.328125 -4.421875 C 2.328125 -4.609375 2.3125 -4.609375 2.125 -4.609375 C 1.671875 -4.171875 1.046875 -4.171875 0.765625 -4.171875 L 0.765625 -3.921875 C 0.921875 -3.921875 1.390625 -3.921875 1.765625 -4.109375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.078125 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.28125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-2">
|
||||
<path style="stroke:none;" d="M 3.515625 -1.265625 L 3.28125 -1.265625 C 3.25 -1.109375 3.1875 -0.703125 3.09375 -0.625 C 3.03125 -0.59375 2.5 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.09375 -1.4375 2.515625 -1.765625 C 3.03125 -2.171875 3.515625 -2.59375 3.515625 -3.265625 C 3.515625 -4.109375 2.78125 -4.609375 1.890625 -4.609375 C 1.015625 -4.609375 0.4375 -4.015625 0.4375 -3.375 C 0.4375 -3.015625 0.734375 -2.984375 0.8125 -2.984375 C 0.96875 -2.984375 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.484375 1.125 -3.71875 0.765625 -3.71875 C 0.984375 -4.21875 1.453125 -4.359375 1.78125 -4.359375 C 2.46875 -4.359375 2.84375 -3.828125 2.84375 -3.265625 C 2.84375 -2.65625 2.40625 -2.171875 2.1875 -1.921875 L 0.5 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.296875 0 Z M 3.515625 -1.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-1">
|
||||
<path style="stroke:none;" d="M 5.453125 -1.734375 C 5.453125 -1.90625 5.296875 -1.90625 5.1875 -1.90625 L 1.015625 -1.90625 C 0.90625 -1.90625 0.75 -1.90625 0.75 -1.734375 C 0.75 -1.578125 0.921875 -1.578125 1.015625 -1.578125 L 5.1875 -1.578125 C 5.28125 -1.578125 5.453125 -1.578125 5.453125 -1.734375 Z M 5.453125 -1.734375 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
<clipPath id="clip1">
|
||||
<path d="M 14 0.0546875 L 194 0.0546875 L 194 152 L 14 152 Z M 14 0.0546875 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip2">
|
||||
<path d="M 23 112 L 66 112 L 66 152.226562 L 23 152.226562 Z M 23 112 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip3">
|
||||
<path d="M 186 81 L 207.714844 81 L 207.714844 114 L 186 114 Z M 186 81 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.99939%,89.99939%,89.99939%);fill-opacity:1;" d="M 15.125 151.230469 L 192.589844 151.230469 L 192.589844 1.050781 L 15.125 1.050781 Z M 15.125 151.230469 "/>
|
||||
<g clip-path="url(#clip1)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M -5.669251 -53.961505 L 172.344113 -53.961505 L 172.344113 96.682367 L -5.669251 96.682367 Z M -5.669251 -53.961505 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="132.611117" y="11.203767"/>
|
||||
<use xlink:href="#glyph0-2" x="138.129282" y="11.203767"/>
|
||||
<use xlink:href="#glyph0-3" x="143.647446" y="11.203767"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="149.443704" y="11.203767"/>
|
||||
<use xlink:href="#glyph0-5" x="153.858435" y="11.203767"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="161.056084" y="11.203767"/>
|
||||
<use xlink:href="#glyph0-4" x="166.574249" y="11.203767"/>
|
||||
<use xlink:href="#glyph0-6" x="170.988979" y="11.203767"/>
|
||||
<use xlink:href="#glyph0-7" x="176.507144" y="11.203767"/>
|
||||
<use xlink:href="#glyph0-8" x="180.425279" y="11.203767"/>
|
||||
<use xlink:href="#glyph0-5" x="185.39123" y="11.203767"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M 5.615522 23.202043 L 69.938723 23.202043 L 69.938723 91.012553 L 5.615522 91.012553 Z M 5.615522 23.202043 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="50.688329" y="16.855299"/>
|
||||
<use xlink:href="#glyph0-4" x="56.206494" y="16.855299"/>
|
||||
<use xlink:href="#glyph0-6" x="60.621224" y="16.855299"/>
|
||||
<use xlink:href="#glyph0-7" x="66.139389" y="16.855299"/>
|
||||
<use xlink:href="#glyph0-8" x="70.057524" y="16.855299"/>
|
||||
<use xlink:href="#glyph0-5" x="75.023475" y="16.855299"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-9" x="82.221124" y="16.855299"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M 5.615522 -49.710124 L 69.938723 -49.710124 L 69.938723 18.100386 L 5.615522 18.100386 Z M 5.615522 -49.710124 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="50.688329" y="89.542632"/>
|
||||
<use xlink:href="#glyph0-4" x="56.206494" y="89.542632"/>
|
||||
<use xlink:href="#glyph0-6" x="60.621224" y="89.542632"/>
|
||||
<use xlink:href="#glyph0-7" x="66.139389" y="89.542632"/>
|
||||
<use xlink:href="#glyph0-8" x="70.057524" y="89.542632"/>
|
||||
<use xlink:href="#glyph0-5" x="75.023475" y="89.542632"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="82.221124" y="89.542632"/>
|
||||
</g>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 22.761719 97.433594 C 22.761719 96.339844 21.875 95.449219 20.777344 95.449219 C 19.679688 95.449219 18.789062 96.339844 18.789062 97.433594 C 18.789062 98.53125 19.679688 99.421875 20.777344 99.421875 C 21.875 99.421875 22.761719 98.53125 22.761719 97.433594 Z M 22.761719 97.433594 "/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 30.673202 36.457732 C 30.673202 40.309444 27.554216 43.432348 23.702504 43.432348 C 19.850791 43.432348 16.727888 40.309444 16.727888 36.457732 C 16.727888 32.60602 19.850791 29.483116 23.702504 29.483116 C 27.554216 29.483116 30.673202 32.60602 30.673202 36.457732 Z M 30.673202 36.457732 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="40.080118" y="63.999582"/>
|
||||
</g>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 51.355469 133.78125 C 51.355469 129.941406 48.246094 126.828125 44.40625 126.828125 C 40.566406 126.828125 37.453125 129.941406 37.453125 133.78125 C 37.453125 137.621094 40.566406 140.730469 44.40625 140.730469 C 48.246094 140.730469 51.355469 137.621094 51.355469 133.78125 Z M 51.355469 133.78125 "/>
|
||||
<g clip-path="url(#clip2)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 30.673202 -36.458353 C 30.673202 -32.606641 27.554216 -29.483737 23.702504 -29.483737 C 19.850791 -29.483737 16.727888 -32.606641 16.727888 -36.458353 C 16.727888 -40.310066 19.850791 -43.429051 23.702504 -43.429051 C 27.554216 -43.429051 30.673202 -40.310066 30.673202 -36.458353 Z M 30.673202 -36.458353 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="40.080118" y="136.686916"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 42.510457 27.951051 L 65.189715 27.951051 L 65.189715 44.960495 L 42.510457 44.960495 Z M 42.510457 27.951051 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="68.327808" y="63.740383"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="76.136672" y="65.22978"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 42.510457 -44.961116 L 65.189715 -44.961116 L 65.189715 -27.951673 L 42.510457 -27.951673 Z M 42.510457 -44.961116 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="68.327808" y="136.427717"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-2" x="76.136672" y="137.91811"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 86.02736 27.116448 L 111.198672 27.116448 L 111.198672 45.795097 L 86.02736 45.795097 Z M 86.02736 27.116448 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-11" x="112.097522" y="61.93297"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="109.848473" y="64.444208"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="117.657337" y="60.195341"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="123.86515" y="60.195341"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="117.657337" y="67.092024"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 86.02736 -45.795719 L 111.198672 -45.795719 L 111.198672 -27.11707 L 86.02736 -27.11707 Z M 86.02736 -45.795719 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-11" x="112.097522" y="134.6213"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="109.848473" y="137.131541"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="117.657337" y="132.882674"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="123.86515" y="132.882674"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-2" x="117.657337" y="139.780354"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.203369 27.951051 L 151.878708 27.951051 L 151.878708 44.960495 L 129.203369 44.960495 Z M 129.203369 27.951051 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="154.527377" y="63.740383"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="162.78286" y="65.22978"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.203369 -44.961116 L 151.878708 -44.961116 L 151.878708 -27.951673 L 129.203369 -27.951673 Z M 129.203369 -44.961116 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="154.527377" y="136.427717"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-2" x="162.78286" y="137.91811"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.362875 58.102552 L 35.038214 58.102552 L 35.038214 75.111995 L 12.362875 75.111995 Z M 12.362875 58.102552 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="38.185972" y="33.684283"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="46.166306" y="35.173679"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.362875 -14.809615 L 35.038214 -14.809615 L 35.038214 2.19591 L 12.362875 2.19591 Z M 12.362875 -14.809615 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="38.185972" y="106.371616"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-2" x="46.166306" y="107.862009"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.678217 0.00164855 C 166.678217 3.853361 163.555313 6.972346 159.7036 6.972346 C 155.851888 6.972346 152.728984 3.853361 152.728984 0.00164855 C 152.728984 -3.850064 155.851888 -6.972968 159.7036 -6.972968 C 163.555313 -6.972968 166.678217 -3.850064 166.678217 0.00164855 Z M 166.678217 0.00164855 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="175.661056" y="100.343249"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -19.841827 0.00164855 L 0.000563688 0.00164855 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-4" x="4.802157" y="93.629002"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.000563688 0.00164855 L 0.000563688 36.457732 L 12.092511 36.457732 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054704 0.00105213 L 1.607407 1.682013 L 3.088533 0.00105213 L 1.607407 -1.683827 Z M 6.054704 0.00105213 " transform="matrix(0.996919,0,0,-0.996919,30.003015,61.090893)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.000563688 0.00164855 L 0.000563688 -36.458353 L 12.092511 -36.458353 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054704 -0.00164335 L 1.607407 1.683236 L 3.088533 -0.00164335 L 1.607407 -1.682604 Z M 6.054704 -0.00164335 " transform="matrix(0.996919,0,0,-0.996919,30.003015,133.779612)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 30.673202 36.457732 L 37.381372 36.457732 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053307 0.00105213 L 1.609928 1.682013 L 3.087136 0.00105213 L 1.609928 -1.683827 Z M 6.053307 0.00105213 " transform="matrix(0.996919,0,0,-0.996919,55.211439,61.090893)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 30.673202 -36.458353 L 37.381372 -36.458353 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053307 -0.00164335 L 1.609928 1.683236 L 3.087136 -0.00164335 L 1.609928 -1.682604 Z M 6.053307 -0.00164335 " transform="matrix(0.996919,0,0,-0.996919,55.211439,133.779612)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.702504 57.604925 L 23.702504 48.063807 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051879 0.00179367 L 1.608499 1.682755 L 3.085708 0.00179367 L 1.608499 -1.683086 Z M 6.051879 0.00179367 " transform="matrix(0,0.996919,0.996919,0,44.404462,46.689426)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="30.179719" y="48.842431"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="36.141292" y="50.332824"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.702504 -15.31116 L 23.702504 -24.84836 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054574 0.00179367 L 1.607277 1.682755 L 3.088403 0.00179367 L 1.607277 -1.683086 Z M 6.054574 0.00179367 " transform="matrix(0,0.996919,0.996919,0,44.404462,119.378145)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="30.179719" y="121.530761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-2" x="36.141292" y="123.020158"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.702504 80.241081 L 23.702504 86.945333 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052524 0.00179367 L 1.609145 1.682755 L 3.086353 0.00179367 L 1.609145 -1.683086 Z M 6.052524 0.00179367 " transform="matrix(0,0.996919,0.996919,0,44.404462,14.610657)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-12" x="30.678178" y="16.764579"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="30.179719" y="16.764579"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="36.141292" y="18.253976"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 23.702504 7.328914 L 23.702504 14.033166 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05521 0.00179367 L 1.607913 1.682755 L 3.089039 0.00179367 L 1.607913 -1.683086 Z M 6.05521 0.00179367 " transform="matrix(0,0.996919,0.996919,0,44.404462,87.299386)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-12" x="30.678178" y="89.451913"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="30.179719" y="89.451913"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-2" x="36.141292" y="90.942306"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.687342 36.457732 L 80.894356 36.457732 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05374 0.00105213 L 1.610361 1.682013 L 3.087569 0.00105213 L 1.610361 -1.683827 Z M 6.05374 0.00105213 " transform="matrix(0.996919,0,0,-0.996919,98.59382,61.090893)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-6" x="92.964659" y="55.794942"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="97.778779" y="57.285335"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.687342 -36.458353 L 80.894356 -36.458353 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05374 -0.00164335 L 1.610361 1.683236 L 3.087569 -0.00164335 L 1.610361 -1.682604 Z M 6.05374 -0.00164335 " transform="matrix(0.996919,0,0,-0.996919,98.59382,133.779612)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-6" x="92.964659" y="128.483272"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-2" x="97.778779" y="129.972668"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 111.696299 36.457732 L 124.070365 36.457732 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054859 0.00105213 L 1.607561 1.682013 L 3.088688 0.00105213 L 1.607561 -1.683827 Z M 6.054859 0.00105213 " transform="matrix(0.996919,0,0,-0.996919,141.635673,61.090893)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-11" x="135.775337" y="55.794942"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-4" x="135.144287" y="55.794942"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="140.820742" y="57.285335"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 111.696299 -36.458353 L 124.070365 -36.458353 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054859 -0.00164335 L 1.607561 1.683236 L 3.088688 -0.00164335 L 1.607561 -1.682604 Z M 6.054859 -0.00164335 " transform="matrix(0.996919,0,0,-0.996919,141.635673,133.779612)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-11" x="135.775337" y="128.483272"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-4" x="135.144287" y="128.483272"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-2" x="140.820742" y="129.972668"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.380254 36.457732 L 159.7036 36.457732 L 159.7036 11.607723 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.0552 0.000860497 L 1.607903 1.681821 L 3.089029 0.000860497 L 1.607903 -1.684019 Z M 6.0552 0.000860497 " transform="matrix(0,0.996919,0.996919,0,179.987423,83.03377)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.380254 -36.458353 L 159.7036 -36.458353 L 159.7036 -11.608345 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054569 -0.000860497 L 1.607272 1.684019 L 3.088398 -0.000860497 L 1.607272 -1.681821 Z M 6.054569 -0.000860497 " transform="matrix(0,-0.996919,-0.996919,0,179.987423,111.836694)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.678217 0.00164855 L 181.885231 0.00164855 " transform="matrix(0.996919,0,0,-0.996919,20.776782,97.435237)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 205.308594 97.433594 L 200.875 95.757812 L 202.351562 97.433594 L 200.875 99.113281 Z M 205.308594 97.433594 "/>
|
||||
<g clip-path="url(#clip3)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054915 0.00164855 L 1.607617 1.682609 L 3.088744 0.00164855 L 1.607617 -1.683231 Z M 6.054915 0.00164855 " transform="matrix(0.996919,0,0,-0.996919,199.272336,97.435237)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-11" x="197.866422" y="93.629002"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-4" x="197.235372" y="93.629002"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 46 KiB |
BIN
journal/figs/sensor_model_noise.pdf
Normal file
BIN
journal/figs/sensor_model_noise.png
Normal file
After Width: | Height: | Size: 12 KiB |
207
journal/figs/sensor_model_noise.svg
Normal file
@@ -0,0 +1,207 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="150.823pt" height="69.807pt" viewBox="0 0 150.823 69.807" version="1.2">
|
||||
<defs>
|
||||
<g>
|
||||
<symbol overflow="visible" id="glyph0-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<path style="stroke:none;" d="M 4.953125 -1.84375 C 4.953125 -2.84375 4.296875 -3.65625 3.46875 -3.859375 L 2.203125 -4.15625 C 1.578125 -4.3125 1.1875 -4.84375 1.1875 -5.421875 C 1.1875 -6.125 1.734375 -6.734375 2.5 -6.734375 C 4.15625 -6.734375 4.375 -5.09375 4.4375 -4.65625 C 4.453125 -4.59375 4.453125 -4.53125 4.5625 -4.53125 C 4.6875 -4.53125 4.6875 -4.578125 4.6875 -4.765625 L 4.6875 -6.765625 C 4.6875 -6.9375 4.6875 -7 4.578125 -7 C 4.515625 -7 4.5 -7 4.4375 -6.875 L 4.078125 -6.3125 C 3.78125 -6.59375 3.375 -7 2.5 -7 C 1.390625 -7 0.5625 -6.125 0.5625 -5.078125 C 0.5625 -4.25 1.078125 -3.53125 1.859375 -3.265625 C 1.96875 -3.21875 2.46875 -3.09375 3.171875 -2.9375 C 3.4375 -2.859375 3.734375 -2.796875 4.015625 -2.421875 C 4.21875 -2.171875 4.328125 -1.84375 4.328125 -1.515625 C 4.328125 -0.8125 3.828125 -0.09375 2.984375 -0.09375 C 2.703125 -0.09375 1.953125 -0.140625 1.421875 -0.625 C 0.84375 -1.15625 0.8125 -1.796875 0.8125 -2.15625 C 0.796875 -2.25 0.71875 -2.25 0.6875 -2.25 C 0.5625 -2.25 0.5625 -2.1875 0.5625 -2 L 0.5625 -0.015625 C 0.5625 0.15625 0.5625 0.21875 0.671875 0.21875 C 0.734375 0.21875 0.75 0.203125 0.8125 0.09375 C 0.8125 0.09375 0.84375 0.046875 1.171875 -0.484375 C 1.484375 -0.140625 2.109375 0.21875 3 0.21875 C 4.15625 0.21875 4.953125 -0.75 4.953125 -1.84375 Z M 4.953125 -1.84375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 4.125 -1.1875 C 4.125 -1.28125 4.046875 -1.296875 4 -1.296875 C 3.90625 -1.296875 3.890625 -1.25 3.859375 -1.15625 C 3.515625 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 L 3.875 -2.296875 C 4.09375 -2.296875 4.125 -2.296875 4.125 -2.5 C 4.125 -3.484375 3.59375 -4.453125 2.34375 -4.453125 C 1.1875 -4.453125 0.28125 -3.421875 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.671875 0.109375 4.125 -1 4.125 -1.1875 Z M 3.46875 -2.5 L 1.109375 -2.5 C 1.171875 -3.984375 2 -4.234375 2.34375 -4.234375 C 3.375 -4.234375 3.46875 -2.890625 3.46875 -2.5 Z M 3.46875 -2.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 5.3125 0 L 5.3125 -0.3125 C 4.796875 -0.3125 4.546875 -0.3125 4.546875 -0.609375 L 4.546875 -2.5 C 4.546875 -3.359375 4.546875 -3.671875 4.234375 -4.03125 C 4.09375 -4.1875 3.765625 -4.390625 3.1875 -4.390625 C 2.46875 -4.390625 2 -3.96875 1.71875 -3.34375 L 1.71875 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.015625 -3.96875 1.09375 -3.90625 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.578125 C 1.78125 -3.625 2.484375 -4.171875 3.125 -4.171875 C 3.75 -4.171875 3.859375 -3.640625 3.859375 -3.078125 L 3.859375 -0.75 C 3.859375 -0.3125 3.75 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.203125 -0.03125 Z M 5.3125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 3.578125 -1.265625 C 3.578125 -1.796875 3.28125 -2.09375 3.15625 -2.21875 C 2.828125 -2.53125 2.4375 -2.609375 2.03125 -2.6875 C 1.46875 -2.796875 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.859375 1.0625 -4.265625 1.921875 -4.265625 C 3.015625 -4.265625 3.0625 -3.375 3.078125 -3.0625 C 3.09375 -2.96875 3.203125 -2.96875 3.203125 -2.96875 C 3.328125 -2.96875 3.328125 -3.015625 3.328125 -3.203125 L 3.328125 -4.21875 C 3.328125 -4.375 3.328125 -4.453125 3.21875 -4.453125 C 3.171875 -4.453125 3.15625 -4.453125 3.015625 -4.328125 C 2.984375 -4.296875 2.890625 -4.203125 2.859375 -4.171875 C 2.46875 -4.453125 2.0625 -4.453125 1.921875 -4.453125 C 0.703125 -4.453125 0.328125 -3.78125 0.328125 -3.234375 C 0.328125 -2.875 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.125 1.34375 -2.0625 2.0625 -1.921875 C 2.28125 -1.890625 3.09375 -1.734375 3.09375 -1.015625 C 3.09375 -0.5 2.75 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.515625 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.4375 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.765625 0.109375 1.984375 0.109375 C 3.125 0.109375 3.578125 -0.5625 3.578125 -1.265625 Z M 3.578125 -1.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 4.6875 -2.125 C 4.6875 -3.40625 3.6875 -4.453125 2.484375 -4.453125 C 1.25 -4.453125 0.28125 -3.375 0.28125 -2.125 C 0.28125 -0.84375 1.3125 0.109375 2.46875 0.109375 C 3.671875 0.109375 4.6875 -0.859375 4.6875 -2.125 Z M 3.859375 -2.203125 C 3.859375 -1.84375 3.859375 -1.3125 3.640625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.484375 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.34375 -0.8125 C 1.109375 -1.25 1.109375 -1.84375 1.109375 -2.203125 C 1.109375 -2.59375 1.109375 -3.125 1.34375 -3.5625 C 1.609375 -4.03125 2.078125 -4.234375 2.46875 -4.234375 C 2.90625 -4.234375 3.34375 -4.015625 3.59375 -3.59375 C 3.859375 -3.15625 3.859375 -2.578125 3.859375 -2.203125 Z M 3.859375 -2.203125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 3.625 -3.78125 C 3.625 -4.109375 3.3125 -4.390625 2.875 -4.390625 C 2.15625 -4.390625 1.796875 -3.734375 1.65625 -3.296875 L 1.65625 -4.390625 L 0.28125 -4.28125 L 0.28125 -3.96875 C 0.96875 -3.96875 1.046875 -3.90625 1.046875 -3.421875 L 1.046875 -0.75 C 1.046875 -0.3125 0.9375 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.40625 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.671875 0 L 2.671875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.703125 -0.421875 1.703125 -0.78125 L 1.703125 -2.3125 C 1.703125 -3.296875 2.125 -4.171875 2.875 -4.171875 C 2.953125 -4.171875 2.96875 -4.171875 2.984375 -4.15625 C 2.96875 -4.15625 2.765625 -4.03125 2.765625 -3.78125 C 2.765625 -3.5 2.96875 -3.34375 3.1875 -3.34375 C 3.375 -3.34375 3.625 -3.46875 3.625 -3.78125 Z M 3.625 -3.78125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 4 -5.265625 L 2.484375 -6.875 L 0.96875 -5.265625 L 1.109375 -5.125 L 2.484375 -6.203125 L 3.859375 -5.125 Z M 4 -5.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 4.140625 -6.3125 L 3.984375 -6.46875 C 3.984375 -6.46875 3.609375 -6 3.171875 -6 C 2.9375 -6 2.6875 -6.140625 2.53125 -6.234375 C 2.25 -6.40625 2.078125 -6.46875 1.90625 -6.46875 C 1.53125 -6.46875 1.34375 -6.25 0.828125 -5.6875 L 1 -5.546875 C 1 -5.546875 1.375 -6.015625 1.8125 -6.015625 C 2.03125 -6.015625 2.28125 -5.875 2.453125 -5.78125 C 2.71875 -5.609375 2.90625 -5.546875 3.078125 -5.546875 C 3.453125 -5.546875 3.640625 -5.765625 4.140625 -6.3125 Z M 4.140625 -6.3125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<path style="stroke:none;" d="M 8.09375 -2.984375 C 8.09375 -3.203125 7.890625 -3.203125 7.71875 -3.203125 L 4.53125 -3.203125 L 4.53125 -6.390625 C 4.53125 -6.5625 4.53125 -6.765625 4.328125 -6.765625 C 4.109375 -6.765625 4.109375 -6.578125 4.109375 -6.390625 L 4.109375 -3.203125 L 0.921875 -3.203125 C 0.75 -3.203125 0.546875 -3.203125 0.546875 -3 C 0.546875 -2.78125 0.75 -2.78125 0.921875 -2.78125 L 4.109375 -2.78125 L 4.109375 0.390625 C 4.109375 0.5625 4.109375 0.765625 4.3125 0.765625 C 4.53125 0.765625 4.53125 0.578125 4.53125 0.390625 L 4.53125 -2.78125 L 7.71875 -2.78125 C 7.875 -2.78125 8.09375 -2.78125 8.09375 -2.984375 Z M 8.09375 -2.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-1">
|
||||
<path style="stroke:none;" d="M 7.171875 -2.609375 C 7.171875 -2.671875 7.109375 -2.71875 7.03125 -2.71875 C 6.8125 -2.71875 6.21875 -2.6875 6 -2.6875 L 4.59375 -2.71875 C 4.515625 -2.71875 4.390625 -2.71875 4.390625 -2.515625 C 4.390625 -2.40625 4.46875 -2.40625 4.6875 -2.40625 C 4.6875 -2.40625 4.984375 -2.40625 5.21875 -2.390625 C 5.46875 -2.359375 5.53125 -2.328125 5.53125 -2.203125 C 5.53125 -2.109375 5.421875 -1.65625 5.3125 -1.296875 C 5.03125 -0.203125 3.75 -0.09375 3.40625 -0.09375 C 2.4375 -0.09375 1.40625 -0.65625 1.40625 -2.171875 C 1.40625 -2.484375 1.5 -4.125 2.546875 -5.421875 C 3.078125 -6.09375 4.046875 -6.703125 5.03125 -6.703125 C 6.046875 -6.703125 6.625 -5.9375 6.625 -4.78125 C 6.625 -4.375 6.59375 -4.375 6.59375 -4.265625 C 6.59375 -4.171875 6.703125 -4.171875 6.75 -4.171875 C 6.875 -4.171875 6.875 -4.1875 6.921875 -4.375 L 7.546875 -6.90625 C 7.546875 -6.9375 7.53125 -7 7.4375 -7 C 7.40625 -7 7.40625 -7 7.296875 -6.890625 L 6.59375 -6.125 C 6.515625 -6.265625 6.046875 -7 4.953125 -7 C 2.734375 -7 0.5 -4.8125 0.5 -2.5 C 0.5 -0.921875 1.59375 0.21875 3.203125 0.21875 C 3.640625 0.21875 4.09375 0.125 4.453125 -0.015625 C 4.953125 -0.21875 5.140625 -0.421875 5.3125 -0.625 C 5.40625 -0.375 5.671875 -0.015625 5.765625 -0.015625 C 5.8125 -0.015625 5.828125 -0.046875 5.828125 -0.046875 C 5.859375 -0.0625 5.953125 -0.453125 6 -0.65625 L 6.1875 -1.421875 C 6.234375 -1.59375 6.28125 -1.765625 6.3125 -1.921875 C 6.421875 -2.375 6.4375 -2.390625 7 -2.40625 C 7.0625 -2.40625 7.171875 -2.421875 7.171875 -2.609375 Z M 7.171875 -2.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 8.75 -6.671875 C 8.75 -6.671875 8.75 -6.78125 8.625 -6.78125 C 8.296875 -6.78125 7.953125 -6.75 7.625 -6.75 C 7.28125 -6.75 6.9375 -6.78125 6.609375 -6.78125 C 6.546875 -6.78125 6.421875 -6.78125 6.421875 -6.59375 C 6.421875 -6.484375 6.53125 -6.484375 6.609375 -6.484375 C 7.171875 -6.46875 7.28125 -6.265625 7.28125 -6.046875 C 7.28125 -6.015625 7.265625 -5.859375 7.25 -5.828125 L 6.140625 -1.40625 L 3.9375 -6.59375 C 3.859375 -6.78125 3.859375 -6.78125 3.625 -6.78125 L 2.296875 -6.78125 C 2.09375 -6.78125 2 -6.78125 2 -6.59375 C 2 -6.484375 2.09375 -6.484375 2.28125 -6.484375 C 2.328125 -6.484375 2.96875 -6.484375 2.96875 -6.390625 L 1.625 -1.046875 C 1.53125 -0.65625 1.359375 -0.34375 0.5625 -0.3125 C 0.5 -0.3125 0.390625 -0.296875 0.390625 -0.109375 C 0.390625 -0.046875 0.4375 0 0.515625 0 C 0.828125 0 1.1875 -0.03125 1.515625 -0.03125 C 1.84375 -0.03125 2.203125 0 2.53125 0 C 2.578125 0 2.71875 0 2.71875 -0.203125 C 2.71875 -0.296875 2.625 -0.3125 2.515625 -0.3125 C 1.9375 -0.328125 1.859375 -0.546875 1.859375 -0.75 C 1.859375 -0.8125 1.875 -0.859375 1.890625 -0.96875 L 3.203125 -6.21875 C 3.25 -6.15625 3.25 -6.140625 3.296875 -6.046875 L 5.78125 -0.1875 C 5.84375 -0.015625 5.875 0 5.96875 0 C 6.078125 0 6.078125 -0.03125 6.125 -0.203125 L 7.515625 -5.75 C 7.609375 -6.140625 7.796875 -6.453125 8.59375 -6.484375 C 8.640625 -6.484375 8.75 -6.484375 8.75 -6.671875 Z M 8.75 -6.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-3">
|
||||
<path style="stroke:none;" d="M 4.921875 -1.421875 C 4.921875 -1.515625 4.84375 -1.515625 4.8125 -1.515625 C 4.71875 -1.515625 4.703125 -1.484375 4.6875 -1.40625 C 4.359375 -0.34375 3.671875 -0.109375 3.359375 -0.109375 C 2.96875 -0.109375 2.8125 -0.421875 2.8125 -0.765625 C 2.8125 -0.984375 2.875 -1.203125 2.984375 -1.640625 L 3.3125 -3 C 3.375 -3.265625 3.609375 -4.171875 4.296875 -4.171875 C 4.359375 -4.171875 4.59375 -4.171875 4.796875 -4.046875 C 4.515625 -4 4.328125 -3.75 4.328125 -3.515625 C 4.328125 -3.34375 4.4375 -3.15625 4.703125 -3.15625 C 4.921875 -3.15625 5.234375 -3.34375 5.234375 -3.734375 C 5.234375 -4.25 4.65625 -4.390625 4.3125 -4.390625 C 3.734375 -4.390625 3.390625 -3.859375 3.265625 -3.640625 C 3.015625 -4.296875 2.484375 -4.390625 2.203125 -4.390625 C 1.15625 -4.390625 0.59375 -3.109375 0.59375 -2.859375 C 0.59375 -2.765625 0.71875 -2.765625 0.71875 -2.765625 C 0.796875 -2.765625 0.828125 -2.78125 0.84375 -2.875 C 1.1875 -3.921875 1.84375 -4.171875 2.171875 -4.171875 C 2.359375 -4.171875 2.71875 -4.078125 2.71875 -3.515625 C 2.71875 -3.203125 2.546875 -2.53125 2.171875 -1.140625 C 2.015625 -0.53125 1.671875 -0.109375 1.234375 -0.109375 C 1.171875 -0.109375 0.9375 -0.109375 0.734375 -0.234375 C 0.984375 -0.28125 1.203125 -0.5 1.203125 -0.78125 C 1.203125 -1.046875 0.984375 -1.125 0.828125 -1.125 C 0.53125 -1.125 0.28125 -0.859375 0.28125 -0.546875 C 0.28125 -0.09375 0.78125 0.109375 1.21875 0.109375 C 1.875 0.109375 2.234375 -0.59375 2.265625 -0.640625 C 2.390625 -0.28125 2.75 0.109375 3.34375 0.109375 C 4.359375 0.109375 4.921875 -1.171875 4.921875 -1.421875 Z M 4.921875 -1.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-4">
|
||||
<path style="stroke:none;" d="M 5.671875 -1.421875 C 5.671875 -1.515625 5.578125 -1.515625 5.5625 -1.515625 C 5.453125 -1.515625 5.453125 -1.484375 5.40625 -1.34375 C 5.203125 -0.671875 4.875 -0.109375 4.390625 -0.109375 C 4.21875 -0.109375 4.15625 -0.203125 4.15625 -0.4375 C 4.15625 -0.6875 4.25 -0.921875 4.328125 -1.140625 C 4.515625 -1.671875 4.9375 -2.765625 4.9375 -3.328125 C 4.9375 -4 4.515625 -4.390625 3.796875 -4.390625 C 2.90625 -4.390625 2.421875 -3.75 2.25 -3.53125 C 2.203125 -4.078125 1.78125 -4.390625 1.328125 -4.390625 C 0.875 -4.390625 0.6875 -4 0.59375 -3.828125 C 0.421875 -3.484375 0.28125 -2.90625 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.765625 0.578125 -2.984375 C 0.75 -3.703125 0.9375 -4.171875 1.296875 -4.171875 C 1.5 -4.171875 1.609375 -4.046875 1.609375 -3.71875 C 1.609375 -3.515625 1.578125 -3.40625 1.453125 -2.875 L 0.875 -0.59375 C 0.84375 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.921875 0.109375 1.078125 0.109375 C 1.1875 0.109375 1.375 0.03125 1.4375 -0.171875 C 1.453125 -0.1875 1.5625 -0.65625 1.625 -0.90625 L 1.84375 -1.796875 C 1.90625 -2.015625 1.96875 -2.234375 2.015625 -2.46875 L 2.140625 -2.96875 C 2.296875 -3.265625 2.828125 -4.171875 3.765625 -4.171875 C 4.21875 -4.171875 4.296875 -3.8125 4.296875 -3.484375 C 4.296875 -2.859375 3.8125 -1.59375 3.65625 -1.15625 C 3.5625 -0.9375 3.5625 -0.8125 3.5625 -0.703125 C 3.5625 -0.234375 3.90625 0.109375 4.375 0.109375 C 5.3125 0.109375 5.671875 -1.34375 5.671875 -1.421875 Z M 5.671875 -1.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-5">
|
||||
<path style="stroke:none;" d="M 4.65625 -3.703125 C 4.65625 -4.234375 4.390625 -4.390625 4.21875 -4.390625 C 3.96875 -4.390625 3.734375 -4.140625 3.734375 -3.921875 C 3.734375 -3.78125 3.78125 -3.734375 3.890625 -3.625 C 4.09375 -3.421875 4.21875 -3.15625 4.21875 -2.796875 C 4.21875 -2.390625 3.625 -0.109375 2.453125 -0.109375 C 1.953125 -0.109375 1.71875 -0.453125 1.71875 -0.96875 C 1.71875 -1.53125 1.984375 -2.25 2.296875 -3.078125 C 2.359375 -3.25 2.421875 -3.390625 2.421875 -3.578125 C 2.421875 -4.03125 2.09375 -4.390625 1.59375 -4.390625 C 0.671875 -4.390625 0.28125 -2.953125 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.78125 0.5625 -2.9375 C 0.859375 -3.9375 1.28125 -4.171875 1.5625 -4.171875 C 1.65625 -4.171875 1.8125 -4.171875 1.8125 -3.859375 C 1.8125 -3.609375 1.71875 -3.34375 1.65625 -3.15625 C 1.21875 -2 1.078125 -1.546875 1.078125 -1.125 C 1.078125 -0.046875 1.953125 0.109375 2.421875 0.109375 C 4.078125 0.109375 4.65625 -3.1875 4.65625 -3.703125 Z M 4.65625 -3.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-1">
|
||||
<path style="stroke:none;" d="M 2.25 -4.34375 C 2.25 -4.453125 2.171875 -4.609375 1.96875 -4.609375 C 1.78125 -4.609375 1.578125 -4.421875 1.578125 -4.234375 C 1.578125 -4.109375 1.671875 -3.96875 1.859375 -3.96875 C 2.0625 -3.96875 2.25 -4.15625 2.25 -4.34375 Z M 2.4375 -1 C 2.4375 -1.078125 2.34375 -1.078125 2.328125 -1.078125 C 2.21875 -1.078125 2.21875 -1.046875 2.1875 -0.96875 C 2.03125 -0.40625 1.71875 -0.125 1.453125 -0.125 C 1.3125 -0.125 1.28125 -0.21875 1.28125 -0.375 C 1.28125 -0.53125 1.328125 -0.65625 1.390625 -0.8125 L 1.609375 -1.375 L 1.953125 -2.25 C 1.96875 -2.328125 2 -2.40625 2 -2.46875 C 2 -2.796875 1.71875 -3.0625 1.328125 -3.0625 C 0.640625 -3.0625 0.328125 -2.125 0.328125 -2 C 0.328125 -1.90625 0.421875 -1.90625 0.4375 -1.90625 C 0.546875 -1.90625 0.546875 -1.953125 0.5625 -2.015625 C 0.75 -2.625 1.0625 -2.875 1.3125 -2.875 C 1.421875 -2.875 1.484375 -2.8125 1.484375 -2.625 C 1.484375 -2.46875 1.453125 -2.359375 1.265625 -1.9375 L 0.828125 -0.8125 C 0.8125 -0.71875 0.765625 -0.640625 0.765625 -0.515625 C 0.765625 -0.1875 1.046875 0.0625 1.4375 0.0625 C 2.125 0.0625 2.4375 -0.890625 2.4375 -1 Z M 2.4375 -1 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-1">
|
||||
<path style="stroke:none;" d="M 5.453125 -1.734375 C 5.453125 -1.90625 5.296875 -1.90625 5.1875 -1.90625 L 1.015625 -1.90625 C 0.90625 -1.90625 0.75 -1.90625 0.75 -1.734375 C 0.75 -1.578125 0.921875 -1.578125 1.015625 -1.578125 L 5.1875 -1.578125 C 5.28125 -1.578125 5.453125 -1.578125 5.453125 -1.734375 Z M 5.453125 -1.734375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-1">
|
||||
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.03125 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.5625 L 2.328125 -4.421875 C 2.328125 -4.609375 2.3125 -4.609375 2.125 -4.609375 C 1.671875 -4.171875 1.046875 -4.171875 0.765625 -4.171875 L 0.765625 -3.921875 C 0.921875 -3.921875 1.390625 -3.921875 1.765625 -4.109375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.078125 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.28125 0 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
<clipPath id="clip1">
|
||||
<path d="M 18 0 L 86 0 L 86 69.613281 L 18 69.613281 Z M 18 0 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip2">
|
||||
<path d="M 15 34 L 58 34 L 58 69.613281 L 15 69.613281 Z M 15 34 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip3">
|
||||
<path d="M 0.121094 54 L 26 54 L 26 56 L 0.121094 56 Z M 0.121094 54 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip4">
|
||||
<path d="M 9 39 L 43 39 L 43 69.613281 L 9 69.613281 Z M 9 39 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip5">
|
||||
<path d="M 37 39 L 71 39 L 71 69.613281 L 37 69.613281 Z M 37 39 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip6">
|
||||
<path d="M 83 39 L 117 39 L 117 69.613281 L 83 69.613281 Z M 83 39 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip7">
|
||||
<path d="M 129 39 L 150.527344 39 L 150.527344 69.613281 L 129 69.613281 Z M 129 39 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 19.449219 68.621094 L 85.273438 68.621094 L 85.273438 0.996094 L 19.449219 0.996094 Z M 19.449219 68.621094 "/>
|
||||
<g clip-path="url(#clip1)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M -16.935004 -13.255815 L 49.071203 -13.255815 L 49.071203 54.556152 L -16.935004 54.556152 Z M -16.935004 -13.255815 " transform="matrix(0.997243,0,0,-0.997243,36.33753,55.401827)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="53.73144" y="11.15117"/>
|
||||
<use xlink:href="#glyph0-2" x="59.251399" y="11.15117"/>
|
||||
<use xlink:href="#glyph0-3" x="63.667565" y="11.15117"/>
|
||||
<use xlink:href="#glyph0-4" x="69.187525" y="11.15117"/>
|
||||
<use xlink:href="#glyph0-5" x="73.106934" y="11.15117"/>
|
||||
<use xlink:href="#glyph0-6" x="78.0745" y="11.15117"/>
|
||||
</g>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 43.292969 55.402344 C 43.292969 51.5625 40.179688 48.445312 36.335938 48.445312 C 32.496094 48.445312 29.382812 51.5625 29.382812 55.402344 C 29.382812 59.242188 32.496094 62.355469 36.335938 62.355469 C 40.179688 62.355469 43.292969 59.242188 43.292969 55.402344 Z M 43.292969 55.402344 "/>
|
||||
<g clip-path="url(#clip2)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.974669 -0.00051825 C 6.974669 3.849942 3.85278 6.975748 -0.00159728 6.975748 C -3.852057 6.975748 -6.973946 3.849942 -6.973946 -0.00051825 C -6.973946 -3.850978 -3.852057 -6.972867 -0.00159728 -6.972867 C 3.85278 -6.972867 6.974669 -3.850978 6.974669 -0.00051825 Z M 6.974669 -0.00051825 " transform="matrix(0.997243,0,0,-0.997243,36.33753,55.401827)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="32.012488" y="58.309787"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 21.64402 -8.504434 L 44.323739 -8.504434 L 44.323739 8.503397 L 21.64402 8.503397 Z M 21.64402 -8.504434 " transform="matrix(0.997243,0,0,-0.997243,36.33753,55.401827)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="63.67096" y="58.051501"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="71.482363" y="59.541382"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 67.998388 -9.401438 L 93.165434 -9.401438 L 93.165434 9.400401 L 67.998388 9.400401 Z M 67.998388 -9.401438 " transform="matrix(0.997243,0,0,-0.997243,36.33753,55.401827)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="109.707679" y="56.183665"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="107.457899" y="58.694723"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="115.269303" y="54.444474"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-1" x="121.479134" y="54.444474"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="115.269303" y="61.464066"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -11.33754 21.645099 L 11.338262 21.645099 L 11.338262 38.65293 L -11.33754 38.65293 Z M -11.33754 21.645099 " transform="matrix(0.997243,0,0,-0.997243,36.33753,55.401827)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="30.693136" y="27.984629"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="38.675068" y="29.475507"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip3)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -11.607816 -0.00051825 L -35.321636 -0.00051825 " transform="matrix(0.997243,0,0,-0.997243,36.33753,55.401827)"/>
|
||||
</g>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 27.96875 55.402344 L 23.535156 53.722656 L 25.011719 55.402344 L 23.535156 57.082031 Z M 27.96875 55.402344 "/>
|
||||
<g clip-path="url(#clip4)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054052 -0.00051825 L 1.6082 1.683813 L 3.088845 -0.00051825 L 1.6082 -1.68485 Z M 6.054052 -0.00051825 " transform="matrix(0.997243,0,0,-0.997243,21.93139,55.401827)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="4.923383" y="51.593356"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.974669 -0.00051825 L 16.512685 -0.00051825 " transform="matrix(0.997243,0,0,-0.997243,36.33753,55.401827)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 56.011719 55.402344 L 51.578125 53.722656 L 53.054688 55.402344 L 51.578125 57.082031 Z M 56.011719 55.402344 "/>
|
||||
<g clip-path="url(#clip5)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053363 -0.00051825 L 1.607511 1.683813 L 3.088156 -0.00051825 L 1.607511 -1.68485 Z M 6.053363 -0.00051825 " transform="matrix(0.997243,0,0,-0.997243,49.975046,55.401827)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00159728 21.147634 L -0.00159728 11.605701 " transform="matrix(0.997243,0,0,-0.997243,36.33753,55.401827)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05226 -0.00159728 L 1.610326 1.682734 L 3.087054 -0.00159728 L 1.610326 -1.682012 Z M 6.05226 -0.00159728 " transform="matrix(0,0.997243,0.997243,0,36.33753,40.995677)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-4" x="23.25869" y="43.148704"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="29.222203" y="44.638585"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00159728 43.784265 L -0.00159728 50.490255 " transform="matrix(0.997243,0,0,-0.997243,36.33753,55.401827)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051616 -0.00159728 L 1.609681 1.682734 L 3.086409 -0.00159728 L 1.609681 -1.682012 Z M 6.051616 -0.00159728 " transform="matrix(0,0.997243,0.997243,0,36.33753,8.906476)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="23.756314" y="11.060421"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-4" x="23.25869" y="11.060421"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="29.222203" y="12.550301"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 44.821204 -0.00051825 L 62.863136 -0.00051825 " transform="matrix(0.997243,0,0,-0.997243,36.33753,55.401827)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 102.234375 55.402344 L 97.804688 53.722656 L 99.277344 55.402344 L 97.804688 57.082031 Z M 102.234375 55.402344 "/>
|
||||
<g clip-path="url(#clip6)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052494 -0.00051825 L 1.610559 1.683813 L 3.087287 -0.00051825 L 1.610559 -1.68485 Z M 6.052494 -0.00051825 " transform="matrix(0.997243,0,0,-0.997243,96.198569,55.401827)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="91.718415" y="50.103476"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="96.534101" y="51.593356"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 93.666816 -0.00051825 L 108.872804 -0.00051825 " transform="matrix(0.997243,0,0,-0.997243,36.33753,55.401827)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 148.117188 55.402344 L 143.683594 53.722656 L 145.160156 55.402344 L 143.683594 57.082031 Z M 148.117188 55.402344 "/>
|
||||
<g clip-path="url(#clip7)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052842 -0.00051825 L 1.60699 1.683813 L 3.087635 -0.00051825 L 1.60699 -1.68485 Z M 6.052842 -0.00051825 " transform="matrix(0.997243,0,0,-0.997243,142.081034,55.401827)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="137.368204" y="50.103476"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="136.736949" y="50.103476"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="142.41525" y="51.593356"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 28 KiB |
BIN
journal/figs/sensor_model_noise_uncertainty.pdf
Normal file
BIN
journal/figs/sensor_model_noise_uncertainty.png
Normal file
After Width: | Height: | Size: 17 KiB |
249
journal/figs/sensor_model_noise_uncertainty.svg
Normal file
@@ -0,0 +1,249 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="231.462pt" height="70.061pt" viewBox="0 0 231.462 70.061" version="1.2">
|
||||
<defs>
|
||||
<g>
|
||||
<symbol overflow="visible" id="glyph0-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<path style="stroke:none;" d="M 4.90625 -1.828125 C 4.90625 -2.8125 4.25 -3.609375 3.4375 -3.8125 L 2.171875 -4.125 C 1.5625 -4.265625 1.171875 -4.796875 1.171875 -5.359375 C 1.171875 -6.046875 1.703125 -6.65625 2.484375 -6.65625 C 4.125 -6.65625 4.328125 -5.046875 4.390625 -4.59375 C 4.40625 -4.546875 4.40625 -4.484375 4.515625 -4.484375 C 4.640625 -4.484375 4.640625 -4.53125 4.640625 -4.71875 L 4.640625 -6.6875 C 4.640625 -6.859375 4.640625 -6.921875 4.53125 -6.921875 C 4.46875 -6.921875 4.453125 -6.921875 4.390625 -6.796875 L 4.046875 -6.234375 C 3.75 -6.53125 3.34375 -6.921875 2.46875 -6.921875 C 1.375 -6.921875 0.546875 -6.0625 0.546875 -5.015625 C 0.546875 -4.203125 1.078125 -3.484375 1.84375 -3.21875 C 1.953125 -3.1875 2.453125 -3.0625 3.140625 -2.90625 C 3.40625 -2.828125 3.703125 -2.765625 3.96875 -2.390625 C 4.171875 -2.140625 4.28125 -1.8125 4.28125 -1.5 C 4.28125 -0.796875 3.78125 -0.09375 2.953125 -0.09375 C 2.671875 -0.09375 1.921875 -0.140625 1.40625 -0.625 C 0.828125 -1.15625 0.8125 -1.78125 0.796875 -2.125 C 0.78125 -2.234375 0.703125 -2.234375 0.671875 -2.234375 C 0.546875 -2.234375 0.546875 -2.15625 0.546875 -1.984375 L 0.546875 -0.015625 C 0.546875 0.140625 0.546875 0.21875 0.65625 0.21875 C 0.734375 0.21875 0.734375 0.203125 0.8125 0.09375 C 0.8125 0.09375 0.828125 0.046875 1.15625 -0.46875 C 1.46875 -0.140625 2.09375 0.21875 2.96875 0.21875 C 4.125 0.21875 4.90625 -0.75 4.90625 -1.828125 Z M 4.90625 -1.828125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 4.078125 -1.171875 C 4.078125 -1.265625 4 -1.28125 3.953125 -1.28125 C 3.859375 -1.28125 3.84375 -1.234375 3.828125 -1.15625 C 3.484375 -0.140625 2.59375 -0.140625 2.5 -0.140625 C 2 -0.140625 1.609375 -0.4375 1.390625 -0.796875 C 1.09375 -1.265625 1.09375 -1.921875 1.09375 -2.265625 L 3.828125 -2.265625 C 4.046875 -2.265625 4.078125 -2.265625 4.078125 -2.484375 C 4.078125 -3.453125 3.546875 -4.40625 2.3125 -4.40625 C 1.171875 -4.40625 0.28125 -3.390625 0.28125 -2.15625 C 0.28125 -0.84375 1.3125 0.109375 2.4375 0.109375 C 3.640625 0.109375 4.078125 -0.984375 4.078125 -1.171875 Z M 3.4375 -2.484375 L 1.09375 -2.484375 C 1.15625 -3.9375 1.984375 -4.1875 2.3125 -4.1875 C 3.328125 -4.1875 3.4375 -2.859375 3.4375 -2.484375 Z M 3.4375 -2.484375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 5.265625 0 L 5.265625 -0.296875 C 4.75 -0.296875 4.5 -0.296875 4.484375 -0.59375 L 4.484375 -2.484375 C 4.484375 -3.328125 4.484375 -3.625 4.1875 -3.984375 C 4.046875 -4.140625 3.71875 -4.34375 3.15625 -4.34375 C 2.4375 -4.34375 1.96875 -3.921875 1.703125 -3.3125 L 1.703125 -4.34375 L 0.3125 -4.234375 L 0.3125 -3.9375 C 1 -3.9375 1.078125 -3.859375 1.078125 -3.375 L 1.078125 -0.75 C 1.078125 -0.296875 0.96875 -0.296875 0.3125 -0.296875 L 0.3125 0 L 1.421875 -0.03125 L 2.53125 0 L 2.53125 -0.296875 C 1.875 -0.296875 1.765625 -0.296875 1.765625 -0.75 L 1.765625 -2.5625 C 1.765625 -3.578125 2.453125 -4.125 3.09375 -4.125 C 3.703125 -4.125 3.8125 -3.59375 3.8125 -3.03125 L 3.8125 -0.75 C 3.8125 -0.296875 3.703125 -0.296875 3.046875 -0.296875 L 3.046875 0 L 4.15625 -0.03125 Z M 5.265625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 3.53125 -1.265625 C 3.53125 -1.78125 3.25 -2.078125 3.125 -2.1875 C 2.796875 -2.5 2.421875 -2.578125 2 -2.65625 C 1.453125 -2.765625 0.796875 -2.90625 0.796875 -3.46875 C 0.796875 -3.8125 1.046875 -4.21875 1.890625 -4.21875 C 2.984375 -4.21875 3.03125 -3.328125 3.046875 -3.03125 C 3.0625 -2.9375 3.171875 -2.9375 3.171875 -2.9375 C 3.296875 -2.9375 3.296875 -2.984375 3.296875 -3.171875 L 3.296875 -4.171875 C 3.296875 -4.328125 3.296875 -4.40625 3.1875 -4.40625 C 3.140625 -4.40625 3.109375 -4.40625 2.984375 -4.28125 C 2.953125 -4.25 2.859375 -4.15625 2.828125 -4.125 C 2.453125 -4.40625 2.046875 -4.40625 1.890625 -4.40625 C 0.703125 -4.40625 0.328125 -3.75 0.328125 -3.1875 C 0.328125 -2.84375 0.484375 -2.578125 0.75 -2.359375 C 1.0625 -2.109375 1.34375 -2.046875 2.046875 -1.90625 C 2.265625 -1.875 3.0625 -1.703125 3.0625 -1 C 3.0625 -0.5 2.71875 -0.109375 1.953125 -0.109375 C 1.125 -0.109375 0.78125 -0.671875 0.59375 -1.5 C 0.5625 -1.625 0.546875 -1.671875 0.453125 -1.671875 C 0.328125 -1.671875 0.328125 -1.609375 0.328125 -1.421875 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.484375 0.09375 0.671875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.875 -0.3125 C 1.3125 0.09375 1.75 0.109375 1.953125 0.109375 C 3.09375 0.109375 3.53125 -0.546875 3.53125 -1.265625 Z M 3.53125 -1.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 4.625 -2.109375 C 4.625 -3.359375 3.640625 -4.40625 2.453125 -4.40625 C 1.234375 -4.40625 0.28125 -3.328125 0.28125 -2.109375 C 0.28125 -0.828125 1.296875 0.109375 2.453125 0.109375 C 3.640625 0.109375 4.625 -0.859375 4.625 -2.109375 Z M 3.8125 -2.1875 C 3.8125 -1.828125 3.8125 -1.296875 3.59375 -0.859375 C 3.375 -0.421875 2.953125 -0.140625 2.453125 -0.140625 C 2.03125 -0.140625 1.609375 -0.34375 1.34375 -0.796875 C 1.09375 -1.234375 1.09375 -1.828125 1.09375 -2.1875 C 1.09375 -2.5625 1.09375 -3.09375 1.328125 -3.53125 C 1.59375 -3.984375 2.046875 -4.1875 2.453125 -4.1875 C 2.875 -4.1875 3.296875 -3.96875 3.5625 -3.546875 C 3.8125 -3.125 3.8125 -2.5625 3.8125 -2.1875 Z M 3.8125 -2.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 3.578125 -3.75 C 3.578125 -4.0625 3.265625 -4.34375 2.84375 -4.34375 C 2.125 -4.34375 1.78125 -3.6875 1.640625 -3.265625 L 1.640625 -4.34375 L 0.28125 -4.234375 L 0.28125 -3.9375 C 0.96875 -3.9375 1.046875 -3.859375 1.046875 -3.375 L 1.046875 -0.75 C 1.046875 -0.296875 0.9375 -0.296875 0.28125 -0.296875 L 0.28125 0 L 1.390625 -0.03125 C 1.78125 -0.03125 2.25 -0.03125 2.640625 0 L 2.640625 -0.296875 L 2.4375 -0.296875 C 1.703125 -0.296875 1.6875 -0.40625 1.6875 -0.765625 L 1.6875 -2.28125 C 1.6875 -3.25 2.109375 -4.125 2.84375 -4.125 C 2.921875 -4.125 2.9375 -4.125 2.953125 -4.125 C 2.921875 -4.109375 2.734375 -3.984375 2.734375 -3.734375 C 2.734375 -3.453125 2.9375 -3.3125 3.15625 -3.3125 C 3.328125 -3.3125 3.578125 -3.4375 3.578125 -3.75 Z M 3.578125 -3.75 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 7.71875 -0.078125 C 7.71875 -0.078125 7.71875 -0.109375 7.671875 -0.203125 L 4.34375 -6.859375 C 4.28125 -6.984375 4.25 -7.03125 4.09375 -7.03125 C 3.921875 -7.03125 3.90625 -6.984375 3.828125 -6.859375 L 0.515625 -0.203125 C 0.46875 -0.109375 0.46875 -0.078125 0.46875 -0.078125 C 0.46875 0 0.515625 0 0.671875 0 L 7.5 0 C 7.65625 0 7.71875 0 7.71875 -0.078125 Z M 6.421875 -0.75 L 1.125 -0.75 L 3.78125 -6.046875 Z M 6.421875 -0.75 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 3.953125 -5.203125 L 2.453125 -6.796875 L 0.96875 -5.203125 L 1.09375 -5.078125 L 2.453125 -6.125 L 3.828125 -5.078125 Z M 3.953125 -5.203125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-9">
|
||||
<path style="stroke:none;" d="M 4.09375 -6.25 L 3.9375 -6.390625 C 3.9375 -6.390625 3.5625 -5.921875 3.140625 -5.921875 C 2.90625 -5.921875 2.65625 -6.078125 2.5 -6.171875 C 2.234375 -6.328125 2.046875 -6.390625 1.890625 -6.390625 C 1.515625 -6.390625 1.328125 -6.1875 0.828125 -5.625 L 0.984375 -5.484375 C 0.984375 -5.484375 1.359375 -5.953125 1.78125 -5.953125 C 2.015625 -5.953125 2.265625 -5.8125 2.421875 -5.703125 C 2.6875 -5.546875 2.875 -5.484375 3.03125 -5.484375 C 3.40625 -5.484375 3.59375 -5.703125 4.09375 -6.25 Z M 4.09375 -6.25 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<path style="stroke:none;" d="M 8 -2.953125 C 8 -3.171875 7.8125 -3.171875 7.640625 -3.171875 L 4.484375 -3.171875 L 4.484375 -6.328125 C 4.484375 -6.5 4.484375 -6.6875 4.28125 -6.6875 C 4.0625 -6.6875 4.0625 -6.5 4.0625 -6.328125 L 4.0625 -3.171875 L 0.921875 -3.171875 C 0.75 -3.171875 0.546875 -3.171875 0.546875 -2.96875 C 0.546875 -2.765625 0.734375 -2.765625 0.921875 -2.765625 L 4.0625 -2.765625 L 4.0625 0.390625 C 4.0625 0.5625 4.0625 0.765625 4.265625 0.765625 C 4.484375 0.765625 4.484375 0.578125 4.484375 0.390625 L 4.484375 -2.765625 L 7.640625 -2.765625 C 7.796875 -2.765625 8 -2.765625 8 -2.953125 Z M 8 -2.953125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-1">
|
||||
<path style="stroke:none;" d="M 8.65625 -6.609375 C 8.65625 -6.609375 8.65625 -6.71875 8.53125 -6.71875 C 8.203125 -6.71875 7.859375 -6.6875 7.53125 -6.6875 C 7.203125 -6.6875 6.859375 -6.71875 6.53125 -6.71875 C 6.484375 -6.71875 6.359375 -6.71875 6.359375 -6.515625 C 6.359375 -6.40625 6.453125 -6.40625 6.53125 -6.40625 C 7.09375 -6.390625 7.203125 -6.1875 7.203125 -5.96875 C 7.203125 -5.953125 7.1875 -5.796875 7.171875 -5.765625 L 6.078125 -1.390625 L 3.90625 -6.53125 C 3.828125 -6.703125 3.8125 -6.71875 3.59375 -6.71875 L 2.265625 -6.71875 C 2.078125 -6.71875 1.984375 -6.71875 1.984375 -6.515625 C 1.984375 -6.40625 2.078125 -6.40625 2.265625 -6.40625 C 2.3125 -6.40625 2.921875 -6.40625 2.921875 -6.3125 L 1.609375 -1.046875 C 1.515625 -0.65625 1.34375 -0.328125 0.546875 -0.296875 C 0.484375 -0.296875 0.390625 -0.296875 0.390625 -0.109375 C 0.390625 -0.046875 0.4375 0 0.515625 0 C 0.828125 0 1.171875 -0.03125 1.5 -0.03125 C 1.828125 -0.03125 2.1875 0 2.5 0 C 2.5625 0 2.6875 0 2.6875 -0.203125 C 2.6875 -0.296875 2.59375 -0.296875 2.484375 -0.296875 C 1.921875 -0.328125 1.84375 -0.546875 1.84375 -0.734375 C 1.84375 -0.8125 1.84375 -0.859375 1.875 -0.96875 L 3.171875 -6.15625 C 3.21875 -6.09375 3.21875 -6.078125 3.265625 -5.96875 L 5.703125 -0.1875 C 5.78125 -0.015625 5.8125 0 5.890625 0 C 6 0 6 -0.03125 6.046875 -0.203125 L 7.4375 -5.6875 C 7.53125 -6.078125 7.703125 -6.375 8.484375 -6.40625 C 8.546875 -6.40625 8.65625 -6.421875 8.65625 -6.609375 Z M 8.65625 -6.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 10.296875 -6.609375 C 10.296875 -6.640625 10.265625 -6.71875 10.1875 -6.71875 C 9.953125 -6.71875 9.671875 -6.6875 9.421875 -6.6875 C 9.09375 -6.6875 8.734375 -6.71875 8.40625 -6.71875 C 8.34375 -6.71875 8.21875 -6.71875 8.21875 -6.53125 C 8.21875 -6.421875 8.3125 -6.40625 8.359375 -6.40625 C 8.59375 -6.390625 8.9375 -6.3125 8.9375 -6.03125 C 8.9375 -5.921875 8.890625 -5.84375 8.8125 -5.703125 L 6.15625 -1.078125 L 5.796875 -5.953125 C 5.78125 -6.140625 5.765625 -6.390625 6.484375 -6.40625 C 6.65625 -6.40625 6.75 -6.40625 6.75 -6.609375 C 6.75 -6.703125 6.640625 -6.71875 6.609375 -6.71875 C 6.21875 -6.71875 5.796875 -6.6875 5.40625 -6.6875 C 5.171875 -6.6875 4.59375 -6.71875 4.375 -6.71875 C 4.3125 -6.71875 4.1875 -6.71875 4.1875 -6.515625 C 4.1875 -6.40625 4.28125 -6.40625 4.421875 -6.40625 C 4.859375 -6.40625 4.921875 -6.34375 4.9375 -6.15625 L 5 -5.40625 L 2.515625 -1.078125 L 2.140625 -6.046875 C 2.140625 -6.171875 2.140625 -6.390625 2.890625 -6.40625 C 2.984375 -6.40625 3.09375 -6.40625 3.09375 -6.609375 C 3.09375 -6.71875 2.953125 -6.71875 2.953125 -6.71875 C 2.5625 -6.71875 2.15625 -6.6875 1.75 -6.6875 C 1.40625 -6.6875 1.046875 -6.71875 0.71875 -6.71875 C 0.671875 -6.71875 0.546875 -6.71875 0.546875 -6.53125 C 0.546875 -6.40625 0.625 -6.40625 0.78125 -6.40625 C 1.28125 -6.40625 1.28125 -6.3125 1.3125 -6.046875 L 1.75 -0.046875 C 1.765625 0.140625 1.765625 0.21875 1.90625 0.21875 C 2.03125 0.21875 2.046875 0.15625 2.140625 0.015625 L 5.03125 -5 L 5.390625 -0.046875 C 5.421875 0.171875 5.4375 0.21875 5.546875 0.21875 C 5.6875 0.21875 5.734375 0.125 5.78125 0.03125 L 9.015625 -5.578125 C 9.265625 -6 9.5 -6.359375 10.109375 -6.40625 C 10.203125 -6.421875 10.296875 -6.421875 10.296875 -6.609375 Z M 10.296875 -6.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-3">
|
||||
<path style="stroke:none;" d="M 7.09375 -2.578125 C 7.09375 -2.640625 7.03125 -2.6875 6.953125 -2.6875 C 6.734375 -2.6875 6.15625 -2.65625 5.921875 -2.65625 L 4.546875 -2.6875 C 4.46875 -2.6875 4.34375 -2.6875 4.34375 -2.484375 C 4.34375 -2.375 4.421875 -2.375 4.640625 -2.375 C 4.640625 -2.375 4.9375 -2.375 5.15625 -2.359375 C 5.421875 -2.328125 5.46875 -2.296875 5.46875 -2.171875 C 5.46875 -2.078125 5.359375 -1.640625 5.265625 -1.28125 C 4.984375 -0.203125 3.703125 -0.09375 3.359375 -0.09375 C 2.421875 -0.09375 1.390625 -0.65625 1.390625 -2.15625 C 1.390625 -2.453125 1.484375 -4.078125 2.515625 -5.359375 C 3.046875 -6.03125 4 -6.625 4.96875 -6.625 C 5.96875 -6.625 6.5625 -5.875 6.5625 -4.734375 C 6.5625 -4.328125 6.53125 -4.328125 6.53125 -4.21875 C 6.53125 -4.125 6.640625 -4.125 6.671875 -4.125 C 6.796875 -4.125 6.796875 -4.140625 6.84375 -4.328125 L 7.46875 -6.828125 C 7.46875 -6.859375 7.453125 -6.921875 7.359375 -6.921875 C 7.328125 -6.921875 7.328125 -6.921875 7.21875 -6.8125 L 6.53125 -6.046875 C 6.4375 -6.1875 5.984375 -6.921875 4.890625 -6.921875 C 2.703125 -6.921875 0.484375 -4.75 0.484375 -2.484375 C 0.484375 -0.90625 1.578125 0.21875 3.171875 0.21875 C 3.609375 0.21875 4.046875 0.125 4.40625 -0.015625 C 4.890625 -0.21875 5.078125 -0.421875 5.265625 -0.625 C 5.34375 -0.375 5.609375 -0.015625 5.703125 -0.015625 C 5.75 -0.015625 5.765625 -0.046875 5.765625 -0.046875 C 5.78125 -0.0625 5.890625 -0.4375 5.9375 -0.65625 L 6.125 -1.40625 C 6.15625 -1.578125 6.21875 -1.734375 6.25 -1.90625 C 6.359375 -2.34375 6.375 -2.375 6.921875 -2.375 C 6.984375 -2.375 7.09375 -2.390625 7.09375 -2.578125 Z M 7.09375 -2.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-4">
|
||||
<path style="stroke:none;" d="M 4.875 -1.40625 C 4.875 -1.5 4.78125 -1.5 4.75 -1.5 C 4.671875 -1.5 4.65625 -1.46875 4.625 -1.390625 C 4.3125 -0.34375 3.640625 -0.109375 3.328125 -0.109375 C 2.9375 -0.109375 2.78125 -0.421875 2.78125 -0.75 C 2.78125 -0.96875 2.84375 -1.1875 2.953125 -1.625 L 3.28125 -2.96875 C 3.34375 -3.21875 3.5625 -4.125 4.25 -4.125 C 4.3125 -4.125 4.546875 -4.125 4.75 -4 C 4.46875 -3.953125 4.28125 -3.703125 4.28125 -3.46875 C 4.28125 -3.3125 4.390625 -3.125 4.65625 -3.125 C 4.859375 -3.125 5.171875 -3.296875 5.171875 -3.703125 C 5.171875 -4.203125 4.59375 -4.34375 4.265625 -4.34375 C 3.703125 -4.34375 3.34375 -3.828125 3.234375 -3.59375 C 2.984375 -4.25 2.453125 -4.34375 2.171875 -4.34375 C 1.15625 -4.34375 0.59375 -3.078125 0.59375 -2.828125 C 0.59375 -2.734375 0.703125 -2.734375 0.703125 -2.734375 C 0.78125 -2.734375 0.8125 -2.75 0.828125 -2.84375 C 1.171875 -3.875 1.8125 -4.125 2.15625 -4.125 C 2.34375 -4.125 2.6875 -4.046875 2.6875 -3.46875 C 2.6875 -3.171875 2.515625 -2.5 2.15625 -1.125 C 2 -0.515625 1.65625 -0.109375 1.21875 -0.109375 C 1.15625 -0.109375 0.9375 -0.109375 0.734375 -0.234375 C 0.96875 -0.28125 1.1875 -0.484375 1.1875 -0.765625 C 1.1875 -1.03125 0.96875 -1.109375 0.828125 -1.109375 C 0.53125 -1.109375 0.28125 -0.859375 0.28125 -0.546875 C 0.28125 -0.09375 0.78125 0.109375 1.203125 0.109375 C 1.859375 0.109375 2.21875 -0.578125 2.234375 -0.640625 C 2.359375 -0.28125 2.71875 0.109375 3.296875 0.109375 C 4.3125 0.109375 4.875 -1.15625 4.875 -1.40625 Z M 4.875 -1.40625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-5">
|
||||
<path style="stroke:none;" d="M 5.609375 -1.40625 C 5.609375 -1.5 5.515625 -1.5 5.5 -1.5 C 5.390625 -1.5 5.390625 -1.46875 5.34375 -1.328125 C 5.15625 -0.65625 4.828125 -0.109375 4.34375 -0.109375 C 4.171875 -0.109375 4.109375 -0.203125 4.109375 -0.4375 C 4.109375 -0.671875 4.203125 -0.90625 4.28125 -1.125 C 4.46875 -1.65625 4.890625 -2.734375 4.890625 -3.296875 C 4.890625 -3.953125 4.46875 -4.34375 3.75 -4.34375 C 2.875 -4.34375 2.390625 -3.71875 2.21875 -3.484375 C 2.171875 -4.046875 1.765625 -4.34375 1.3125 -4.34375 C 0.859375 -4.34375 0.671875 -3.953125 0.578125 -3.78125 C 0.421875 -3.453125 0.28125 -2.875 0.28125 -2.828125 C 0.28125 -2.734375 0.40625 -2.734375 0.40625 -2.734375 C 0.5 -2.734375 0.515625 -2.734375 0.5625 -2.953125 C 0.734375 -3.65625 0.9375 -4.125 1.28125 -4.125 C 1.484375 -4.125 1.59375 -4 1.59375 -3.671875 C 1.59375 -3.46875 1.5625 -3.359375 1.4375 -2.84375 L 0.859375 -0.578125 C 0.828125 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.90625 0.109375 1.0625 0.109375 C 1.171875 0.109375 1.359375 0.03125 1.421875 -0.171875 C 1.4375 -0.1875 1.546875 -0.65625 1.609375 -0.890625 L 1.828125 -1.78125 C 1.890625 -2 1.953125 -2.21875 2 -2.4375 L 2.125 -2.921875 C 2.265625 -3.234375 2.796875 -4.125 3.71875 -4.125 C 4.171875 -4.125 4.25 -3.765625 4.25 -3.4375 C 4.25 -2.828125 3.78125 -1.578125 3.609375 -1.15625 C 3.53125 -0.921875 3.515625 -0.8125 3.515625 -0.703125 C 3.515625 -0.234375 3.859375 0.109375 4.328125 0.109375 C 5.25 0.109375 5.609375 -1.328125 5.609375 -1.40625 Z M 5.609375 -1.40625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-6">
|
||||
<path style="stroke:none;" d="M 4.59375 -3.65625 C 4.59375 -4.1875 4.34375 -4.34375 4.171875 -4.34375 C 3.921875 -4.34375 3.6875 -4.09375 3.6875 -3.875 C 3.6875 -3.75 3.734375 -3.6875 3.84375 -3.578125 C 4.046875 -3.375 4.171875 -3.125 4.171875 -2.765625 C 4.171875 -2.359375 3.578125 -0.109375 2.421875 -0.109375 C 1.921875 -0.109375 1.703125 -0.453125 1.703125 -0.96875 C 1.703125 -1.515625 1.96875 -2.234375 2.265625 -3.046875 C 2.34375 -3.21875 2.390625 -3.34375 2.390625 -3.53125 C 2.390625 -3.984375 2.078125 -4.34375 1.578125 -4.34375 C 0.65625 -4.34375 0.28125 -2.921875 0.28125 -2.828125 C 0.28125 -2.734375 0.40625 -2.734375 0.40625 -2.734375 C 0.5 -2.734375 0.515625 -2.75 0.5625 -2.90625 C 0.84375 -3.90625 1.265625 -4.125 1.546875 -4.125 C 1.625 -4.125 1.796875 -4.125 1.796875 -3.8125 C 1.796875 -3.5625 1.703125 -3.296875 1.625 -3.125 C 1.203125 -1.984375 1.078125 -1.53125 1.078125 -1.109375 C 1.078125 -0.046875 1.9375 0.109375 2.390625 0.109375 C 4.046875 0.109375 4.59375 -3.140625 4.59375 -3.65625 Z M 4.59375 -3.65625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-1">
|
||||
<path style="stroke:none;" d="M 2.234375 -4.296875 C 2.234375 -4.40625 2.140625 -4.5625 1.953125 -4.5625 C 1.765625 -4.5625 1.5625 -4.375 1.5625 -4.1875 C 1.5625 -4.0625 1.65625 -3.921875 1.84375 -3.921875 C 2.046875 -3.921875 2.234375 -4.109375 2.234375 -4.296875 Z M 2.40625 -0.984375 C 2.40625 -1.078125 2.3125 -1.078125 2.296875 -1.078125 C 2.203125 -1.078125 2.1875 -1.03125 2.171875 -0.953125 C 2 -0.40625 1.703125 -0.125 1.4375 -0.125 C 1.296875 -0.125 1.265625 -0.21875 1.265625 -0.359375 C 1.265625 -0.515625 1.3125 -0.65625 1.375 -0.796875 L 1.59375 -1.359375 L 1.9375 -2.234375 C 1.953125 -2.296875 1.96875 -2.375 1.96875 -2.453125 C 1.96875 -2.765625 1.703125 -3.03125 1.3125 -3.03125 C 0.640625 -3.03125 0.328125 -2.09375 0.328125 -1.984375 C 0.328125 -1.890625 0.421875 -1.890625 0.4375 -1.890625 C 0.53125 -1.890625 0.546875 -1.921875 0.5625 -2 C 0.75 -2.59375 1.046875 -2.84375 1.296875 -2.84375 C 1.40625 -2.84375 1.46875 -2.78125 1.46875 -2.59375 C 1.46875 -2.4375 1.4375 -2.34375 1.265625 -1.90625 L 0.828125 -0.796875 C 0.796875 -0.71875 0.765625 -0.625 0.765625 -0.515625 C 0.765625 -0.1875 1.03125 0.0625 1.421875 0.0625 C 2.109375 0.0625 2.40625 -0.875 2.40625 -0.984375 Z M 2.40625 -0.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-1">
|
||||
<path style="stroke:none;" d="M 5.390625 -1.71875 C 5.390625 -1.890625 5.234375 -1.890625 5.140625 -1.890625 L 1 -1.890625 C 0.90625 -1.890625 0.75 -1.890625 0.75 -1.71875 C 0.75 -1.546875 0.90625 -1.546875 1 -1.546875 L 5.140625 -1.546875 C 5.21875 -1.546875 5.390625 -1.546875 5.390625 -1.71875 Z M 5.390625 -1.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-1">
|
||||
<path style="stroke:none;" d="M 3.25 0 L 3.25 -0.25 L 2.984375 -0.25 C 2.296875 -0.25 2.296875 -0.34375 2.296875 -0.5625 L 2.296875 -4.375 C 2.296875 -4.5625 2.296875 -4.5625 2.09375 -4.5625 C 1.65625 -4.125 1.03125 -4.125 0.75 -4.125 L 0.75 -3.875 C 0.921875 -3.875 1.375 -3.875 1.75 -4.0625 L 1.75 -0.5625 C 1.75 -0.34375 1.75 -0.25 1.0625 -0.25 L 0.796875 -0.25 L 0.796875 0 L 2.015625 -0.03125 Z M 3.25 0 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
<clipPath id="clip1">
|
||||
<path d="M 16 34 L 58 34 L 58 69.132812 L 16 69.132812 Z M 16 34 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip2">
|
||||
<path d="M 104 34 L 146 34 L 146 69.132812 L 104 69.132812 Z M 104 34 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip3">
|
||||
<path d="M 1.265625 54 L 27 54 L 27 56 L 1.265625 56 Z M 1.265625 54 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip4">
|
||||
<path d="M 10 39 L 43 39 L 43 69.132812 L 10 69.132812 Z M 10 39 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip5">
|
||||
<path d="M 98 39 L 131 39 L 131 69.132812 L 98 69.132812 Z M 98 39 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip6">
|
||||
<path d="M 120 39 L 153 39 L 153 69.132812 L 120 69.132812 Z M 120 39 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip7">
|
||||
<path d="M 163 39 L 196 39 L 196 69.132812 L 163 69.132812 Z M 163 39 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip8">
|
||||
<path d="M 208 39 L 229.664062 39 L 229.664062 69.132812 L 208 69.132812 Z M 208 39 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<path style="fill-rule:nonzero;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M -16.936185 -13.506804 L 132.548617 -13.506804 L 132.548617 54.557432 L -16.936185 54.557432 Z M -16.936185 -13.506804 " transform="matrix(0.986775,0,0,-0.986775,37.102823,54.820266)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="136.683186" y="11.033127"/>
|
||||
<use xlink:href="#glyph0-2" x="142.145201" y="11.033127"/>
|
||||
<use xlink:href="#glyph0-3" x="146.51501" y="11.033127"/>
|
||||
<use xlink:href="#glyph0-4" x="151.977026" y="11.033127"/>
|
||||
<use xlink:href="#glyph0-5" x="155.855292" y="11.033127"/>
|
||||
<use xlink:href="#glyph0-6" x="160.770713" y="11.033127"/>
|
||||
</g>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 43.984375 54.820312 C 43.984375 51.019531 40.902344 47.9375 37.101562 47.9375 C 33.300781 47.9375 30.222656 51.019531 30.222656 54.820312 C 30.222656 58.621094 33.300781 61.703125 37.101562 61.703125 C 40.902344 61.703125 43.984375 58.621094 43.984375 54.820312 Z M 43.984375 54.820312 "/>
|
||||
<g clip-path="url(#clip1)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.973783 -0.0000475657 C 6.973783 3.851674 3.850445 6.975013 -0.00127689 6.975013 C -3.852999 6.975013 -6.972378 3.851674 -6.972378 -0.0000475657 C -6.972378 -3.851769 -3.852999 -6.975108 -0.00127689 -6.975108 C 3.850445 -6.975108 6.973783 -3.851769 6.973783 -0.0000475657 Z M 6.973783 -0.0000475657 " transform="matrix(0.986775,0,0,-0.986775,37.102823,54.820266)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="32.823181" y="57.6977"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -11.338719 21.645599 L 11.340123 21.645599 L 11.340123 38.651761 L -11.338719 38.651761 Z M -11.338719 21.645599 " transform="matrix(0.986775,0,0,-0.986775,37.102823,54.820266)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="31.517678" y="27.69087"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="39.415822" y="29.165111"/>
|
||||
</g>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 59.597656 54.820312 C 59.597656 53.734375 58.714844 52.855469 57.628906 52.855469 C 56.542969 52.855469 55.664062 53.734375 55.664062 54.820312 C 55.664062 55.90625 56.542969 56.785156 57.628906 56.785156 C 58.714844 56.785156 59.597656 55.90625 59.597656 54.820312 Z M 59.597656 54.820312 "/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 30.147451 10.763397 L 52.826293 10.763397 L 52.826293 27.773518 L 30.147451 27.773518 Z M 30.147451 10.763397 " transform="matrix(0.986775,0,0,-0.986775,37.102823,54.820266)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="71.763282" y="38.428952"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="81.047845" y="39.903193"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 62.326942 10.763397 L 85.005784 10.763397 L 85.005784 27.773518 L 62.326942 27.773518 Z M 62.326942 10.763397 " transform="matrix(0.986775,0,0,-0.986775,37.102823,54.820266)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="104.061403" y="38.589796"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="112.253606" y="40.064037"/>
|
||||
</g>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 131.949219 54.820312 C 131.949219 51.019531 128.867188 47.9375 125.066406 47.9375 C 121.265625 47.9375 118.1875 51.019531 118.1875 54.820312 C 118.1875 58.621094 121.265625 61.703125 125.066406 61.703125 C 128.867188 61.703125 131.949219 58.621094 131.949219 54.820312 Z M 131.949219 54.820312 "/>
|
||||
<g clip-path="url(#clip2)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 96.117585 -0.0000475657 C 96.117585 3.851674 92.994247 6.975013 89.142525 6.975013 C 85.290803 6.975013 82.171424 3.851674 82.171424 -0.0000475657 C 82.171424 -3.851769 85.290803 -6.975108 89.142525 -6.975108 C 92.994247 -6.975108 96.117585 -3.851769 96.117585 -0.0000475657 Z M 96.117585 -0.0000475657 " transform="matrix(0.986775,0,0,-0.986775,37.102823,54.820266)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="120.787233" y="57.6977"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 105.11945 -8.760438 L 127.798292 -8.760438 L 127.798292 8.760343 L 105.11945 8.760343 Z M 105.11945 -8.760438 " transform="matrix(0.986775,0,0,-0.986775,37.102823,54.820266)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="148.745519" y="56.226419"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="146.519356" y="58.711118"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="154.248762" y="60.185359"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.636384 -9.401732 L 173.805187 -9.401732 L 173.805187 9.401637 L 148.636384 9.401637 Z M 148.636384 -9.401732 " transform="matrix(0.986775,0,0,-0.986775,37.102823,54.820266)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="189.275315" y="55.59291"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="187.048164" y="58.078595"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="194.778557" y="53.872962"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-1" x="200.922216" y="53.872962"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="194.778557" y="60.818869"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip3)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -11.607904 -0.0000475657 L -35.319941 -0.0000475657 " transform="matrix(0.986775,0,0,-0.986775,37.102823,54.820266)"/>
|
||||
</g>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 28.820312 54.820312 L 24.433594 53.160156 L 25.894531 54.820312 L 24.433594 56.480469 Z M 28.820312 54.820312 "/>
|
||||
<g clip-path="url(#clip4)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052453 -0.0000475657 L 1.606941 1.682359 L 3.087458 -0.0000475657 L 1.606941 -1.682454 Z M 6.052453 -0.0000475657 " transform="matrix(0.986775,0,0,-0.986775,22.847906,54.820266)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-4" x="6.018434" y="51.051773"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.973783 -0.0000475657 L 77.535898 -0.0000475657 " transform="matrix(0.986775,0,0,-0.986775,37.102823,54.820266)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 116.785156 54.820312 L 112.398438 53.160156 L 113.859375 54.820312 L 112.398438 56.480469 Z M 116.785156 54.820312 "/>
|
||||
<g clip-path="url(#clip5)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052405 -0.0000475657 L 1.606892 1.682359 L 3.08741 -0.0000475657 L 1.606892 -1.682454 Z M 6.052405 -0.0000475657 " transform="matrix(0.986775,0,0,-0.986775,110.812797,54.820266)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 20.801187 2.489914 L 20.801187 19.266478 L 25.0171 19.266478 " transform="matrix(0.986775,0,0,-0.986775,37.102823,54.820266)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052546 -0.00108223 L 1.607034 1.681324 L 3.087552 -0.00108223 L 1.607034 -1.683489 Z M 6.052546 -0.00108223 " transform="matrix(0.986775,0,0,-0.986775,58.988438,35.807526)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 53.325077 19.266478 L 57.196591 19.266478 " transform="matrix(0.986775,0,0,-0.986775,37.102823,54.820266)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054118 -0.00108223 L 1.608605 1.681324 L 3.089123 -0.00108223 L 1.608605 -1.683489 Z M 6.054118 -0.00108223 " transform="matrix(0.986775,0,0,-0.986775,90.740794,35.807526)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 85.504568 19.266478 L 89.142525 19.266478 L 89.142525 11.606579 " transform="matrix(0.986775,0,0,-0.986775,37.102823,54.820266)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053787 -0.00131498 L 1.608275 1.681092 L 3.088793 -0.00131498 L 1.608275 -1.683722 Z M 6.053787 -0.00131498 " transform="matrix(0,0.986775,0.986775,0,125.067704,40.565339)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 96.117585 -0.0000475657 L 99.9891 -0.0000475657 " transform="matrix(0.986775,0,0,-0.986775,37.102823,54.820266)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 138.941406 54.820312 L 134.554688 53.160156 L 136.015625 54.820312 L 134.554688 56.480469 Z M 138.941406 54.820312 "/>
|
||||
<g clip-path="url(#clip6)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053686 -0.0000475657 L 1.608174 1.682359 L 3.088692 -0.0000475657 L 1.608174 -1.682454 Z M 6.053686 -0.0000475657 " transform="matrix(0.986775,0,0,-0.986775,132.967782,54.820266)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00127689 21.146815 L -0.00127689 11.606579 " transform="matrix(0.986775,0,0,-0.986775,37.102823,54.820266)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053787 -0.00127689 L 1.608275 1.68113 L 3.088793 -0.00127689 L 1.608275 -1.683684 Z M 6.053787 -0.00127689 " transform="matrix(0,0.986775,0.986775,0,37.102823,40.565339)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="24.161273" y="42.695765"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="30.062185" y="44.170007"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00127689 43.786071 L -0.00127689 50.491946 " transform="matrix(0.986775,0,0,-0.986775,37.102823,54.820266)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052216 -0.00127689 L 1.610662 1.68113 L 3.087222 -0.00127689 L 1.610662 -1.683684 Z M 6.052216 -0.00127689 " transform="matrix(0,0.986775,0.986775,0,37.102823,8.812983)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-9" x="24.653674" y="10.943331"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="24.161273" y="10.943331"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="30.062185" y="12.418559"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.297077 -0.0000475657 L 143.506033 -0.0000475657 " transform="matrix(0.986775,0,0,-0.986775,37.102823,54.820266)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 181.882812 54.820312 L 177.496094 53.160156 L 178.957031 54.820312 L 177.496094 56.480469 Z M 181.882812 54.820312 "/>
|
||||
<g clip-path="url(#clip7)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054139 -0.0000475657 L 1.608627 1.682359 L 3.089145 -0.0000475657 L 1.608627 -1.682454 Z M 6.054139 -0.0000475657 " transform="matrix(0.986775,0,0,-0.986775,175.908741,54.820266)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-6" x="171.4739" y="49.577532"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="176.239035" y="51.051773"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 174.303971 -0.0000475657 L 189.512928 -0.0000475657 " transform="matrix(0.986775,0,0,-0.986775,37.102823,54.820266)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 227.28125 54.820312 L 222.898438 53.160156 L 224.355469 54.820312 L 222.898438 56.480469 Z M 227.28125 54.820312 "/>
|
||||
<g clip-path="url(#clip8)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051734 -0.0000475657 L 1.61018 1.682359 L 3.08674 -0.0000475657 L 1.61018 -1.682454 Z M 6.051734 -0.0000475657 " transform="matrix(0.986775,0,0,-0.986775,221.309552,54.820266)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="216.645483" y="49.577532"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-4" x="216.020855" y="49.577532"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="221.639549" y="51.051773"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 36 KiB |
BIN
journal/figs/sensor_model_uncertainty.pdf
Normal file
BIN
journal/figs/sensor_model_uncertainty.png
Normal file
After Width: | Height: | Size: 12 KiB |
191
journal/figs/sensor_model_uncertainty.svg
Normal file
@@ -0,0 +1,191 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="192.347pt" height="48.026pt" viewBox="0 0 192.347 48.026" version="1.2">
|
||||
<defs>
|
||||
<g>
|
||||
<symbol overflow="visible" id="glyph0-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<path style="stroke:none;" d="M 4.875 -1.8125 C 4.875 -2.796875 4.234375 -3.59375 3.40625 -3.796875 L 2.15625 -4.09375 C 1.546875 -4.234375 1.171875 -4.765625 1.171875 -5.328125 C 1.171875 -6.015625 1.703125 -6.609375 2.46875 -6.609375 C 4.09375 -6.609375 4.3125 -5.015625 4.359375 -4.578125 C 4.375 -4.515625 4.375 -4.453125 4.484375 -4.453125 C 4.609375 -4.453125 4.609375 -4.5 4.609375 -4.6875 L 4.609375 -6.65625 C 4.609375 -6.8125 4.609375 -6.890625 4.5 -6.890625 C 4.4375 -6.890625 4.421875 -6.875 4.359375 -6.765625 L 4.015625 -6.203125 C 3.71875 -6.484375 3.328125 -6.890625 2.453125 -6.890625 C 1.375 -6.890625 0.546875 -6.03125 0.546875 -4.984375 C 0.546875 -4.1875 1.0625 -3.46875 1.828125 -3.203125 C 1.9375 -3.171875 2.4375 -3.046875 3.109375 -2.875 C 3.375 -2.8125 3.671875 -2.75 3.953125 -2.390625 C 4.15625 -2.125 4.25 -1.8125 4.25 -1.484375 C 4.25 -0.796875 3.765625 -0.09375 2.9375 -0.09375 C 2.65625 -0.09375 1.921875 -0.140625 1.390625 -0.609375 C 0.828125 -1.140625 0.796875 -1.765625 0.796875 -2.125 C 0.78125 -2.21875 0.703125 -2.21875 0.671875 -2.21875 C 0.546875 -2.21875 0.546875 -2.15625 0.546875 -1.96875 L 0.546875 -0.015625 C 0.546875 0.140625 0.546875 0.21875 0.65625 0.21875 C 0.71875 0.21875 0.734375 0.203125 0.796875 0.09375 C 0.796875 0.09375 0.828125 0.046875 1.15625 -0.46875 C 1.453125 -0.140625 2.078125 0.21875 2.953125 0.21875 C 4.09375 0.21875 4.875 -0.75 4.875 -1.8125 Z M 4.875 -1.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 4.046875 -1.15625 C 4.046875 -1.265625 3.96875 -1.28125 3.921875 -1.28125 C 3.84375 -1.28125 3.8125 -1.21875 3.796875 -1.140625 C 3.453125 -0.140625 2.578125 -0.140625 2.484375 -0.140625 C 2 -0.140625 1.609375 -0.4375 1.375 -0.796875 C 1.078125 -1.265625 1.078125 -1.90625 1.078125 -2.25 L 3.8125 -2.25 C 4.03125 -2.25 4.046875 -2.25 4.046875 -2.46875 C 4.046875 -3.421875 3.53125 -4.375 2.3125 -4.375 C 1.171875 -4.375 0.28125 -3.375 0.28125 -2.15625 C 0.28125 -0.84375 1.296875 0.109375 2.421875 0.109375 C 3.609375 0.109375 4.046875 -0.984375 4.046875 -1.15625 Z M 3.40625 -2.46875 L 1.09375 -2.46875 C 1.15625 -3.921875 1.96875 -4.15625 2.3125 -4.15625 C 3.3125 -4.15625 3.40625 -2.84375 3.40625 -2.46875 Z M 3.40625 -2.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 5.21875 0 L 5.21875 -0.296875 C 4.71875 -0.296875 4.46875 -0.296875 4.46875 -0.59375 L 4.46875 -2.46875 C 4.46875 -3.296875 4.46875 -3.609375 4.15625 -3.953125 C 4.03125 -4.125 3.703125 -4.3125 3.140625 -4.3125 C 2.421875 -4.3125 1.96875 -3.890625 1.6875 -3.296875 L 1.6875 -4.3125 L 0.3125 -4.203125 L 0.3125 -3.90625 C 1 -3.90625 1.078125 -3.84375 1.078125 -3.359375 L 1.078125 -0.75 C 1.078125 -0.296875 0.96875 -0.296875 0.3125 -0.296875 L 0.3125 0 L 1.421875 -0.03125 L 2.515625 0 L 2.515625 -0.296875 C 1.859375 -0.296875 1.75 -0.296875 1.75 -0.75 L 1.75 -2.546875 C 1.75 -3.5625 2.4375 -4.109375 3.0625 -4.109375 C 3.6875 -4.109375 3.796875 -3.578125 3.796875 -3.015625 L 3.796875 -0.75 C 3.796875 -0.296875 3.6875 -0.296875 3.03125 -0.296875 L 3.03125 0 L 4.125 -0.03125 Z M 5.21875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 3.515625 -1.25 C 3.515625 -1.765625 3.21875 -2.0625 3.109375 -2.171875 C 2.78125 -2.484375 2.40625 -2.5625 2 -2.640625 C 1.453125 -2.75 0.796875 -2.875 0.796875 -3.453125 C 0.796875 -3.796875 1.046875 -4.1875 1.890625 -4.1875 C 2.953125 -4.1875 3.015625 -3.3125 3.03125 -3.015625 C 3.03125 -2.921875 3.140625 -2.921875 3.140625 -2.921875 C 3.265625 -2.921875 3.265625 -2.96875 3.265625 -3.15625 L 3.265625 -4.140625 C 3.265625 -4.3125 3.265625 -4.375 3.171875 -4.375 C 3.109375 -4.375 3.09375 -4.375 2.96875 -4.265625 C 2.9375 -4.21875 2.84375 -4.125 2.796875 -4.109375 C 2.4375 -4.375 2.03125 -4.375 1.890625 -4.375 C 0.6875 -4.375 0.328125 -3.71875 0.328125 -3.171875 C 0.328125 -2.828125 0.484375 -2.5625 0.75 -2.34375 C 1.0625 -2.09375 1.328125 -2.03125 2.03125 -1.890625 C 2.25 -1.859375 3.046875 -1.703125 3.046875 -1 C 3.046875 -0.5 2.703125 -0.109375 1.9375 -0.109375 C 1.125 -0.109375 0.765625 -0.671875 0.59375 -1.5 C 0.5625 -1.625 0.546875 -1.65625 0.453125 -1.65625 C 0.328125 -1.65625 0.328125 -1.59375 0.328125 -1.421875 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.484375 0.09375 0.671875 -0.09375 C 0.6875 -0.109375 0.6875 -0.125 0.875 -0.3125 C 1.296875 0.09375 1.734375 0.109375 1.9375 0.109375 C 3.0625 0.109375 3.515625 -0.546875 3.515625 -1.25 Z M 3.515625 -1.25 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 4.59375 -2.09375 C 4.59375 -3.34375 3.625 -4.375 2.4375 -4.375 C 1.21875 -4.375 0.28125 -3.3125 0.28125 -2.09375 C 0.28125 -0.828125 1.296875 0.109375 2.4375 0.109375 C 3.609375 0.109375 4.59375 -0.84375 4.59375 -2.09375 Z M 3.796875 -2.171875 C 3.796875 -1.8125 3.796875 -1.296875 3.578125 -0.859375 C 3.359375 -0.421875 2.9375 -0.140625 2.4375 -0.140625 C 2.015625 -0.140625 1.59375 -0.34375 1.328125 -0.796875 C 1.078125 -1.21875 1.078125 -1.8125 1.078125 -2.171875 C 1.078125 -2.546875 1.078125 -3.078125 1.3125 -3.5 C 1.578125 -3.953125 2.046875 -4.15625 2.4375 -4.15625 C 2.859375 -4.15625 3.28125 -3.953125 3.53125 -3.53125 C 3.796875 -3.109375 3.796875 -2.546875 3.796875 -2.171875 Z M 3.796875 -2.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 3.5625 -3.71875 C 3.5625 -4.03125 3.25 -4.3125 2.828125 -4.3125 C 2.125 -4.3125 1.765625 -3.65625 1.625 -3.25 L 1.625 -4.3125 L 0.28125 -4.203125 L 0.28125 -3.90625 C 0.953125 -3.90625 1.03125 -3.84375 1.03125 -3.359375 L 1.03125 -0.75 C 1.03125 -0.296875 0.921875 -0.296875 0.28125 -0.296875 L 0.28125 0 L 1.390625 -0.03125 C 1.78125 -0.03125 2.234375 -0.03125 2.625 0 L 2.625 -0.296875 L 2.421875 -0.296875 C 1.703125 -0.296875 1.6875 -0.40625 1.6875 -0.765625 L 1.6875 -2.265625 C 1.6875 -3.234375 2.09375 -4.109375 2.828125 -4.109375 C 2.90625 -4.109375 2.921875 -4.109375 2.9375 -4.09375 C 2.90625 -4.078125 2.71875 -3.96875 2.71875 -3.71875 C 2.71875 -3.4375 2.921875 -3.296875 3.140625 -3.296875 C 3.3125 -3.296875 3.5625 -3.40625 3.5625 -3.71875 Z M 3.5625 -3.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 7.671875 -0.078125 C 7.671875 -0.078125 7.671875 -0.109375 7.625 -0.203125 L 4.3125 -6.8125 C 4.25 -6.9375 4.234375 -7 4.0625 -7 C 3.890625 -7 3.875 -6.9375 3.8125 -6.8125 L 0.515625 -0.203125 C 0.453125 -0.109375 0.453125 -0.078125 0.453125 -0.078125 C 0.453125 0 0.515625 0 0.671875 0 L 7.453125 0 C 7.609375 0 7.671875 0 7.671875 -0.078125 Z M 6.375 -0.75 L 1.109375 -0.75 L 3.75 -6.015625 Z M 6.375 -0.75 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 3.921875 -5.171875 L 2.4375 -6.765625 L 0.953125 -5.171875 L 1.078125 -5.046875 L 2.4375 -6.09375 L 3.796875 -5.046875 Z M 3.921875 -5.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<path style="stroke:none;" d="M 10.234375 -6.5625 C 10.234375 -6.609375 10.203125 -6.671875 10.125 -6.671875 C 9.890625 -6.671875 9.609375 -6.640625 9.359375 -6.640625 C 9.03125 -6.640625 8.671875 -6.671875 8.34375 -6.671875 C 8.296875 -6.671875 8.171875 -6.671875 8.171875 -6.484375 C 8.171875 -6.375 8.25 -6.375 8.3125 -6.375 C 8.546875 -6.359375 8.890625 -6.28125 8.890625 -5.984375 C 8.890625 -5.875 8.84375 -5.796875 8.765625 -5.671875 L 6.125 -1.0625 L 5.765625 -5.90625 C 5.75 -6.109375 5.734375 -6.359375 6.453125 -6.375 C 6.609375 -6.375 6.703125 -6.375 6.703125 -6.5625 C 6.703125 -6.65625 6.609375 -6.671875 6.5625 -6.671875 C 6.171875 -6.671875 5.765625 -6.640625 5.375 -6.640625 C 5.140625 -6.640625 4.578125 -6.671875 4.34375 -6.671875 C 4.28125 -6.671875 4.15625 -6.671875 4.15625 -6.46875 C 4.15625 -6.375 4.265625 -6.375 4.390625 -6.375 C 4.828125 -6.375 4.890625 -6.3125 4.90625 -6.125 L 4.96875 -5.375 L 2.5 -1.0625 L 2.125 -6.015625 C 2.125 -6.140625 2.125 -6.359375 2.875 -6.375 C 2.96875 -6.375 3.078125 -6.375 3.078125 -6.5625 C 3.078125 -6.671875 2.9375 -6.671875 2.9375 -6.671875 C 2.546875 -6.671875 2.140625 -6.640625 1.734375 -6.640625 C 1.390625 -6.640625 1.046875 -6.671875 0.71875 -6.671875 C 0.671875 -6.671875 0.53125 -6.671875 0.53125 -6.484375 C 0.53125 -6.375 0.625 -6.375 0.78125 -6.375 C 1.265625 -6.375 1.28125 -6.28125 1.296875 -6 L 1.734375 -0.046875 C 1.75 0.140625 1.765625 0.21875 1.890625 0.21875 C 2.015625 0.21875 2.046875 0.15625 2.125 0.015625 L 5 -4.96875 L 5.359375 -0.046875 C 5.375 0.171875 5.40625 0.21875 5.515625 0.21875 C 5.640625 0.21875 5.703125 0.125 5.75 0.03125 L 8.953125 -5.53125 C 9.203125 -5.96875 9.4375 -6.3125 10.046875 -6.375 C 10.140625 -6.375 10.234375 -6.375 10.234375 -6.5625 Z M 10.234375 -6.5625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 7.046875 -2.5625 C 7.046875 -2.625 7 -2.671875 6.921875 -2.671875 C 6.6875 -2.671875 6.109375 -2.640625 5.890625 -2.640625 L 4.515625 -2.671875 C 4.4375 -2.671875 4.3125 -2.671875 4.3125 -2.46875 C 4.3125 -2.359375 4.390625 -2.359375 4.609375 -2.359375 C 4.609375 -2.359375 4.90625 -2.359375 5.125 -2.34375 C 5.375 -2.3125 5.4375 -2.28125 5.4375 -2.15625 C 5.4375 -2.078125 5.328125 -1.625 5.21875 -1.265625 C 4.953125 -0.203125 3.6875 -0.09375 3.34375 -0.09375 C 2.40625 -0.09375 1.375 -0.640625 1.375 -2.140625 C 1.375 -2.4375 1.46875 -4.046875 2.5 -5.328125 C 3.03125 -5.984375 3.96875 -6.578125 4.9375 -6.578125 C 5.9375 -6.578125 6.515625 -5.828125 6.515625 -4.703125 C 6.515625 -4.3125 6.484375 -4.296875 6.484375 -4.203125 C 6.484375 -4.109375 6.59375 -4.109375 6.625 -4.109375 C 6.765625 -4.109375 6.765625 -4.125 6.8125 -4.296875 L 7.421875 -6.78125 C 7.421875 -6.8125 7.40625 -6.890625 7.3125 -6.890625 C 7.28125 -6.890625 7.28125 -6.875 7.171875 -6.765625 L 6.484375 -6.015625 C 6.390625 -6.15625 5.953125 -6.890625 4.859375 -6.890625 C 2.6875 -6.890625 0.484375 -4.734375 0.484375 -2.46875 C 0.484375 -0.90625 1.578125 0.21875 3.15625 0.21875 C 3.578125 0.21875 4.03125 0.125 4.375 -0.015625 C 4.859375 -0.21875 5.046875 -0.421875 5.21875 -0.609375 C 5.3125 -0.375 5.5625 -0.015625 5.671875 -0.015625 C 5.71875 -0.015625 5.734375 -0.046875 5.734375 -0.046875 C 5.75 -0.0625 5.84375 -0.4375 5.90625 -0.640625 L 6.078125 -1.390625 C 6.125 -1.5625 6.171875 -1.734375 6.21875 -1.890625 C 6.3125 -2.328125 6.328125 -2.359375 6.890625 -2.359375 C 6.9375 -2.359375 7.046875 -2.375 7.046875 -2.5625 Z M 7.046875 -2.5625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<path style="stroke:none;" d="M 4.84375 -1.390625 C 4.84375 -1.5 4.75 -1.5 4.734375 -1.5 C 4.640625 -1.5 4.625 -1.453125 4.59375 -1.390625 C 4.28125 -0.34375 3.609375 -0.109375 3.296875 -0.109375 C 2.921875 -0.109375 2.765625 -0.421875 2.765625 -0.75 C 2.765625 -0.96875 2.828125 -1.1875 2.9375 -1.609375 L 3.265625 -2.953125 C 3.328125 -3.203125 3.546875 -4.109375 4.234375 -4.109375 C 4.28125 -4.109375 4.515625 -4.109375 4.71875 -3.96875 C 4.4375 -3.921875 4.25 -3.6875 4.25 -3.453125 C 4.25 -3.296875 4.359375 -3.109375 4.625 -3.109375 C 4.828125 -3.109375 5.140625 -3.28125 5.140625 -3.671875 C 5.140625 -4.1875 4.578125 -4.3125 4.234375 -4.3125 C 3.671875 -4.3125 3.328125 -3.796875 3.21875 -3.578125 C 2.96875 -4.21875 2.4375 -4.3125 2.15625 -4.3125 C 1.140625 -4.3125 0.59375 -3.0625 0.59375 -2.8125 C 0.59375 -2.71875 0.703125 -2.71875 0.703125 -2.71875 C 0.78125 -2.71875 0.8125 -2.734375 0.828125 -2.828125 C 1.15625 -3.859375 1.8125 -4.109375 2.140625 -4.109375 C 2.328125 -4.109375 2.671875 -4.015625 2.671875 -3.453125 C 2.671875 -3.140625 2.5 -2.484375 2.140625 -1.125 C 1.984375 -0.515625 1.640625 -0.109375 1.21875 -0.109375 C 1.15625 -0.109375 0.921875 -0.109375 0.71875 -0.234375 C 0.96875 -0.28125 1.1875 -0.484375 1.1875 -0.765625 C 1.1875 -1.03125 0.96875 -1.109375 0.828125 -1.109375 C 0.53125 -1.109375 0.28125 -0.84375 0.28125 -0.53125 C 0.28125 -0.09375 0.765625 0.109375 1.203125 0.109375 C 1.84375 0.109375 2.203125 -0.578125 2.234375 -0.640625 C 2.34375 -0.28125 2.703125 0.109375 3.28125 0.109375 C 4.28125 0.109375 4.84375 -1.15625 4.84375 -1.390625 Z M 4.84375 -1.390625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-4">
|
||||
<path style="stroke:none;" d="M 4.578125 -3.640625 C 4.578125 -4.15625 4.3125 -4.3125 4.140625 -4.3125 C 3.890625 -4.3125 3.65625 -4.0625 3.65625 -3.84375 C 3.65625 -3.71875 3.71875 -3.65625 3.8125 -3.5625 C 4.03125 -3.359375 4.15625 -3.109375 4.15625 -2.75 C 4.15625 -2.34375 3.5625 -0.109375 2.40625 -0.109375 C 1.921875 -0.109375 1.6875 -0.453125 1.6875 -0.953125 C 1.6875 -1.5 1.953125 -2.21875 2.25 -3.03125 C 2.328125 -3.1875 2.375 -3.328125 2.375 -3.515625 C 2.375 -3.953125 2.0625 -4.3125 1.578125 -4.3125 C 0.65625 -4.3125 0.28125 -2.90625 0.28125 -2.8125 C 0.28125 -2.71875 0.40625 -2.71875 0.40625 -2.71875 C 0.5 -2.71875 0.515625 -2.734375 0.5625 -2.890625 C 0.84375 -3.875 1.265625 -4.109375 1.546875 -4.109375 C 1.625 -4.109375 1.78125 -4.109375 1.78125 -3.796875 C 1.78125 -3.546875 1.6875 -3.28125 1.625 -3.109375 C 1.1875 -1.96875 1.0625 -1.53125 1.0625 -1.109375 C 1.0625 -0.046875 1.921875 0.109375 2.375 0.109375 C 4.015625 0.109375 4.578125 -3.125 4.578125 -3.640625 Z M 4.578125 -3.640625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-1">
|
||||
<path style="stroke:none;" d="M 2.21875 -4.265625 C 2.21875 -4.375 2.125 -4.53125 1.9375 -4.53125 C 1.75 -4.53125 1.5625 -4.34375 1.5625 -4.15625 C 1.5625 -4.03125 1.640625 -3.890625 1.828125 -3.890625 C 2.03125 -3.890625 2.21875 -4.078125 2.21875 -4.265625 Z M 2.390625 -0.96875 C 2.390625 -1.0625 2.296875 -1.0625 2.28125 -1.0625 C 2.1875 -1.0625 2.171875 -1.03125 2.15625 -0.953125 C 2 -0.40625 1.6875 -0.125 1.421875 -0.125 C 1.296875 -0.125 1.25 -0.21875 1.25 -0.359375 C 1.25 -0.515625 1.296875 -0.65625 1.359375 -0.796875 L 1.578125 -1.34375 L 1.921875 -2.21875 C 1.9375 -2.28125 1.953125 -2.359375 1.953125 -2.4375 C 1.953125 -2.75 1.6875 -3.015625 1.3125 -3.015625 C 0.640625 -3.015625 0.328125 -2.078125 0.328125 -1.96875 C 0.328125 -1.875 0.421875 -1.875 0.4375 -1.875 C 0.53125 -1.875 0.546875 -1.90625 0.5625 -1.984375 C 0.734375 -2.578125 1.03125 -2.8125 1.296875 -2.8125 C 1.40625 -2.8125 1.46875 -2.765625 1.46875 -2.578125 C 1.46875 -2.421875 1.421875 -2.328125 1.25 -1.890625 L 0.8125 -0.796875 C 0.796875 -0.703125 0.765625 -0.625 0.765625 -0.515625 C 0.765625 -0.1875 1.03125 0.0625 1.40625 0.0625 C 2.09375 0.0625 2.390625 -0.875 2.390625 -0.96875 Z M 2.390625 -0.96875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-1">
|
||||
<path style="stroke:none;" d="M 7.953125 -2.9375 C 7.953125 -3.15625 7.765625 -3.15625 7.578125 -3.15625 L 4.453125 -3.15625 L 4.453125 -6.28125 C 4.453125 -6.453125 4.453125 -6.65625 4.25 -6.65625 C 4.046875 -6.65625 4.046875 -6.46875 4.046875 -6.28125 L 4.046875 -3.15625 L 0.90625 -3.15625 C 0.75 -3.15625 0.546875 -3.15625 0.546875 -2.953125 C 0.546875 -2.734375 0.734375 -2.734375 0.90625 -2.734375 L 4.046875 -2.734375 L 4.046875 0.390625 C 4.046875 0.5625 4.046875 0.75 4.234375 0.75 C 4.453125 0.75 4.453125 0.5625 4.453125 0.390625 L 4.453125 -2.734375 L 7.578125 -2.734375 C 7.75 -2.734375 7.953125 -2.734375 7.953125 -2.9375 Z M 7.953125 -2.9375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-1">
|
||||
<path style="stroke:none;" d="M 5.359375 -1.703125 C 5.359375 -1.875 5.203125 -1.875 5.09375 -1.875 L 0.984375 -1.875 C 0.890625 -1.875 0.734375 -1.875 0.734375 -1.703125 C 0.734375 -1.546875 0.90625 -1.546875 0.984375 -1.546875 L 5.09375 -1.546875 C 5.1875 -1.546875 5.359375 -1.546875 5.359375 -1.703125 Z M 5.359375 -1.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-1">
|
||||
<path style="stroke:none;" d="M 3.234375 0 L 3.234375 -0.25 L 2.96875 -0.25 C 2.28125 -0.25 2.28125 -0.328125 2.28125 -0.5625 L 2.28125 -4.34375 C 2.28125 -4.53125 2.28125 -4.53125 2.078125 -4.53125 C 1.640625 -4.109375 1.03125 -4.09375 0.75 -4.09375 L 0.75 -3.84375 C 0.90625 -3.84375 1.359375 -3.84375 1.734375 -4.046875 L 1.734375 -0.5625 C 1.734375 -0.328125 1.734375 -0.25 1.046875 -0.25 L 0.796875 -0.25 L 0.796875 0 L 2 -0.03125 Z M 3.234375 0 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
<clipPath id="clip1">
|
||||
<path d="M 65 12 L 107 12 L 107 47.070312 L 65 47.070312 Z M 65 12 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip2">
|
||||
<path d="M 59 17 L 92 17 L 92 47.070312 L 59 47.070312 Z M 59 17 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip3">
|
||||
<path d="M 81 17 L 114 17 L 114 47.070312 L 81 47.070312 Z M 81 17 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip4">
|
||||
<path d="M 124 17 L 157 17 L 157 47.070312 L 124 47.070312 Z M 124 17 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip5">
|
||||
<path d="M 169 17 L 190.117188 17 L 190.117188 47.070312 L 169 47.070312 Z M 169 17 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<path style="fill-rule:nonzero;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M -4.25003 -13.508563 L 111.74313 -13.508563 L 111.74313 32.523632 L -4.25003 32.523632 Z M -4.25003 -13.508563 " transform="matrix(0.980122,0,0,-0.980122,19.239768,32.853704)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="97.759338" y="10.959729"/>
|
||||
<use xlink:href="#glyph0-2" x="103.184532" y="10.959729"/>
|
||||
<use xlink:href="#glyph0-3" x="107.524882" y="10.959729"/>
|
||||
<use xlink:href="#glyph0-4" x="112.950076" y="10.959729"/>
|
||||
<use xlink:href="#glyph0-5" x="116.802198" y="10.959729"/>
|
||||
<use xlink:href="#glyph0-6" x="121.684482" y="10.959729"/>
|
||||
</g>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 21.191406 32.855469 C 21.191406 31.773438 20.316406 30.902344 19.238281 30.902344 C 18.160156 30.902344 17.285156 31.773438 17.285156 32.855469 C 17.285156 33.933594 18.160156 34.808594 19.238281 34.808594 C 20.316406 34.808594 21.191406 33.933594 21.191406 32.855469 Z M 21.191406 32.855469 "/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9.344413 10.762958 L 32.021745 10.762958 L 32.021745 27.77295 L 9.344413 27.77295 Z M 9.344413 10.762958 " transform="matrix(0.980122,0,0,-0.980122,19.239768,32.853704)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="33.277082" y="16.57289"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="42.499054" y="18.037193"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 41.523109 10.762958 L 64.200442 10.762958 L 64.200442 27.77295 L 41.523109 27.77295 Z M 41.523109 10.762958 " transform="matrix(0.980122,0,0,-0.980122,19.239768,32.853704)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="65.35747" y="16.73265"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="73.494447" y="18.196953"/>
|
||||
</g>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 93.058594 32.855469 C 93.058594 29.078125 89.996094 26.019531 86.222656 26.019531 C 82.445312 26.019531 79.386719 29.078125 79.386719 32.855469 C 79.386719 36.628906 82.445312 39.6875 86.222656 39.6875 C 89.996094 39.6875 93.058594 36.628906 93.058594 32.855469 Z M 93.058594 32.855469 "/>
|
||||
<g clip-path="url(#clip1)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 75.315921 -0.00180004 C 75.315921 3.852151 72.191312 6.972775 68.341346 6.972775 C 64.487396 6.972775 61.366771 3.852151 61.366771 -0.00180004 C 61.366771 -3.851765 64.487396 -6.97239 68.341346 -6.97239 C 72.191312 -6.97239 75.315921 -3.851765 75.315921 -0.00180004 Z M 75.315921 -0.00180004 " transform="matrix(0.980122,0,0,-0.980122,19.239768,32.853704)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="81.970546" y="35.711742"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84.315116 -8.757881 L 106.992448 -8.757881 L 106.992448 8.758266 L 84.315116 8.758266 Z M 84.315116 -8.757881 " transform="matrix(0.980122,0,0,-0.980122,19.239768,32.853704)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="109.740355" y="34.250379"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="107.529199" y="36.718327"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="115.206498" y="38.18361"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.832478 -9.399542 L 153.004716 -9.399542 L 153.004716 9.399927 L 127.832478 9.399927 Z M 127.832478 -9.399542 " transform="matrix(0.980122,0,0,-0.980122,19.239768,32.853704)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="149.996924" y="33.62114"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="147.784788" y="36.090069"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="155.462087" y="31.912787"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-1" x="161.56531" y="31.912787"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="155.462087" y="38.811869"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.007524 -0.00180004 L 56.731668 -0.00180004 " transform="matrix(0.980122,0,0,-0.980122,19.239768,32.853704)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 77.996094 32.855469 L 73.640625 31.203125 L 75.089844 32.855469 L 73.640625 34.503906 Z M 77.996094 32.855469 "/>
|
||||
<g clip-path="url(#clip2)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053214 -0.00180004 L 1.609413 1.684054 L 3.088023 -0.00180004 L 1.609413 -1.683669 Z M 6.053214 -0.00180004 " transform="matrix(0.980122,0,0,-0.980122,72.063203,32.853704)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="6.312934" y="29.110617"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.0015174 -0.00180004 L -0.0015174 19.267954 L 4.215111 19.267954 " transform="matrix(0.980122,0,0,-0.980122,19.239768,32.853704)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051601 0.000394233 L 1.607801 1.682263 L 3.086411 0.000394233 L 1.607801 -1.681475 Z M 6.051601 0.000394233 " transform="matrix(0.980122,0,0,-0.980122,20.588221,13.969136)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 32.519929 19.267954 L 36.393808 19.267954 " transform="matrix(0.980122,0,0,-0.980122,19.239768,32.853704)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052387 0.000394233 L 1.608587 1.682263 L 3.087197 0.000394233 L 1.608587 -1.681475 Z M 6.052387 0.000394233 " transform="matrix(0.980122,0,0,-0.980122,52.126513,13.969136)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 64.698625 19.267954 L 68.341346 19.267954 L 68.341346 11.607878 " transform="matrix(0.980122,0,0,-0.980122,19.239768,32.853704)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054377 0.000646359 L 1.610577 1.682515 L 3.089187 0.000646359 L 1.610577 -1.681223 Z M 6.054377 0.000646359 " transform="matrix(0,0.980122,0.980122,0,86.222023,18.694875)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 75.315921 -0.00180004 L 79.185814 -0.00180004 " transform="matrix(0.980122,0,0,-0.980122,19.239768,32.853704)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 100 32.855469 L 95.644531 31.203125 L 97.09375 32.855469 L 95.644531 34.503906 Z M 100 32.855469 "/>
|
||||
<g clip-path="url(#clip3)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051454 -0.00180004 L 1.607653 1.684054 L 3.086263 -0.00180004 L 1.607653 -1.683669 Z M 6.051454 -0.00180004 " transform="matrix(0.980122,0,0,-0.980122,94.068834,32.853704)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.490632 -0.00180004 L 122.703176 -0.00180004 " transform="matrix(0.980122,0,0,-0.980122,19.239768,32.853704)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 142.652344 32.855469 L 138.296875 31.203125 L 139.746094 32.855469 L 138.296875 34.503906 Z M 142.652344 32.855469 "/>
|
||||
<g clip-path="url(#clip4)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052336 -0.00180004 L 1.608536 1.684054 L 3.087146 -0.00180004 L 1.608536 -1.683669 Z M 6.052336 -0.00180004 " transform="matrix(0.980122,0,0,-0.980122,136.720313,32.853704)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="132.315515" y="27.646314"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="137.048527" y="29.110617"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.502899 -0.00180004 L 168.711458 -0.00180004 " transform="matrix(0.980122,0,0,-0.980122,19.239768,32.853704)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 187.75 32.855469 L 183.390625 31.203125 L 184.839844 32.855469 L 183.390625 34.503906 Z M 187.75 32.855469 "/>
|
||||
<g clip-path="url(#clip5)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.055294 -0.00180004 L 1.607508 1.684054 L 3.086118 -0.00180004 L 1.607508 -1.683669 Z M 6.055294 -0.00180004 " transform="matrix(0.980122,0,0,-0.980122,181.815071,32.853704)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="177.182581" y="27.646314"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="176.562163" y="27.646314"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="182.14298" y="29.110617"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 28 KiB |
BIN
journal/figs/sensor_noise_H2_time_domain.pdf
Normal file
BIN
journal/figs/sensors_noise.pdf
Normal file
BIN
journal/figs/sensors_nominal_dynamics.pdf
Normal file
BIN
journal/figs/sensors_nominal_dynamics_and_uncertainty.pdf
Normal file
BIN
journal/figs/sensors_uncertainty_weights.pdf
Normal file
BIN
journal/figs/super_sensor_dynamical_uncertainty_H2.pdf
Normal file
BIN
journal/figs/super_sensor_dynamical_uncertainty_Hinf.pdf
Normal file
BIN
journal/figs/super_sensor_dynamical_uncertainty_Htwo_Hinf.pdf
Normal file
BIN
journal/figs/super_sensor_time_domain_h2.pdf
Normal file
BIN
journal/figs/super_sensor_time_domain_h2_hinf.pdf
Normal file
BIN
journal/figs/uncertainty_set_super_sensor.pdf
Normal file
BIN
journal/figs/uncertainty_set_super_sensor.png
Normal file
After Width: | Height: | Size: 24 KiB |
190
journal/figs/uncertainty_set_super_sensor.svg
Normal file
@@ -0,0 +1,190 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="218.962pt" height="104.044pt" viewBox="0 0 218.962 104.044" version="1.2">
|
||||
<defs>
|
||||
<g>
|
||||
<symbol overflow="visible" id="glyph0-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<path style="stroke:none;" d="M 4.140625 0 L 4.140625 -0.3125 L 3.828125 -0.3125 C 2.9375 -0.3125 2.90625 -0.421875 2.90625 -0.78125 L 2.90625 -6.3125 C 2.90625 -6.5625 2.90625 -6.578125 2.671875 -6.578125 C 2.0625 -5.9375 1.1875 -5.9375 0.875 -5.9375 L 0.875 -5.640625 C 1.078125 -5.640625 1.65625 -5.640625 2.171875 -5.890625 L 2.171875 -0.78125 C 2.171875 -0.421875 2.140625 -0.3125 1.25 -0.3125 L 0.9375 -0.3125 L 0.9375 0 C 1.28125 -0.03125 2.140625 -0.03125 2.53125 -0.03125 C 2.9375 -0.03125 3.796875 -0.03125 4.140625 0 Z M 4.140625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 7.125 -2.46875 C 7.125 -2.671875 6.9375 -2.671875 6.796875 -2.671875 L 4.03125 -2.671875 L 4.03125 -5.4375 C 4.03125 -5.5625 4.03125 -5.75 3.84375 -5.75 C 3.640625 -5.75 3.640625 -5.5625 3.640625 -5.4375 L 3.640625 -2.671875 L 0.875 -2.671875 C 0.734375 -2.671875 0.546875 -2.671875 0.546875 -2.46875 C 0.546875 -2.265625 0.734375 -2.265625 0.875 -2.265625 L 3.640625 -2.265625 L 3.640625 0.5 C 3.640625 0.625 3.640625 0.8125 3.84375 0.8125 C 4.03125 0.8125 4.03125 0.625 4.03125 0.5 L 4.03125 -2.265625 L 6.796875 -2.265625 C 6.9375 -2.265625 7.125 -2.265625 7.125 -2.46875 Z M 7.125 -2.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 7.234375 -0.875 C 7.234375 -0.921875 7.234375 -1.03125 7.09375 -1.03125 C 6.984375 -1.03125 6.984375 -0.953125 6.984375 -0.875 C 6.921875 -0.171875 6.578125 0 6.328125 0 C 5.84375 0 5.765625 -0.5 5.625 -1.421875 L 5.5 -2.21875 C 5.328125 -2.84375 4.84375 -3.171875 4.296875 -3.359375 C 5.25 -3.59375 6.03125 -4.203125 6.03125 -4.96875 C 6.03125 -5.921875 4.890625 -6.75 3.453125 -6.75 L 0.34375 -6.75 L 0.34375 -6.4375 L 0.578125 -6.4375 C 1.34375 -6.4375 1.359375 -6.328125 1.359375 -5.96875 L 1.359375 -0.765625 C 1.359375 -0.421875 1.34375 -0.3125 0.578125 -0.3125 L 0.34375 -0.3125 L 0.34375 0 C 0.703125 -0.03125 1.40625 -0.03125 1.78125 -0.03125 C 2.171875 -0.03125 2.875 -0.03125 3.234375 0 L 3.234375 -0.3125 L 2.984375 -0.3125 C 2.234375 -0.3125 2.21875 -0.421875 2.21875 -0.765625 L 2.21875 -3.265625 L 3.34375 -3.265625 C 3.5 -3.265625 3.921875 -3.265625 4.265625 -2.9375 C 4.640625 -2.578125 4.640625 -2.265625 4.640625 -1.609375 C 4.640625 -0.96875 4.640625 -0.578125 5.046875 -0.203125 C 5.453125 0.15625 6 0.21875 6.296875 0.21875 C 7.0625 0.21875 7.234375 -0.59375 7.234375 -0.875 Z M 5 -4.96875 C 5 -4.28125 4.765625 -3.484375 3.3125 -3.484375 L 2.21875 -3.484375 L 2.21875 -6.046875 C 2.21875 -6.265625 2.21875 -6.390625 2.421875 -6.421875 C 2.53125 -6.4375 2.8125 -6.4375 3.015625 -6.4375 C 3.90625 -6.4375 5 -6.40625 5 -4.96875 Z M 5 -4.96875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 4.09375 -1.171875 C 4.09375 -1.28125 4.015625 -1.296875 3.96875 -1.296875 C 3.875 -1.296875 3.859375 -1.234375 3.84375 -1.15625 C 3.5 -0.140625 2.609375 -0.140625 2.515625 -0.140625 C 2.015625 -0.140625 1.625 -0.4375 1.390625 -0.796875 C 1.09375 -1.28125 1.09375 -1.921875 1.09375 -2.28125 L 3.84375 -2.28125 C 4.0625 -2.28125 4.09375 -2.28125 4.09375 -2.484375 C 4.09375 -3.46875 3.5625 -4.421875 2.328125 -4.421875 C 1.1875 -4.421875 0.28125 -3.40625 0.28125 -2.171875 C 0.28125 -0.84375 1.3125 0.109375 2.453125 0.109375 C 3.65625 0.109375 4.09375 -0.984375 4.09375 -1.171875 Z M 3.453125 -2.484375 L 1.109375 -2.484375 C 1.171875 -3.953125 2 -4.203125 2.328125 -4.203125 C 3.34375 -4.203125 3.453125 -2.875 3.453125 -2.484375 Z M 3.453125 -2.484375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.3125 L 3.03125 -0.3125 C 2.25 -0.3125 2.21875 -0.421875 2.21875 -0.765625 L 2.21875 -5.96875 C 2.21875 -6.328125 2.25 -6.4375 3.03125 -6.4375 L 3.28125 -6.4375 L 3.28125 -6.75 C 2.9375 -6.71875 2.15625 -6.71875 1.78125 -6.71875 C 1.40625 -6.71875 0.625 -6.71875 0.28125 -6.75 L 0.28125 -6.4375 L 0.53125 -6.4375 C 1.3125 -6.4375 1.34375 -6.328125 1.34375 -5.96875 L 1.34375 -0.765625 C 1.34375 -0.421875 1.3125 -0.3125 0.53125 -0.3125 L 0.28125 -0.3125 L 0.28125 0 C 0.625 -0.03125 1.40625 -0.03125 1.78125 -0.03125 C 2.15625 -0.03125 2.9375 -0.03125 3.28125 0 Z M 3.28125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 8.03125 0 L 8.03125 -0.3125 C 7.515625 -0.3125 7.265625 -0.3125 7.265625 -0.609375 L 7.265625 -2.484375 C 7.265625 -3.34375 7.265625 -3.640625 6.953125 -4 C 6.8125 -4.171875 6.484375 -4.359375 5.921875 -4.359375 C 5.078125 -4.359375 4.65625 -3.765625 4.484375 -3.390625 C 4.34375 -4.25 3.609375 -4.359375 3.171875 -4.359375 C 2.453125 -4.359375 1.984375 -3.9375 1.703125 -3.328125 L 1.703125 -4.359375 L 0.3125 -4.25 L 0.3125 -3.953125 C 1 -3.953125 1.09375 -3.875 1.09375 -3.390625 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.53125 0 L 2.53125 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -2.5625 C 1.765625 -3.59375 2.46875 -4.140625 3.09375 -4.140625 C 3.71875 -4.140625 3.828125 -3.609375 3.828125 -3.046875 L 3.828125 -0.75 C 3.828125 -0.3125 3.71875 -0.3125 3.0625 -0.3125 L 3.0625 0 L 4.171875 -0.03125 L 5.28125 0 L 5.28125 -0.3125 C 4.625 -0.3125 4.515625 -0.3125 4.515625 -0.75 L 4.515625 -2.5625 C 4.515625 -3.59375 5.21875 -4.140625 5.84375 -4.140625 C 6.46875 -4.140625 6.578125 -3.609375 6.578125 -3.046875 L 6.578125 -0.75 C 6.578125 -0.3125 6.46875 -0.3125 5.8125 -0.3125 L 5.8125 0 L 6.921875 -0.03125 Z M 8.03125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 7.75 -0.078125 C 7.75 -0.078125 7.75 -0.109375 7.703125 -0.203125 L 4.359375 -6.890625 C 4.296875 -7.015625 4.28125 -7.078125 4.109375 -7.078125 C 3.9375 -7.078125 3.921875 -7.015625 3.84375 -6.890625 L 0.515625 -0.203125 C 0.46875 -0.109375 0.46875 -0.078125 0.46875 -0.078125 C 0.46875 0 0.515625 0 0.6875 0 L 7.53125 0 C 7.6875 0 7.75 0 7.75 -0.078125 Z M 6.453125 -0.75 L 1.125 -0.75 L 3.796875 -6.078125 Z M 6.453125 -0.75 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<path style="stroke:none;" d="M 1.5625 2.140625 L 1.5625 -7.078125 C 1.5625 -7.21875 1.5625 -7.40625 1.375 -7.40625 C 1.171875 -7.40625 1.171875 -7.21875 1.171875 -7.078125 L 1.171875 2.140625 C 1.171875 2.28125 1.171875 2.46875 1.375 2.46875 C 1.5625 2.46875 1.5625 2.28125 1.5625 2.140625 Z M 1.5625 2.140625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-1">
|
||||
<path style="stroke:none;" d="M 10.34375 -6.640625 C 10.34375 -6.671875 10.3125 -6.75 10.234375 -6.75 C 10 -6.75 9.71875 -6.71875 9.46875 -6.71875 C 9.140625 -6.71875 8.765625 -6.75 8.4375 -6.75 C 8.390625 -6.75 8.25 -6.75 8.25 -6.5625 C 8.25 -6.453125 8.34375 -6.4375 8.40625 -6.4375 C 8.640625 -6.421875 8.984375 -6.34375 8.984375 -6.046875 C 8.984375 -5.9375 8.9375 -5.859375 8.859375 -5.734375 L 6.1875 -1.078125 L 5.828125 -5.96875 C 5.8125 -6.171875 5.796875 -6.421875 6.515625 -6.4375 C 6.6875 -6.4375 6.78125 -6.4375 6.78125 -6.640625 C 6.78125 -6.734375 6.671875 -6.75 6.640625 -6.75 C 6.234375 -6.75 5.828125 -6.71875 5.4375 -6.71875 C 5.203125 -6.71875 4.625 -6.75 4.390625 -6.75 C 4.328125 -6.75 4.203125 -6.75 4.203125 -6.546875 C 4.203125 -6.4375 4.3125 -6.4375 4.4375 -6.4375 C 4.875 -6.4375 4.953125 -6.375 4.96875 -6.1875 L 5.03125 -5.4375 L 2.53125 -1.078125 L 2.15625 -6.078125 C 2.15625 -6.203125 2.15625 -6.421875 2.90625 -6.4375 C 3 -6.4375 3.109375 -6.4375 3.109375 -6.640625 C 3.109375 -6.75 2.96875 -6.75 2.96875 -6.75 C 2.578125 -6.75 2.15625 -6.71875 1.75 -6.71875 C 1.40625 -6.71875 1.0625 -6.75 0.71875 -6.75 C 0.671875 -6.75 0.546875 -6.75 0.546875 -6.5625 C 0.546875 -6.4375 0.625 -6.4375 0.796875 -6.4375 C 1.28125 -6.4375 1.296875 -6.34375 1.3125 -6.078125 L 1.75 -0.046875 C 1.765625 0.140625 1.78125 0.21875 1.921875 0.21875 C 2.03125 0.21875 2.0625 0.15625 2.15625 0.015625 L 5.0625 -5.03125 L 5.421875 -0.046875 C 5.4375 0.171875 5.453125 0.21875 5.578125 0.21875 C 5.703125 0.21875 5.765625 0.125 5.8125 0.03125 L 9.0625 -5.59375 C 9.296875 -6.03125 9.546875 -6.390625 10.15625 -6.4375 C 10.25 -6.453125 10.34375 -6.453125 10.34375 -6.640625 Z M 10.34375 -6.640625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 7.09375 -0.203125 C 7.09375 -0.3125 7 -0.3125 6.8125 -0.3125 C 6.453125 -0.3125 6.171875 -0.3125 6.171875 -0.484375 C 6.171875 -0.546875 6.1875 -0.59375 6.203125 -0.65625 L 7.53125 -5.984375 C 7.625 -6.34375 7.640625 -6.4375 8.359375 -6.4375 C 8.625 -6.4375 8.703125 -6.4375 8.703125 -6.640625 C 8.703125 -6.75 8.59375 -6.75 8.5625 -6.75 L 7.296875 -6.71875 L 6.03125 -6.75 C 5.9375 -6.75 5.84375 -6.75 5.84375 -6.546875 C 5.84375 -6.4375 5.921875 -6.4375 6.109375 -6.4375 C 6.109375 -6.4375 6.3125 -6.4375 6.484375 -6.421875 C 6.671875 -6.40625 6.75 -6.390625 6.75 -6.265625 C 6.75 -6.21875 6.75 -6.203125 6.71875 -6.078125 L 6.125 -3.65625 L 3.109375 -3.65625 L 3.6875 -5.984375 C 3.78125 -6.34375 3.8125 -6.4375 4.515625 -6.4375 C 4.78125 -6.4375 4.859375 -6.4375 4.859375 -6.640625 C 4.859375 -6.75 4.75 -6.75 4.71875 -6.75 L 3.453125 -6.71875 L 2.1875 -6.75 C 2.109375 -6.75 2 -6.75 2 -6.546875 C 2 -6.4375 2.078125 -6.4375 2.265625 -6.4375 C 2.265625 -6.4375 2.484375 -6.4375 2.640625 -6.421875 C 2.828125 -6.40625 2.90625 -6.390625 2.90625 -6.265625 C 2.90625 -6.21875 2.90625 -6.1875 2.875 -6.078125 L 1.546875 -0.765625 C 1.453125 -0.390625 1.4375 -0.3125 0.65625 -0.3125 C 0.46875 -0.3125 0.390625 -0.3125 0.390625 -0.109375 C 0.390625 0 0.515625 0 0.515625 0 L 1.78125 -0.03125 L 2.40625 -0.015625 C 2.625 -0.015625 2.84375 0 3.046875 0 C 3.125 0 3.25 0 3.25 -0.203125 C 3.25 -0.3125 3.15625 -0.3125 2.96875 -0.3125 C 2.609375 -0.3125 2.328125 -0.3125 2.328125 -0.484375 C 2.328125 -0.546875 2.34375 -0.59375 2.359375 -0.65625 L 3.03125 -3.359375 L 6.046875 -3.359375 L 5.359375 -0.625 C 5.265625 -0.3125 5.078125 -0.3125 4.46875 -0.3125 C 4.3125 -0.3125 4.21875 -0.3125 4.21875 -0.109375 C 4.21875 0 4.359375 0 4.359375 0 L 5.625 -0.03125 L 6.25 -0.015625 C 6.46875 -0.015625 6.6875 0 6.890625 0 C 6.96875 0 7.09375 0 7.09375 -0.203125 Z M 7.09375 -0.203125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-3">
|
||||
<path style="stroke:none;" d="M 5.65625 -2.59375 C 5.65625 -3.375 5.140625 -4.28125 3.765625 -4.375 L 4.3125 -6.609375 L 4.34375 -6.75 C 4.34375 -6.75 4.34375 -6.859375 4.21875 -6.859375 C 4.125 -6.859375 4.125 -6.828125 4.078125 -6.65625 L 3.5 -4.375 C 1.9375 -4.328125 0.484375 -3.015625 0.484375 -1.671875 C 0.484375 -0.734375 1.171875 0.046875 2.375 0.125 L 2.15625 1.046875 C 2.03125 1.515625 1.9375 1.890625 1.9375 1.921875 C 1.9375 2.015625 2 2.03125 2.046875 2.03125 C 2.109375 2.03125 2.125 2.015625 2.15625 1.984375 C 2.171875 1.96875 2.234375 1.734375 2.265625 1.59375 L 2.640625 0.125 C 4.21875 0.0625 5.65625 -1.265625 5.65625 -2.59375 Z M 3.453125 -4.15625 L 2.421875 -0.09375 C 1.84375 -0.125 1.125 -0.46875 1.125 -1.46875 C 1.125 -2.640625 1.96875 -4.03125 3.453125 -4.15625 Z M 5.015625 -2.796875 C 5.015625 -1.625 4.171875 -0.21875 2.6875 -0.09375 L 3.703125 -4.15625 C 4.453125 -4.125 5.015625 -3.65625 5.015625 -2.796875 Z M 5.015625 -2.796875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-1">
|
||||
<path style="stroke:none;" d="M 3.265625 0 L 3.265625 -0.25 L 3 -0.25 C 2.3125 -0.25 2.3125 -0.34375 2.3125 -0.5625 L 2.3125 -4.390625 C 2.3125 -4.578125 2.296875 -4.578125 2.109375 -4.578125 C 1.671875 -4.15625 1.03125 -4.140625 0.75 -4.140625 L 0.75 -3.890625 C 0.921875 -3.890625 1.375 -3.890625 1.75 -4.09375 L 1.75 -0.5625 C 1.75 -0.34375 1.75 -0.25 1.0625 -0.25 L 0.796875 -0.25 L 0.796875 0 L 2.03125 -0.03125 Z M 3.265625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-2">
|
||||
<path style="stroke:none;" d="M 3.484375 -1.25 L 3.25 -1.25 C 3.234375 -1.109375 3.15625 -0.703125 3.078125 -0.625 C 3.015625 -0.59375 2.484375 -0.59375 2.390625 -0.59375 L 1.125 -0.59375 C 1.84375 -1.234375 2.078125 -1.421875 2.5 -1.75 C 3.015625 -2.15625 3.484375 -2.578125 3.484375 -3.234375 C 3.484375 -4.078125 2.75 -4.578125 1.875 -4.578125 C 1.015625 -4.578125 0.4375 -3.984375 0.4375 -3.34375 C 0.4375 -3 0.734375 -2.96875 0.796875 -2.96875 C 0.96875 -2.96875 1.171875 -3.078125 1.171875 -3.328125 C 1.171875 -3.453125 1.125 -3.6875 0.765625 -3.6875 C 0.96875 -4.1875 1.4375 -4.34375 1.765625 -4.34375 C 2.453125 -4.34375 2.8125 -3.796875 2.8125 -3.234375 C 2.8125 -2.640625 2.390625 -2.15625 2.171875 -1.90625 L 0.5 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.28125 0 Z M 3.484375 -1.25 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
<clipPath id="clip1">
|
||||
<path d="M 68 0 L 198 0 L 198 103.097656 L 68 103.097656 Z M 68 0 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip2">
|
||||
<path d="M 197 35 L 217.945312 35 L 217.945312 68 L 197 68 Z M 197 35 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 183.253906 51.546875 C 183.253906 23.625 160.617188 0.988281 132.695312 0.988281 C 104.769531 0.988281 82.132812 23.625 82.132812 51.546875 C 82.132812 79.472656 104.769531 102.109375 132.695312 102.109375 C 160.617188 102.109375 183.253906 79.472656 183.253906 51.546875 Z M 183.253906 51.546875 "/>
|
||||
<g clip-path="url(#clip1)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 164.411763 0.00149065 C 164.411763 28.179924 141.567048 51.024638 113.388615 51.024638 C 85.20624 51.024638 62.361526 28.179924 62.361526 0.00149065 C 62.361526 -28.180884 85.20624 -51.025599 113.388615 -51.025599 C 141.567048 -51.025599 164.411763 -28.180884 164.411763 0.00149065 Z M 164.411763 0.00149065 " transform="matrix(0.990895,0,0,-0.990895,20.339073,51.548352)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:0.99628,1.99255;stroke-miterlimit:10;" d="M 141.732618 0.00149065 C 141.732618 15.655738 129.042862 28.345494 113.388615 28.345494 C 97.730426 28.345494 85.04067 15.655738 85.04067 0.00149065 C 85.04067 -15.656698 97.730426 -28.346454 113.388615 -28.346454 C 129.042862 -28.346454 141.732618 -15.656698 141.732618 0.00149065 Z M 141.732618 0.00149065 " transform="matrix(0.990895,0,0,-0.990895,20.339073,51.548352)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M 116.021966 20.043342 C 116.021966 32.567528 105.867008 42.722486 93.342822 42.722486 C 80.818636 42.722486 70.663677 32.567528 70.663677 20.043342 C 70.663677 7.519156 80.818636 -2.63186 93.342822 -2.63186 C 105.867008 -2.63186 116.021966 7.519156 116.021966 20.043342 Z M 116.021966 20.043342 " transform="matrix(0.990895,0,0,-0.990895,20.339073,51.548352)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="130.224401" y="61.549458"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M 116.664536 3.277411 L 130.154546 16.767422 " transform="matrix(0.990895,0,0,-0.990895,20.339073,51.548352)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054035 -0.0000885931 L 1.610692 1.683587 L 3.08809 -0.0000885931 L 1.610692 -1.683764 Z M 6.054035 -0.0000885931 " transform="matrix(-0.700662,0.700662,0.700662,0.700662,137.929394,46.312917)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054738 0.0000885931 L 1.608608 1.680977 L 3.088793 0.0000885931 L 1.608608 -1.680799 Z M 6.054738 0.0000885931 " transform="matrix(0.700662,-0.700662,-0.700662,-0.700662,147.320237,36.922074)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 134.667969 51.546875 C 134.667969 50.457031 133.785156 49.574219 132.695312 49.574219 C 131.601562 49.574219 130.71875 50.457031 130.71875 51.546875 C 130.71875 52.640625 131.601562 53.523438 132.695312 53.523438 C 133.785156 53.523438 134.667969 52.640625 134.667969 51.546875 Z M 134.667969 51.546875 "/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M 93.342822 24.679301 L 93.342822 38.086527 " transform="matrix(0.990895,0,0,-0.990895,20.339073,51.548352)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053787 -0.000178066 L 1.60705 1.683117 L 3.089296 -0.000178066 L 1.60705 -1.683473 Z M 6.053787 -0.000178066 " transform="matrix(0,0.990895,0.990895,0,112.832208,24.282581)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053655 0.000178066 L 1.606919 1.683473 L 3.089164 0.000178066 L 1.606919 -1.683117 Z M 6.053655 0.000178066 " transform="matrix(0,-0.990895,-0.990895,0,112.832208,16.619632)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 114.804688 31.6875 C 114.804688 30.597656 113.921875 29.710938 112.832031 29.710938 C 111.742188 29.710938 110.859375 30.597656 110.859375 31.6875 C 110.859375 32.777344 111.742188 33.660156 112.832031 33.660156 C 113.921875 33.660156 114.804688 32.777344 114.804688 31.6875 Z M 114.804688 31.6875 "/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="172.932977" y="11.883807"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="175.675775" y="11.883807"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="184.999108" y="13.365195"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="189.427419" y="11.883807"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="197.634013" y="13.365195"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="202.062324" y="11.883807"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M 170.080563 33.718633 C 170.080563 14.808177 147.582757 10.601911 128.033674 10.081548 " transform="matrix(0.990895,0,0,-0.990895,20.339073,51.548352)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052525 -0.00000760552 L 1.609188 1.6831 L 3.087597 -0.0015659 L 1.609018 -1.683959 Z M 6.052525 -0.00000760552 " transform="matrix(-0.990757,0.0139716,0.0139716,0.990757,150.027829,41.5131)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="46.535371" y="11.883807"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="49.278169" y="11.883807"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-2" x="58.601502" y="13.365195"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="63.029813" y="11.883807"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-2" x="71.236407" y="13.365195"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="75.664718" y="11.883807"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M 62.420658 42.521437 C 73.624226 42.521437 79.017077 34.065542 88.726573 31.889479 " transform="matrix(0.990895,0,0,-0.990895,20.339073,51.548352)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054576 -0.000929459 L 1.608847 1.682738 L 3.088407 0.00158937 L 1.610562 -1.683932 Z M 6.054576 -0.000929459 " transform="matrix(0.98385,0.117689,0.117689,-0.98385,105.480815,19.571687)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M 109.032548 -1.583251 L 69.792464 -15.865632 " transform="matrix(0.990895,0,0,-0.990895,20.339073,51.548352)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052245 0.0023508 L 1.608588 1.682611 L 3.089032 -0.00150623 L 1.60896 -1.682072 Z M 6.052245 0.0023508 " transform="matrix(0.931124,-0.338896,-0.338896,-0.931124,125.736498,54.080615)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053324 -0.000935202 L 1.607337 1.684481 L 3.087748 0.000326407 L 1.609991 -1.685264 Z M 6.053324 -0.000935202 " transform="matrix(-0.931115,0.338916,0.338916,0.931115,92.140561,66.308678)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="24.567223" y="96.148547"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="27.309031" y="96.148547"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="36.633355" y="97.629935"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="41.061666" y="96.148547"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="49.267269" y="97.629935"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="53.69558" y="96.148547"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="58.63222" y="96.148547"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="68.504509" y="96.148547"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="71.246316" y="96.148547"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-2" x="80.56965" y="97.629935"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="84.99796" y="96.148547"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-2" x="93.204555" y="97.629935"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="97.632866" y="96.148547"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M 42.520724 -33.719594 C 42.520724 -19.673741 69.997455 -26.77354 76.194503 -17.497679 " transform="matrix(0.990895,0,0,-0.990895,20.339073,51.548352)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.055619 -0.000848272 L 1.609944 1.682068 L 3.089065 0.000944328 L 1.607721 -1.684761 Z M 6.055619 -0.000848272 " transform="matrix(0.291749,-0.946929,-0.946929,-0.291749,94.880912,71.59337)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -14.175166 0.00149065 L 193.792549 0.00149065 " transform="matrix(0.990895,0,0,-0.990895,20.339073,51.548352)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 215.554688 51.546875 L 211.148438 49.878906 L 212.617188 51.546875 L 211.148438 53.214844 Z M 215.554688 51.546875 "/>
|
||||
<g clip-path="url(#clip2)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053757 0.00149065 L 1.607021 1.684785 L 3.089266 0.00149065 L 1.607021 -1.681804 Z M 6.053757 0.00149065 " transform="matrix(0.990895,0,0,-0.990895,209.556048,51.548352)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-3" x="201.519313" y="62.133095"/>
|
||||
<use xlink:href="#glyph0-4" x="208.786014" y="62.133095"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.000777342 -48.191199 L 0.000777342 43.554278 " transform="matrix(0.990895,0,0,-0.990895,20.339073,51.548352)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053677 -0.000777342 L 1.60694 1.682517 L 3.089186 -0.000777342 L 1.60694 -1.684072 Z M 6.053677 -0.000777342 " transform="matrix(0,-0.990895,-0.990895,0,20.339073,11.201684)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="4.764182" y="14.382844"/>
|
||||
<use xlink:href="#glyph0-6" x="8.328923" y="14.382844"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M 0.000777342 0.00149065 L 89.976232 45.895911 " transform="matrix(0.990895,0,0,-0.990895,20.339073,51.548352)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M 28.348722 0.00149065 C 28.348722 4.641392 27.205501 9.210335 25.029439 13.306221 " transform="matrix(0.990895,0,0,-0.990895,20.339073,51.548352)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="51.376885" y="47.328129"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="59.603297" y="47.328129"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 26 KiB |
BIN
journal/figs/weight_uncertainty_bounds_Wu.pdf
Normal file
171
journal/ref.bib
Normal file
@@ -0,0 +1,171 @@
|
||||
@article{collette15_sensor_fusion_method_high_perfor,
|
||||
author = {C. Collette and F. Matichard},
|
||||
title = {Sensor Fusion Methods for High Performance Active Vibration Isolation Systems},
|
||||
journal = {Journal of Sound and Vibration},
|
||||
volume = {342},
|
||||
number = {nil},
|
||||
pages = {1-21},
|
||||
year = {2015},
|
||||
doi = {10.1016/j.jsv.2015.01.006},
|
||||
url = {https://doi.org/10.1016/j.jsv.2015.01.006},
|
||||
keywords = {},
|
||||
}
|
||||
|
||||
|
||||
@phdthesis{hua05_low_ligo,
|
||||
author = {Hua, Wensheng},
|
||||
school = {stanford university},
|
||||
title = {Low frequency vibration isolation and alignment system for
|
||||
advanced LIGO},
|
||||
year = 2005,
|
||||
}
|
||||
|
||||
|
||||
@inproceedings{hua04_polyp_fir_compl_filter_contr_system,
|
||||
author = {Wensheng Hua and Dan B. Debra and Corwin T. Hardham and Brian T. Lantz and Joseph A. Giaime},
|
||||
title = {Polyphase FIR Complementary Filters for Control Systems},
|
||||
booktitle = {Proceedings of ASPE Spring Topical Meeting on Control of Precision Systems},
|
||||
year = {2004},
|
||||
pages = {109--114},
|
||||
}
|
||||
|
||||
|
||||
@article{matichard15_seism_isolat_advan_ligo,
|
||||
author = {Matichard, F and Lantz, B and Mittleman, R and Mason, K and Kissel, J and Abbott, B and Biscans, S and McIver, J and Abbott, R and Abbott, S and others},
|
||||
title = {Seismic Isolation of Advanced Ligo: Review of Strategy, Instrumentation and Performance},
|
||||
journal = {Classical and Quantum Gravity},
|
||||
volume = {32},
|
||||
number = {18},
|
||||
pages = {185003},
|
||||
year = {2015},
|
||||
publisher = {IOP Publishing},
|
||||
}
|
||||
|
||||
|
||||
@article{min15_compl_filter_desig_angle_estim,
|
||||
author = {Min, Hyung Gi and Jeung, Eun Tae},
|
||||
title = {Complementary Filter Design for Angle Estimation Using Mems Accelerometer and Gyroscope},
|
||||
journal = {Department of Control and Instrumentation, Changwon National University, Changwon, Korea},
|
||||
pages = {641--773},
|
||||
year = {2015},
|
||||
}
|
||||
|
||||
|
||||
@article{corke04_inert_visual_sensin_system_small_auton_helic,
|
||||
author = {Peter Corke},
|
||||
title = {An Inertial and Visual Sensing System for a Small Autonomous Helicopter},
|
||||
journal = {Journal of Robotic Systems},
|
||||
volume = {21},
|
||||
number = {2},
|
||||
pages = {43-51},
|
||||
year = {2004},
|
||||
doi = {10.1002/rob.10127},
|
||||
url = {https://doi.org/10.1002/rob.10127},
|
||||
}
|
||||
|
||||
|
||||
@inproceedings{jensen13_basic_uas,
|
||||
author = {Austin Jensen and Cal Coopmans and YangQuan Chen},
|
||||
title = {Basics and guidelines of complementary filters for small UAS
|
||||
navigation},
|
||||
booktitle = {2013 International Conference on Unmanned Aircraft Systems
|
||||
(ICUAS)},
|
||||
year = 2013,
|
||||
pages = {nil},
|
||||
doi = {10.1109/icuas.2013.6564726},
|
||||
url = {https://doi.org/10.1109/icuas.2013.6564726},
|
||||
month = 5,
|
||||
}
|
||||
|
||||
|
||||
@inproceedings{pascoal99_navig_system_desig_using_time,
|
||||
author = {A. Pascoal and I. Kaminer and P. Oliveira},
|
||||
title = {Navigation System Design Using Time-Varying Complementary Filters},
|
||||
booktitle = {Guidance, Navigation, and Control Conference and Exhibit},
|
||||
year = {1999},
|
||||
pages = {nil},
|
||||
doi = {10.2514/6.1999-4290},
|
||||
url = {https://doi.org/10.2514/6.1999-4290},
|
||||
}
|
||||
|
||||
|
||||
@article{zimmermann92_high_bandw_orien_measur_contr,
|
||||
author = {M. Zimmermann and W. Sulzer},
|
||||
title = {High Bandwidth Orientation Measurement and Control Based on Complementary Filtering},
|
||||
journal = {Robot Control 1991},
|
||||
pages = {525-530},
|
||||
year = {1992},
|
||||
doi = {10.1016/b978-0-08-041276-4.50093-5},
|
||||
url = {https://doi.org/10.1016/b978-0-08-041276-4.50093-5},
|
||||
publisher = {Elsevier},
|
||||
series = {Robot Control 1991},
|
||||
}
|
||||
|
||||
|
||||
@inproceedings{baerveldt97_low_cost_low_weigh_attit,
|
||||
author = {A.-J. Baerveldt and R. Klang},
|
||||
title = {A Low-Cost and Low-Weight Attitude Estimation System for an Autonomous Helicopter},
|
||||
booktitle = {Proceedings of IEEE International Conference on Intelligent Engineering Systems},
|
||||
year = {1997},
|
||||
pages = {nil},
|
||||
doi = {10.1109/ines.1997.632450},
|
||||
url = {https://doi.org/10.1109/ines.1997.632450},
|
||||
month = {-},
|
||||
}
|
||||
|
||||
|
||||
@article{shaw90_bandw_enhan_posit_measur_using_measur_accel,
|
||||
author = {F.R. Shaw and K. Srinivasan},
|
||||
title = {Bandwidth Enhancement of Position Measurements Using Measured
|
||||
Acceleration},
|
||||
journal = {Mechanical Systems and Signal Processing},
|
||||
volume = 4,
|
||||
number = 1,
|
||||
pages = {23-38},
|
||||
year = 1990,
|
||||
doi = {10.1016/0888-3270(90)90038-m},
|
||||
url = {https://doi.org/10.1016/0888-3270(90)90038-m},
|
||||
}
|
||||
|
||||
|
||||
@article{brown72_integ_navig_system_kalman_filter,
|
||||
author = {R. G. Brown},
|
||||
title = {Integrated Navigation Systems and Kalman Filtering: a
|
||||
Perspective},
|
||||
journal = {Navigation},
|
||||
volume = 19,
|
||||
number = 4,
|
||||
pages = {355-362},
|
||||
year = 1972,
|
||||
doi = {10.1002/j.2161-4296.1972.tb01706.x},
|
||||
url = {https://doi.org/10.1002/j.2161-4296.1972.tb01706.x},
|
||||
}
|
||||
|
||||
|
||||
@article{matichard15_seism_isolat_advan_ligo,
|
||||
author = {Matichard, F and Lantz, B and Mittleman, R and Mason, K and
|
||||
Kissel, J and Abbott, B and Biscans, S and McIver, J and
|
||||
Abbott, R and Abbott, S and others},
|
||||
title = {Seismic Isolation of Advanced Ligo: Review of Strategy,
|
||||
Instrumentation and Performance},
|
||||
journal = {Classical and Quantum Gravity},
|
||||
volume = 32,
|
||||
number = 18,
|
||||
pages = 185003,
|
||||
year = 2015,
|
||||
publisher = {IOP Publishing},
|
||||
}
|
||||
|
||||
|
||||
@article{mahony08_nonlin_compl_filter_special_orthog_group,
|
||||
author = {Robert Mahony and Tarek Hamel and Jean-Michel Pflimlin},
|
||||
title = {Nonlinear Complementary Filters on the Special Orthogonal
|
||||
Group},
|
||||
journal = {IEEE Transactions on Automatic Control},
|
||||
volume = 53,
|
||||
number = 5,
|
||||
pages = {1203-1218},
|
||||
year = 2008,
|
||||
doi = {10.1109/tac.2008.923738},
|
||||
url = {https://doi.org/10.1109/tac.2008.923738},
|
||||
}
|