summaryrefslogtreecommitdiff
path: root/doc/Witness_complex
diff options
context:
space:
mode:
Diffstat (limited to 'doc/Witness_complex')
-rw-r--r--doc/Witness_complex/COPYRIGHT19
-rw-r--r--doc/Witness_complex/Witness_complex_doc.h122
-rw-r--r--doc/Witness_complex/Witness_complex_representation.ipe280
-rw-r--r--doc/Witness_complex/Witness_complex_representation.pngbin21202 -> 0 bytes
-rw-r--r--doc/Witness_complex/bench_Cy8.pngbin15254 -> 0 bytes
-rw-r--r--doc/Witness_complex/bench_sphere.pngbin16614 -> 0 bytes
-rw-r--r--doc/Witness_complex/swit.svg1303
7 files changed, 0 insertions, 1724 deletions
diff --git a/doc/Witness_complex/COPYRIGHT b/doc/Witness_complex/COPYRIGHT
deleted file mode 100644
index 25a700cf..00000000
--- a/doc/Witness_complex/COPYRIGHT
+++ /dev/null
@@ -1,19 +0,0 @@
-The files of this directory are part of the Gudhi Library. The Gudhi library
-(Geometric Understanding in Higher Dimensions) is a generic C++ library for
-computational topology.
-
-Author(s): Siargey Kachanovich
-
-Copyright (C) 2015 Inria
-
-This program is free software: you can redistribute it and/or modify it under
-the terms of the GNU General Public License as published by the Free Software
-Foundation, either version 3 of the License, or (at your option) any later
-version.
-
-This program is distributed in the hope that it will be useful, but WITHOUT
-ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License along with
-this program. If not, see <http://www.gnu.org/licenses/>.
diff --git a/doc/Witness_complex/Witness_complex_doc.h b/doc/Witness_complex/Witness_complex_doc.h
deleted file mode 100644
index 62203054..00000000
--- a/doc/Witness_complex/Witness_complex_doc.h
+++ /dev/null
@@ -1,122 +0,0 @@
-#ifndef WITNESS_COMPLEX_DOC_H_
-#define WITNESS_COMPLEX_DOC_H_
-
-/**
- \defgroup witness_complex Witness complex
-
- \author Siargey Kachanovich
-
- \image html "Witness_complex_representation.png" "Witness complex representation"
-
- \section witnessdefinitions Definitions
-
- Witness complex is a simplicial complex defined on two sets of points in \f$\mathbb{R}^D\f$:
-
- \li \f$W\f$ set of **witnesses** and
- \li \f$L\f$ set of **landmarks**.
-
- Even though often the set of landmarks \f$L\f$ is a subset of the set of witnesses \f$ W\f$, it is not a requirement for the current implementation.
-
- Landmarks are the vertices of the simplicial complex
- and witnesses help to decide on which simplices are inserted via a predicate "is witnessed".
-
- De Silva and Carlsson in their paper \cite de2004topological differentiate **weak witnessing** and **strong witnessing**:
-
- - *weak*: \f$ \sigma \subset L \f$ is witnessed by \f$ w \in W\f$ if \f$ \forall l \in \sigma,\ \forall l' \in \mathbf{L \setminus \sigma},\ d(w,l) \leq d(w,l') \f$
- - *strong*: \f$ \sigma \subset L \f$ is witnessed by \f$ w \in W\f$ if \f$ \forall l \in \sigma,\ \forall l' \in \mathbf{L},\ d(w,l) \leq d(w,l') \f$
-
- where \f$ d(.,.) \f$ is a distance function.
-
- Both definitions can be relaxed by a real value \f$\alpha\f$:
-
- - *weak*: \f$ \sigma \subset L \f$ is \f$\alpha\f$-witnessed by \f$ w \in W\f$ if \f$ \forall l \in \sigma,\ \forall l' \in \mathbf{L \setminus \sigma},\ d(w,l)^2 \leq d(w,l')^2 + \alpha^2 \f$
- - *strong*: \f$ \sigma \subset L \f$ is \f$\alpha\f$-witnessed by \f$ w \in W\f$ if \f$ \forall l \in \sigma,\ \forall l' \in \mathbf{L},\ d(w,l)^2 \leq d(w,l')^2 + \alpha^2 \f$
-
- which leads to definitions of **weak relaxed witness complex** (or just relaxed witness complex for short) and **strong relaxed witness complex** respectively.
-
- \image html "swit.svg" "Strongly witnessed simplex"
-
- In particular case of 0-relaxation, weak complex corresponds to **witness complex** introduced in \cite de2004topological, whereas 0-relaxed strong witness complex consists of just vertices and is not very interesting.
- Hence for small relaxation weak version is preferable.
- However, to capture the homotopy type (for example using Gudhi::persistent_cohomology::Persistent_cohomology) it is often necessary to work with higher filtration values. In this case strong relaxed witness complex is faster to compute and offers similar results.
-
- \section witnessimplementation Implementation
-
- The two complexes described above are implemented in the corresponding classes
- - Gudhi::witness_complex::Witness_complex
- - Gudhi::witness_complex::Euclidean_witness_complex
- - Gudhi::witness_complex::Strong_witness_complex
- - Gudhi::witness_complex::Euclidean_strong_witness_complex
-
- The construction of the Euclidean versions of complexes follow the same scheme:
- 1. Construct a search tree on landmarks (for that Gudhi::spatial_searching::Kd_tree_search is used internally).
- 2. Construct lists of nearest landmarks for each witness (special structure Gudhi::witness_complex::Active_witness is used internally).
- 3. Construct the witness complex for nearest landmark lists.
-
- In the non-Euclidean classes, the lists of nearest landmarks are supposed to be given as input.
-
- The constructors take on the steps 1 and 2, while the function 'create_complex' executes the step 3.
-
- \section witnessexample1 Example 1: Constructing weak relaxed witness complex from an off file
-
- Let's start with a simple example, which reads an off point file and computes a weak witness complex.
-
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
-
-#include <gudhi/Simplex_tree.h>
-#include <gudhi/Euclidean_witness_complex.h>
-#include <gudhi/pick_n_random_points.h>
-#include <gudhi/Points_off_io.h>
-
-#include <CGAL/Epick_d.h>
-
-#include <string>
-#include <vector>
-
-typedef CGAL::Epick_d<CGAL::Dynamic_dimension_tag> K;
-typedef typename K::Point_d Point_d;
-typedef typename Gudhi::witness_complex::Euclidean_witness_complex<K> Witness_complex;
-typedef std::vector< Vertex_handle > typeVectorVertex;
-typedef std::vector< Point_d > Point_vector;
-
-int main(int argc, char * const argv[]) {
- std::string file_name = argv[1];
- int nbL = atoi(argv[2]), lim_dim = atoi(argv[4]);
- double alpha2 = atof(argv[3]);
- Gudhi::Simplex_tree<> simplex_tree;
-
- // Read the point file
- Point_vector point_vector, landmarks;
- Gudhi::Points_off_reader<Point_d> off_reader(file_name);
- point_vector = Point_vector(off_reader.get_point_cloud());
-
- // Choose landmarks (one can choose either of the two methods below)
- // Gudhi::subsampling::pick_n_random_points(point_vector, nbL, std::back_inserter(landmarks));
- Gudhi::subsampling::choose_n_farthest_points(K(), point_vector, nbL, Gudhi::subsampling::random_starting_point, std::back_inserter(landmarks));
-
- // Compute witness complex
- Witness_complex witness_complex(landmarks,
- point_vector);
-
- witness_complex.create_complex(simplex_tree, alpha2, lim_dim);
-}
-
-
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
- \section witnessexample2 Example2: Computing persistence using strong relaxed witness complex
-
- Here is an example of constructing a strong witness complex filtration and computing persistence on it:
-
- \include Witness_complex/strong_witness_persistence.cpp
-
- \section witnessexample3 Example3: Computing relaxed witness complex persistence from a distance matrix
-
- In this example we compute the relaxed witness complex persistence from a given matrix of closest landmarks to each witness.
- Each landmark is given as the couple (index, distance).
-
- \include Witness_complex/example_nearest_landmark_table.cpp
-
- */
-
-#endif // WITNESS_COMPLEX_DOC_H_
diff --git a/doc/Witness_complex/Witness_complex_representation.ipe b/doc/Witness_complex/Witness_complex_representation.ipe
deleted file mode 100644
index f9c45d5d..00000000
--- a/doc/Witness_complex/Witness_complex_representation.ipe
+++ /dev/null
@@ -1,280 +0,0 @@
-<?xml version="1.0"?>
-<!DOCTYPE ipe SYSTEM "ipe.dtd">
-<ipe version="70107" creator="Ipe 7.1.10">
-<info created="D:20161010162425" modified="D:20161010162828"/>
-<ipestyle name="basic">
-<symbol name="arrow/arc(spx)">
-<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
-0 0 m
--1 0.333 l
--1 -0.333 l
-h
-</path>
-</symbol>
-<symbol name="arrow/farc(spx)">
-<path stroke="sym-stroke" fill="white" pen="sym-pen">
-0 0 m
--1 0.333 l
--1 -0.333 l
-h
-</path>
-</symbol>
-<symbol name="arrow/ptarc(spx)">
-<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
-0 0 m
--1 0.333 l
--0.8 0 l
--1 -0.333 l
-h
-</path>
-</symbol>
-<symbol name="arrow/fptarc(spx)">
-<path stroke="sym-stroke" fill="white" pen="sym-pen">
-0 0 m
--1 0.333 l
--0.8 0 l
--1 -0.333 l
-h
-</path>
-</symbol>
-<symbol name="mark/circle(sx)" transformations="translations">
-<path fill="sym-stroke">
-0.6 0 0 0.6 0 0 e
-0.4 0 0 0.4 0 0 e
-</path>
-</symbol>
-<symbol name="mark/disk(sx)" transformations="translations">
-<path fill="sym-stroke">
-0.6 0 0 0.6 0 0 e
-</path>
-</symbol>
-<symbol name="mark/fdisk(sfx)" transformations="translations">
-<group>
-<path fill="sym-fill">
-0.5 0 0 0.5 0 0 e
-</path>
-<path fill="sym-stroke" fillrule="eofill">
-0.6 0 0 0.6 0 0 e
-0.4 0 0 0.4 0 0 e
-</path>
-</group>
-</symbol>
-<symbol name="mark/box(sx)" transformations="translations">
-<path fill="sym-stroke" fillrule="eofill">
--0.6 -0.6 m
-0.6 -0.6 l
-0.6 0.6 l
--0.6 0.6 l
-h
--0.4 -0.4 m
-0.4 -0.4 l
-0.4 0.4 l
--0.4 0.4 l
-h
-</path>
-</symbol>
-<symbol name="mark/square(sx)" transformations="translations">
-<path fill="sym-stroke">
--0.6 -0.6 m
-0.6 -0.6 l
-0.6 0.6 l
--0.6 0.6 l
-h
-</path>
-</symbol>
-<symbol name="mark/fsquare(sfx)" transformations="translations">
-<group>
-<path fill="sym-fill">
--0.5 -0.5 m
-0.5 -0.5 l
-0.5 0.5 l
--0.5 0.5 l
-h
-</path>
-<path fill="sym-stroke" fillrule="eofill">
--0.6 -0.6 m
-0.6 -0.6 l
-0.6 0.6 l
--0.6 0.6 l
-h
--0.4 -0.4 m
-0.4 -0.4 l
-0.4 0.4 l
--0.4 0.4 l
-h
-</path>
-</group>
-</symbol>
-<symbol name="mark/cross(sx)" transformations="translations">
-<group>
-<path fill="sym-stroke">
--0.43 -0.57 m
-0.57 0.43 l
-0.43 0.57 l
--0.57 -0.43 l
-h
-</path>
-<path fill="sym-stroke">
--0.43 0.57 m
-0.57 -0.43 l
-0.43 -0.57 l
--0.57 0.43 l
-h
-</path>
-</group>
-</symbol>
-<symbol name="arrow/fnormal(spx)">
-<path stroke="sym-stroke" fill="white" pen="sym-pen">
-0 0 m
--1 0.333 l
--1 -0.333 l
-h
-</path>
-</symbol>
-<symbol name="arrow/pointed(spx)">
-<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
-0 0 m
--1 0.333 l
--0.8 0 l
--1 -0.333 l
-h
-</path>
-</symbol>
-<symbol name="arrow/fpointed(spx)">
-<path stroke="sym-stroke" fill="white" pen="sym-pen">
-0 0 m
--1 0.333 l
--0.8 0 l
--1 -0.333 l
-h
-</path>
-</symbol>
-<symbol name="arrow/linear(spx)">
-<path stroke="sym-stroke" pen="sym-pen">
--1 0.333 m
-0 0 l
--1 -0.333 l
-</path>
-</symbol>
-<symbol name="arrow/fdouble(spx)">
-<path stroke="sym-stroke" fill="white" pen="sym-pen">
-0 0 m
--1 0.333 l
--1 -0.333 l
-h
--1 0 m
--2 0.333 l
--2 -0.333 l
-h
-</path>
-</symbol>
-<symbol name="arrow/double(spx)">
-<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
-0 0 m
--1 0.333 l
--1 -0.333 l
-h
--1 0 m
--2 0.333 l
--2 -0.333 l
-h
-</path>
-</symbol>
-<pen name="heavier" value="0.8"/>
-<pen name="fat" value="1.2"/>
-<pen name="ultrafat" value="2"/>
-<symbolsize name="large" value="5"/>
-<symbolsize name="small" value="2"/>
-<symbolsize name="tiny" value="1.1"/>
-<arrowsize name="large" value="10"/>
-<arrowsize name="small" value="5"/>
-<arrowsize name="tiny" value="3"/>
-<color name="red" value="1 0 0"/>
-<color name="green" value="0 1 0"/>
-<color name="blue" value="0 0 1"/>
-<color name="yellow" value="1 1 0"/>
-<color name="orange" value="1 0.647 0"/>
-<color name="gold" value="1 0.843 0"/>
-<color name="purple" value="0.627 0.125 0.941"/>
-<color name="gray" value="0.745"/>
-<color name="brown" value="0.647 0.165 0.165"/>
-<color name="navy" value="0 0 0.502"/>
-<color name="pink" value="1 0.753 0.796"/>
-<color name="seagreen" value="0.18 0.545 0.341"/>
-<color name="turquoise" value="0.251 0.878 0.816"/>
-<color name="violet" value="0.933 0.51 0.933"/>
-<color name="darkblue" value="0 0 0.545"/>
-<color name="darkcyan" value="0 0.545 0.545"/>
-<color name="darkgray" value="0.663"/>
-<color name="darkgreen" value="0 0.392 0"/>
-<color name="darkmagenta" value="0.545 0 0.545"/>
-<color name="darkorange" value="1 0.549 0"/>
-<color name="darkred" value="0.545 0 0"/>
-<color name="lightblue" value="0.678 0.847 0.902"/>
-<color name="lightcyan" value="0.878 1 1"/>
-<color name="lightgray" value="0.827"/>
-<color name="lightgreen" value="0.565 0.933 0.565"/>
-<color name="lightyellow" value="1 1 0.878"/>
-<dashstyle name="dashed" value="[4] 0"/>
-<dashstyle name="dotted" value="[1 3] 0"/>
-<dashstyle name="dash dotted" value="[4 2 1 2] 0"/>
-<dashstyle name="dash dot dotted" value="[4 2 1 2 1 2] 0"/>
-<textsize name="large" value="\large"/>
-<textsize name="Large" value="\Large"/>
-<textsize name="LARGE" value="\LARGE"/>
-<textsize name="huge" value="\huge"/>
-<textsize name="Huge" value="\Huge"/>
-<textsize name="small" value="\small"/>
-<textsize name="footnote" value="\footnotesize"/>
-<textsize name="tiny" value="\tiny"/>
-<textstyle name="center" begin="\begin{center}" end="\end{center}"/>
-<textstyle name="itemize" begin="\begin{itemize}" end="\end{itemize}"/>
-<textstyle name="item" begin="\begin{itemize}\item{}" end="\end{itemize}"/>
-<gridsize name="4 pts" value="4"/>
-<gridsize name="8 pts (~3 mm)" value="8"/>
-<gridsize name="16 pts (~6 mm)" value="16"/>
-<gridsize name="32 pts (~12 mm)" value="32"/>
-<gridsize name="10 pts (~3.5 mm)" value="10"/>
-<gridsize name="20 pts (~7 mm)" value="20"/>
-<gridsize name="14 pts (~5 mm)" value="14"/>
-<gridsize name="28 pts (~10 mm)" value="28"/>
-<gridsize name="56 pts (~20 mm)" value="56"/>
-<anglesize name="90 deg" value="90"/>
-<anglesize name="60 deg" value="60"/>
-<anglesize name="45 deg" value="45"/>
-<anglesize name="30 deg" value="30"/>
-<anglesize name="22.5 deg" value="22.5"/>
-<opacity name="10%" value="0.1"/>
-<opacity name="30%" value="0.3"/>
-<opacity name="50%" value="0.5"/>
-<opacity name="75%" value="0.75"/>
-<tiling name="falling" angle="-60" step="4" width="1"/>
-<tiling name="rising" angle="30" step="4" width="1"/>
-</ipestyle>
-<page>
-<layer name="alpha"/>
-<view layers="alpha" active="alpha"/>
-<use layer="alpha" name="mark/fdisk(sfx)" pos="288 672" size="normal" stroke="darkblue" fill="white"/>
-<path stroke="darkblue">
-48.8262 0 0 48.8262 288 672 e
-</path>
-<text transformations="translations" pos="292 676" stroke="darkblue" type="label" width="6.559" height="4.289" depth="0" valign="baseline">$\omega$</text>
-<path stroke="black">
-284 720 m
-280 624 l
-268 648 l
-h
-</path>
-<use name="mark/fdisk(sfx)" pos="284 720" size="normal" stroke="black" fill="white"/>
-<use name="mark/fdisk(sfx)" pos="268 648" size="normal" stroke="black" fill="white"/>
-<use name="mark/fdisk(sfx)" pos="280 624" size="normal" stroke="black" fill="white"/>
-<text matrix="1 0 0 1 0 8" transformations="translations" pos="268 672" stroke="black" type="label" width="6.05" height="4.289" depth="0" valign="baseline">$\sigma$</text>
-<use name="mark/fdisk(sfx)" pos="344 672" size="normal" stroke="black" fill="white"/>
-<use name="mark/fdisk(sfx)" pos="356 716" size="normal" stroke="black" fill="white"/>
-<use name="mark/fdisk(sfx)" pos="364 628" size="normal" stroke="black" fill="white"/>
-<use name="mark/fdisk(sfx)" pos="244 708" size="normal" stroke="black" fill="white"/>
-<use name="mark/fdisk(sfx)" pos="196 632" size="normal" stroke="black" fill="white"/>
-<use name="mark/fdisk(sfx)" pos="200 696" size="normal" stroke="black" fill="white"/>
-<use name="mark/fdisk(sfx)" pos="168 716" size="normal" stroke="black" fill="white"/>
-</page>
-</ipe>
diff --git a/doc/Witness_complex/Witness_complex_representation.png b/doc/Witness_complex/Witness_complex_representation.png
deleted file mode 100644
index 16e0504e..00000000
--- a/doc/Witness_complex/Witness_complex_representation.png
+++ /dev/null
Binary files differ
diff --git a/doc/Witness_complex/bench_Cy8.png b/doc/Witness_complex/bench_Cy8.png
deleted file mode 100644
index d9045294..00000000
--- a/doc/Witness_complex/bench_Cy8.png
+++ /dev/null
Binary files differ
diff --git a/doc/Witness_complex/bench_sphere.png b/doc/Witness_complex/bench_sphere.png
deleted file mode 100644
index ba6bb381..00000000
--- a/doc/Witness_complex/bench_sphere.png
+++ /dev/null
Binary files differ
diff --git a/doc/Witness_complex/swit.svg b/doc/Witness_complex/swit.svg
deleted file mode 100644
index 6ffb5fff..00000000
--- a/doc/Witness_complex/swit.svg
+++ /dev/null
@@ -1,1303 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:ns0="http://www.iki.fi/pav/software/textext/"
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="113.73116mm"
- height="84.14254mm"
- viewBox="0 0 402.98441 298.14286"
- id="svg2"
- version="1.1"
- inkscape:version="0.91 r13725"
- sodipodi:docname="swit.svg">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="0.98994949"
- inkscape:cx="402.72174"
- inkscape:cy="258.46971"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- showgrid="false"
- inkscape:window-width="1366"
- inkscape:window-height="704"
- inkscape:window-x="0"
- inkscape:window-y="27"
- inkscape:window-maximized="1"
- fit-margin-top="0"
- fit-margin-left="0"
- fit-margin-right="0"
- fit-margin-bottom="0" />
- <defs
- id="defs4">
- <marker
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lend"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- id="path5009"
- d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
- style="fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000080;stroke-width:1pt;stroke-opacity:1"
- transform="matrix(-0.8,0,0,-0.8,-10,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lend-8"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- id="path5009-5"
- d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
- style="fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000080;stroke-width:1pt;stroke-opacity:1"
- transform="matrix(-0.8,0,0,-0.8,-10,0)" />
- </marker>
- </defs>
- <metadata
- id="metadata7">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title></dc:title>
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- transform="translate(-130.29351,-300.82484)"
- id="layer1"
- inkscape:groupmode="layer"
- inkscape:label="Layer 1">
- <circle
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- r="148.57143"
- cy="449.89627"
- cx="338.71756"
- id="path4136"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <path
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 318.19805,571.02449 0,-94.95433 -64.64976,-92.42896 164.14979,-30.80966 42.4264,120.71323 -141.92643,3.03046 100.0051,-123.23861 z"
- id="path4301"
- inkscape:connector-curvature="0" />
- <path
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 318.70313,571.52957 -65.65992,-187.3833 206.5762,88.89343 z"
- id="path4303"
- inkscape:connector-curvature="0" />
- <circle
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- r="2.7779195"
- cy="450.05875"
- cx="338.13837"
- id="path4138"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <g
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- id="g4147"
- ns0:preamble="/home/siarzhuk/GitDrive/2015Gudhi/Aid/preamble.ini"
- ns0:text="$w$"
- transform="matrix(2.7020226,0,0,2.7020226,-261.85036,103.80999)"
- style="fill:#000080">
- <defs
- id="defs4149">
- <g
- id="g4151">
- <symbol
- id="textext-20f8880a-0"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path4154"
- d=""
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- id="textext-20f8880a-1"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path4157"
- d="M 4.609375,-3.375 C 4.65625,-3.59375 4.75,-3.96875 4.75,-4.03125 c 0,-0.171875 -0.140625,-0.265625 -0.28125,-0.265625 -0.125,0 -0.296875,0.078125 -0.375,0.28125 -0.03125,0.0625 -0.5,1.96875 -0.5625,2.234375 C 3.453125,-1.484375 3.4375,-1.3125 3.4375,-1.125 c 0,0.109375 0,0.125 0.015625,0.171875 -0.234375,0.53125 -0.53125,0.84375 -0.921875,0.84375 -0.796875,0 -0.796875,-0.734375 -0.796875,-0.90625 0,-0.3125 0.046875,-0.703125 0.515625,-1.9375 0.109375,-0.296875 0.171875,-0.4375 0.171875,-0.640625 0,-0.4375 -0.328125,-0.8125 -0.8125,-0.8125 -0.953125,0 -1.3125,1.453125 -1.3125,1.53125 0,0.109375 0.09375,0.109375 0.109375,0.109375 0.109375,0 0.109375,-0.03125 0.15625,-0.1875 C 0.84375,-3.875 1.21875,-4.1875 1.578125,-4.1875 c 0.09375,0 0.25,0.015625 0.25,0.328125 0,0.25 -0.109375,0.53125 -0.1875,0.703125 -0.4375,1.171875 -0.546875,1.625 -0.546875,2.015625 0,0.90625 0.65625,1.25 1.40625,1.25 0.171875,0 0.640625,0 1.03125,-0.703125 0.265625,0.640625 0.953125,0.703125 1.25,0.703125 0.75,0 1.1875,-0.625 1.453125,-1.21875 0.328125,-0.78125 0.65625,-2.125 0.65625,-2.59375 0,-0.546875 -0.265625,-0.703125 -0.4375,-0.703125 -0.25,0 -0.5,0.265625 -0.5,0.484375 0,0.125 0.0625,0.1875 0.140625,0.265625 0.109375,0.109375 0.359375,0.359375 0.359375,0.84375 0,0.34375 -0.28125,1.3125 -0.546875,1.828125 -0.25,0.53125 -0.609375,0.875 -1.09375,0.875 -0.46875,0 -0.734375,-0.296875 -0.734375,-0.875 0,-0.265625 0.0625,-0.578125 0.109375,-0.71875 z m 0,0"
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- </g>
- </defs>
- <g
- id="textext-20f8880a-2"
- style="fill:#000080">
- <g
- id="g4160"
- style="fill:#000080;fill-opacity:1">
- <use
- id="use4162"
- y="134.765"
- x="223.43201"
- xlink:href="#textext-20f8880a-1"
- width="100%"
- height="100%"
- style="fill:#000080" />
- </g>
- </g>
- </g>
- <circle
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- r="2.7779195"
- cy="383.79077"
- cx="252.85715"
- id="path4138-3"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <circle
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- r="2.7779195"
- cy="353.07648"
- cx="418.57144"
- id="path4138-3-7"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <circle
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- r="2.7779195"
- cy="475.93362"
- cx="317.85715"
- id="path4138-3-0"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <circle
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- r="2.7779195"
- cy="570.21936"
- cx="317.85715"
- id="path4138-3-9"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <circle
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- r="2.7779195"
- cy="473.07648"
- cx="459.28571"
- id="path4138-3-3"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <circle
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- r="2.7779195"
- cy="478.07648"
- cx="133.57143"
- id="path4138-3-6"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <circle
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- r="2.7779195"
- cy="320.21936"
- cx="155.71428"
- id="path4138-3-06"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <circle
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- r="2.7779195"
- cy="340.73929"
- cx="490.7774"
- id="path4138-3-2"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <circle
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- r="2.7779195"
- cy="559.76758"
- cx="490.60406"
- id="path4138-3-61"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <g
- id="g4147-8"
- ns0:preamble="/home/siarzhuk/GitDrive/2015Gudhi/Aid/preamble.ini"
- ns0:text="$w$"
- transform="matrix(2.7020226,0,0,2.7020226,-152.29409,72.785446)"
- style="fill:#000000">
- <defs
- id="defs4149-7">
- <g
- id="g4151-9">
- <symbol
- id="textext-20f8880a-0-2"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path4154-0"
- d=""
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- id="textext-20f8880a-1-2"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path4157-3"
- d="M 4.609375,-3.375 C 4.65625,-3.59375 4.75,-3.96875 4.75,-4.03125 c 0,-0.171875 -0.140625,-0.265625 -0.28125,-0.265625 -0.125,0 -0.296875,0.078125 -0.375,0.28125 -0.03125,0.0625 -0.5,1.96875 -0.5625,2.234375 C 3.453125,-1.484375 3.4375,-1.3125 3.4375,-1.125 c 0,0.109375 0,0.125 0.015625,0.171875 -0.234375,0.53125 -0.53125,0.84375 -0.921875,0.84375 -0.796875,0 -0.796875,-0.734375 -0.796875,-0.90625 0,-0.3125 0.046875,-0.703125 0.515625,-1.9375 0.109375,-0.296875 0.171875,-0.4375 0.171875,-0.640625 0,-0.4375 -0.328125,-0.8125 -0.8125,-0.8125 -0.953125,0 -1.3125,1.453125 -1.3125,1.53125 0,0.109375 0.09375,0.109375 0.109375,0.109375 0.109375,0 0.109375,-0.03125 0.15625,-0.1875 C 0.84375,-3.875 1.21875,-4.1875 1.578125,-4.1875 c 0.09375,0 0.25,0.015625 0.25,0.328125 0,0.25 -0.109375,0.53125 -0.1875,0.703125 -0.4375,1.171875 -0.546875,1.625 -0.546875,2.015625 0,0.90625 0.65625,1.25 1.40625,1.25 0.171875,0 0.640625,0 1.03125,-0.703125 0.265625,0.640625 0.953125,0.703125 1.25,0.703125 0.75,0 1.1875,-0.625 1.453125,-1.21875 0.328125,-0.78125 0.65625,-2.125 0.65625,-2.59375 0,-0.546875 -0.265625,-0.703125 -0.4375,-0.703125 -0.25,0 -0.5,0.265625 -0.5,0.484375 0,0.125 0.0625,0.1875 0.140625,0.265625 0.109375,0.109375 0.359375,0.359375 0.359375,0.84375 0,0.34375 -0.28125,1.3125 -0.546875,1.828125 -0.25,0.53125 -0.609375,0.875 -1.09375,0.875 -0.46875,0 -0.734375,-0.296875 -0.734375,-0.875 0,-0.265625 0.0625,-0.578125 0.109375,-0.71875 z m 0,0"
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- </g>
- </defs>
- <g
- id="textext-20f8880a-2-7"
- style="fill:#000000" />
- </g>
- <g
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- id="g4558"
- style="fill:#000080"
- transform="matrix(2.7020226,0,0,2.7020226,-254.3195,202.59004)"
- ns0:preamble="/home/siarzhuk/GitDrive/2015Gudhi/Aid/preamble.ini"
- ns0:text="$\\sigma \\subset L$">
- <defs
- id="defs4560">
- <g
- id="g4562">
- <symbol
- id="textext-b73c230a-0"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path4565"
- d=""
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- id="textext-b73c230a-1"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path4568"
- d="m 5.15625,-3.71875 c 0.140625,0 0.5,0 0.5,-0.34375 0,-0.234375 -0.21875,-0.234375 -0.390625,-0.234375 l -2.28125,0 c -1.5,0 -2.609375,1.640625 -2.609375,2.828125 0,0.875 0.59375,1.578125 1.5,1.578125 1.171875,0 2.5,-1.203125 2.5,-2.734375 0,-0.171875 0,-0.65625 -0.3125,-1.09375 z M 1.890625,-0.109375 C 1.390625,-0.109375 1,-0.46875 1,-1.1875 c 0,-0.296875 0.109375,-1.109375 0.46875,-1.703125 0.421875,-0.6875 1.015625,-0.828125 1.359375,-0.828125 0.828125,0 0.90625,0.65625 0.90625,0.96875 0,0.46875 -0.203125,1.28125 -0.53125,1.796875 -0.390625,0.578125 -0.9375,0.84375 -1.3125,0.84375 z m 0,0"
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- id="textext-b73c230a-2"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path4571"
- d="M 3.734375,-6.03125 C 3.8125,-6.390625 3.84375,-6.5 4.78125,-6.5 c 0.296875,0 0.375,0 0.375,-0.1875 0,-0.125 -0.109375,-0.125 -0.15625,-0.125 -0.328125,0 -1.140625,0.03125 -1.46875,0.03125 -0.296875,0 -1.03125,-0.03125 -1.328125,-0.03125 -0.0625,0 -0.1875,0 -0.1875,0.203125 0,0.109375 0.09375,0.109375 0.28125,0.109375 0.015625,0 0.203125,0 0.375,0.015625 0.171875,0.03125 0.265625,0.03125 0.265625,0.171875 0,0.03125 0,0.0625 -0.03125,0.1875 L 1.5625,-0.78125 c -0.09375,0.390625 -0.109375,0.46875 -0.90625,0.46875 -0.171875,0 -0.265625,0 -0.265625,0.203125 C 0.390625,0 0.484375,0 0.65625,0 l 4.625,0 C 5.515625,0 5.515625,0 5.578125,-0.171875 L 6.375,-2.328125 c 0.03125,-0.109375 0.03125,-0.125 0.03125,-0.140625 0,-0.03125 -0.03125,-0.109375 -0.109375,-0.109375 -0.09375,0 -0.109375,0.0625 -0.171875,0.21875 -0.34375,0.90625 -0.78125,2.046875 -2.5,2.046875 l -0.9375,0 c -0.140625,0 -0.171875,0 -0.21875,0 -0.109375,-0.015625 -0.140625,-0.03125 -0.140625,-0.109375 0,-0.03125 0,-0.046875 0.046875,-0.21875 z m 0,0"
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- id="textext-b73c230a-3"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path4574"
- d=""
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- id="textext-b73c230a-4"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path4577"
- d="m 6.5625,-4.984375 c 0.171875,0 0.359375,0 0.359375,-0.203125 0,-0.203125 -0.1875,-0.203125 -0.359375,-0.203125 l -2.671875,0 c -1.703125,0 -3.0625,1.296875 -3.0625,2.890625 0,1.609375 1.359375,2.90625 3.0625,2.90625 l 2.671875,0 c 0.171875,0 0.359375,0 0.359375,-0.203125 C 6.921875,0 6.734375,0 6.5625,0 L 3.90625,0 c -1.546875,0 -2.6875,-1.15625 -2.6875,-2.5 0,-1.328125 1.140625,-2.484375 2.6875,-2.484375 z m 0,0"
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- </g>
- </defs>
- <g
- id="textext-b73c230a-5">
- <g
- id="g4580"
- style="fill:#000000;fill-opacity:1">
- <use
- id="use4582"
- y="134.765"
- x="223.43201"
- xlink:href="#textext-b73c230a-1"
- width="100%"
- height="100%" />
- </g>
- <g
- id="g4584"
- style="fill:#000000;fill-opacity:1">
- <use
- id="use4586"
- y="134.765"
- x="232.25"
- xlink:href="#textext-b73c230a-4"
- width="100%"
- height="100%" />
- </g>
- <g
- id="g4588"
- style="fill:#000000;fill-opacity:1">
- <use
- id="use4590"
- y="134.765"
- x="242.76601"
- xlink:href="#textext-b73c230a-2"
- width="100%"
- height="100%" />
- </g>
- </g>
- </g>
- <path
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- style="fill:#000080;fill-rule:evenodd;stroke:#000080;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Lend)"
- d="m 337.85714,449.50504 148.57143,-8.57143"
- id="path5000"
- inkscape:connector-curvature="0" />
- <g
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- ns0:text="$\\sqrt{d(w,L)^2 + \\alpha^2}$"
- ns0:preamble="/home/siarzhuk/GitDrive/2015Gudhi/Aid/preamble.ini"
- transform="matrix(1.3935573,-0.10159094,0.10159094,1.3935573,55.220877,276.38005)"
- style="fill:#000080;stroke:#000080"
- id="g5407">
- <defs
- id="defs5409">
- <g
- id="g5411">
- <symbol
- style="overflow:visible"
- overflow="visible"
- id="textext-da5ef958-0">
- <path
- inkscape:connector-curvature="0"
- style="stroke:none"
- d=""
- id="path5414" />
- </symbol>
- <symbol
- style="overflow:visible"
- overflow="visible"
- id="textext-da5ef958-1">
- <path
- inkscape:connector-curvature="0"
- style="stroke:none"
- d="m 4.234375,11.5625 c 0.296875,0 0.3125,-0.01563 0.40625,-0.203125 l 5.453125,-11.375 c 0.07813,-0.140625 0.07813,-0.15625 0.07813,-0.1875 0,-0.109375 -0.07813,-0.203125 -0.203125,-0.203125 -0.125,0 -0.171875,0.09375 -0.21875,0.203125 L 4.609375,10.53125 2.484375,5.578125 1.09375,6.65625 1.25,6.8125 1.953125,6.265625 Z m 0,0"
- id="path5417" />
- </symbol>
- <symbol
- style="overflow:visible"
- overflow="visible"
- id="textext-da5ef958-2">
- <path
- inkscape:connector-curvature="0"
- style="stroke:none"
- d=""
- id="path5420" />
- </symbol>
- <symbol
- style="overflow:visible"
- overflow="visible"
- id="textext-da5ef958-3">
- <path
- inkscape:connector-curvature="0"
- style="stroke:none"
- d="m 5.140625,-6.8125 c 0,0 0,-0.109375 -0.125,-0.109375 -0.15625,0 -1.09375,0.09375 -1.265625,0.109375 -0.078125,0.015625 -0.140625,0.0625 -0.140625,0.1875 0,0.125 0.09375,0.125 0.234375,0.125 0.484375,0 0.5,0.0625 0.5,0.171875 L 4.3125,-6.125 3.71875,-3.765625 C 3.53125,-4.140625 3.25,-4.40625 2.796875,-4.40625 c -1.15625,0 -2.390625,1.46875 -2.390625,2.921875 0,0.9375 0.546875,1.59375 1.3125,1.59375 0.203125,0 0.703125,-0.046875 1.296875,-0.75 0.078125,0.421875 0.4375,0.75 0.90625,0.75 0.359375,0 0.578125,-0.234375 0.75,-0.546875 0.15625,-0.359375 0.296875,-0.96875 0.296875,-0.984375 0,-0.109375 -0.09375,-0.109375 -0.125,-0.109375 -0.09375,0 -0.109375,0.046875 -0.140625,0.1875 -0.171875,0.640625 -0.34375,1.234375 -0.75,1.234375 -0.28125,0 -0.296875,-0.265625 -0.296875,-0.453125 0,-0.25 0.015625,-0.3125 0.046875,-0.484375 z m -2.0625,5.625 C 3.015625,-1 3.015625,-0.984375 2.875,-0.8125 2.4375,-0.265625 2.03125,-0.109375 1.75,-0.109375 c -0.5,0 -0.640625,-0.546875 -0.640625,-0.9375 0,-0.5 0.3125,-1.71875 0.546875,-2.1875 0.3125,-0.578125 0.75,-0.953125 1.15625,-0.953125 0.640625,0 0.78125,0.8125 0.78125,0.875 0,0.0625 -0.015625,0.125 -0.03125,0.171875 z m 0,0"
- id="path5423" />
- </symbol>
- <symbol
- style="overflow:visible"
- overflow="visible"
- id="textext-da5ef958-4">
- <path
- inkscape:connector-curvature="0"
- style="stroke:none"
- d="M 4.609375,-3.375 C 4.65625,-3.59375 4.75,-3.96875 4.75,-4.03125 c 0,-0.171875 -0.140625,-0.265625 -0.28125,-0.265625 -0.125,0 -0.296875,0.078125 -0.375,0.28125 -0.03125,0.0625 -0.5,1.96875 -0.5625,2.234375 C 3.453125,-1.484375 3.4375,-1.3125 3.4375,-1.125 c 0,0.109375 0,0.125 0.015625,0.171875 -0.234375,0.53125 -0.53125,0.84375 -0.921875,0.84375 -0.796875,0 -0.796875,-0.734375 -0.796875,-0.90625 0,-0.3125 0.046875,-0.703125 0.515625,-1.9375 0.109375,-0.296875 0.171875,-0.4375 0.171875,-0.640625 0,-0.4375 -0.328125,-0.8125 -0.8125,-0.8125 -0.953125,0 -1.3125,1.453125 -1.3125,1.53125 0,0.109375 0.09375,0.109375 0.109375,0.109375 0.109375,0 0.109375,-0.03125 0.15625,-0.1875 C 0.84375,-3.875 1.21875,-4.1875 1.578125,-4.1875 c 0.09375,0 0.25,0.015625 0.25,0.328125 0,0.25 -0.109375,0.53125 -0.1875,0.703125 -0.4375,1.171875 -0.546875,1.625 -0.546875,2.015625 0,0.90625 0.65625,1.25 1.40625,1.25 0.171875,0 0.640625,0 1.03125,-0.703125 0.265625,0.640625 0.953125,0.703125 1.25,0.703125 0.75,0 1.1875,-0.625 1.453125,-1.21875 0.328125,-0.78125 0.65625,-2.125 0.65625,-2.59375 0,-0.546875 -0.265625,-0.703125 -0.4375,-0.703125 -0.25,0 -0.5,0.265625 -0.5,0.484375 0,0.125 0.0625,0.1875 0.140625,0.265625 0.109375,0.109375 0.359375,0.359375 0.359375,0.84375 0,0.34375 -0.28125,1.3125 -0.546875,1.828125 -0.25,0.53125 -0.609375,0.875 -1.09375,0.875 -0.46875,0 -0.734375,-0.296875 -0.734375,-0.875 0,-0.265625 0.0625,-0.578125 0.109375,-0.71875 z m 0,0"
- id="path5426" />
- </symbol>
- <symbol
- style="overflow:visible"
- overflow="visible"
- id="textext-da5ef958-5">
- <path
- inkscape:connector-curvature="0"
- style="stroke:none"
- d="m 2.03125,-0.015625 c 0,-0.65625 -0.25,-1.046875 -0.640625,-1.046875 -0.328125,0 -0.53125,0.25 -0.53125,0.53125 C 0.859375,-0.265625 1.0625,0 1.390625,0 1.5,0 1.640625,-0.046875 1.734375,-0.125 1.765625,-0.15625 1.78125,-0.15625 1.78125,-0.15625 c 0.015625,0 0.015625,0 0.015625,0.140625 0,0.75 -0.34375,1.34375 -0.671875,1.671875 -0.109375,0.109375 -0.109375,0.125 -0.109375,0.15625 0,0.078125 0.046875,0.109375 0.09375,0.109375 0.109375,0 0.921875,-0.765625 0.921875,-1.9375 z m 0,0"
- id="path5429" />
- </symbol>
- <symbol
- style="overflow:visible"
- overflow="visible"
- id="textext-da5ef958-6">
- <path
- inkscape:connector-curvature="0"
- style="stroke:none"
- d="M 3.734375,-6.03125 C 3.8125,-6.390625 3.84375,-6.5 4.78125,-6.5 c 0.296875,0 0.375,0 0.375,-0.1875 0,-0.125 -0.109375,-0.125 -0.15625,-0.125 -0.328125,0 -1.140625,0.03125 -1.46875,0.03125 -0.296875,0 -1.03125,-0.03125 -1.328125,-0.03125 -0.0625,0 -0.1875,0 -0.1875,0.203125 0,0.109375 0.09375,0.109375 0.28125,0.109375 0.015625,0 0.203125,0 0.375,0.015625 0.171875,0.03125 0.265625,0.03125 0.265625,0.171875 0,0.03125 0,0.0625 -0.03125,0.1875 L 1.5625,-0.78125 c -0.09375,0.390625 -0.109375,0.46875 -0.90625,0.46875 -0.171875,0 -0.265625,0 -0.265625,0.203125 C 0.390625,0 0.484375,0 0.65625,0 l 4.625,0 C 5.515625,0 5.515625,0 5.578125,-0.171875 L 6.375,-2.328125 c 0.03125,-0.109375 0.03125,-0.125 0.03125,-0.140625 0,-0.03125 -0.03125,-0.109375 -0.109375,-0.109375 -0.09375,0 -0.109375,0.0625 -0.171875,0.21875 -0.34375,0.90625 -0.78125,2.046875 -2.5,2.046875 l -0.9375,0 c -0.140625,0 -0.171875,0 -0.21875,0 -0.109375,-0.015625 -0.140625,-0.03125 -0.140625,-0.109375 0,-0.03125 0,-0.046875 0.046875,-0.21875 z m 0,0"
- id="path5432" />
- </symbol>
- <symbol
- style="overflow:visible"
- overflow="visible"
- id="textext-da5ef958-7">
- <path
- inkscape:connector-curvature="0"
- style="stroke:none"
- d="m 4.75,-2.359375 c 0,-1.5625 -0.921875,-2.046875 -1.65625,-2.046875 -1.375,0 -2.6875,1.421875 -2.6875,2.828125 0,0.9375 0.59375,1.6875 1.625,1.6875 0.625,0 1.34375,-0.234375 2.09375,-0.84375 0.125,0.53125 0.453125,0.84375 0.90625,0.84375 0.53125,0 0.84375,-0.546875 0.84375,-0.703125 0,-0.078125 -0.0625,-0.109375 -0.125,-0.109375 -0.0625,0 -0.09375,0.03125 -0.125,0.109375 -0.1875,0.484375 -0.546875,0.484375 -0.5625,0.484375 -0.3125,0 -0.3125,-0.78125 -0.3125,-1.015625 0,-0.203125 0,-0.234375 0.109375,-0.34375 C 5.796875,-2.65625 6,-3.8125 6,-3.8125 6,-3.84375 5.984375,-3.921875 5.875,-3.921875 c -0.09375,0 -0.09375,0.03125 -0.140625,0.21875 -0.1875,0.625 -0.515625,1.375 -0.984375,1.96875 z m -0.65625,1.375 c -0.890625,0.765625 -1.65625,0.875 -2.046875,0.875 -0.59375,0 -0.90625,-0.453125 -0.90625,-1.09375 0,-0.484375 0.265625,-1.5625 0.578125,-2.0625 C 2.1875,-4 2.734375,-4.1875 3.078125,-4.1875 c 0.984375,0 0.984375,1.3125 0.984375,2.078125 0,0.375 0,0.953125 0.03125,1.125 z m 0,0"
- id="path5435" />
- </symbol>
- <symbol
- style="overflow:visible"
- overflow="visible"
- id="textext-da5ef958-8">
- <path
- inkscape:connector-curvature="0"
- style="stroke:none"
- d=""
- id="path5438" />
- </symbol>
- <symbol
- style="overflow:visible"
- overflow="visible"
- id="textext-da5ef958-9">
- <path
- inkscape:connector-curvature="0"
- style="stroke:none"
- d="m 3.296875,2.390625 c 0,-0.03125 0,-0.046875 -0.171875,-0.21875 C 1.890625,0.921875 1.5625,-0.96875 1.5625,-2.5 c 0,-1.734375 0.375,-3.46875 1.609375,-4.703125 0.125,-0.125 0.125,-0.140625 0.125,-0.171875 0,-0.078125 -0.03125,-0.109375 -0.09375,-0.109375 -0.109375,0 -1,0.6875 -1.59375,1.953125 -0.5,1.09375 -0.625,2.203125 -0.625,3.03125 0,0.78125 0.109375,1.984375 0.65625,3.125 C 2.25,1.84375 3.09375,2.5 3.203125,2.5 c 0.0625,0 0.09375,-0.03125 0.09375,-0.109375 z m 0,0"
- id="path5441" />
- </symbol>
- <symbol
- style="overflow:visible"
- overflow="visible"
- id="textext-da5ef958-10">
- <path
- inkscape:connector-curvature="0"
- style="stroke:none"
- d="m 2.875,-2.5 c 0,-0.765625 -0.109375,-1.96875 -0.65625,-3.109375 -0.59375,-1.21875 -1.453125,-1.875 -1.546875,-1.875 -0.0625,0 -0.109375,0.046875 -0.109375,0.109375 0,0.03125 0,0.046875 0.1875,0.234375 0.984375,0.984375 1.546875,2.5625 1.546875,4.640625 0,1.71875 -0.359375,3.46875 -1.59375,4.71875 C 0.5625,2.34375 0.5625,2.359375 0.5625,2.390625 0.5625,2.453125 0.609375,2.5 0.671875,2.5 0.765625,2.5 1.671875,1.8125 2.25,0.546875 2.765625,-0.546875 2.875,-1.65625 2.875,-2.5 Z m 0,0"
- id="path5444" />
- </symbol>
- <symbol
- style="overflow:visible"
- overflow="visible"
- id="textext-da5ef958-11">
- <path
- inkscape:connector-curvature="0"
- style="stroke:none"
- d="m 4.078125,-2.296875 2.78125,0 C 7,-2.296875 7.1875,-2.296875 7.1875,-2.5 7.1875,-2.6875 7,-2.6875 6.859375,-2.6875 l -2.78125,0 0,-2.796875 c 0,-0.140625 0,-0.328125 -0.203125,-0.328125 -0.203125,0 -0.203125,0.1875 -0.203125,0.328125 l 0,2.796875 -2.78125,0 c -0.140625,0 -0.328125,0 -0.328125,0.1875 0,0.203125 0.1875,0.203125 0.328125,0.203125 l 2.78125,0 0,2.796875 c 0,0.140625 0,0.328125 0.203125,0.328125 0.203125,0 0.203125,-0.1875 0.203125,-0.328125 z m 0,0"
- id="path5447" />
- </symbol>
- <symbol
- style="overflow:visible"
- overflow="visible"
- id="textext-da5ef958-12">
- <path
- inkscape:connector-curvature="0"
- style="stroke:none"
- d=""
- id="path5450" />
- </symbol>
- <symbol
- style="overflow:visible"
- overflow="visible"
- id="textext-da5ef958-13">
- <path
- inkscape:connector-curvature="0"
- style="stroke:none"
- d="m 3.515625,-1.265625 -0.234375,0 c -0.015625,0.15625 -0.09375,0.5625 -0.1875,0.625 -0.046875,0.046875 -0.578125,0.046875 -0.6875,0.046875 l -1.28125,0 c 0.734375,-0.640625 0.984375,-0.84375 1.390625,-1.171875 0.515625,-0.40625 1,-0.84375 1,-1.5 0,-0.84375 -0.734375,-1.359375 -1.625,-1.359375 -0.859375,0 -1.453125,0.609375 -1.453125,1.25 0,0.34375 0.296875,0.390625 0.375,0.390625 0.15625,0 0.359375,-0.125 0.359375,-0.375 0,-0.125 -0.046875,-0.375 -0.40625,-0.375 C 0.984375,-4.21875 1.453125,-4.375 1.78125,-4.375 c 0.703125,0 1.0625,0.546875 1.0625,1.109375 0,0.609375 -0.4375,1.078125 -0.65625,1.328125 L 0.515625,-0.265625 C 0.4375,-0.203125 0.4375,-0.1875 0.4375,0 l 2.875,0 z m 0,0"
- id="path5453" />
- </symbol>
- </g>
- </defs>
- <g
- style="fill:#000080;stroke:#000080"
- id="textext-da5ef958-14">
- <g
- style="fill:#000080;fill-opacity:1;stroke:#000080"
- id="g5456">
- <use
- style="fill:#000080;stroke:#000080"
- height="100%"
- width="100%"
- xlink:href="#textext-da5ef958-1"
- x="223.43201"
- y="126.247"
- id="use5458" />
- </g>
- <path
- inkscape:connector-curvature="0"
- style="fill:#000080;stroke:#000080;stroke-width:0.398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
- d="m -4.6875e-4,0.001125 59.07031275,0"
- transform="matrix(1,0,0,-1,233.395,126.048)"
- id="path5460" />
- <g
- style="fill:#000080;fill-opacity:1;stroke:#000080"
- id="g5462">
- <use
- style="fill:#000080;stroke:#000080"
- height="100%"
- width="100%"
- xlink:href="#textext-da5ef958-3"
- x="233.395"
- y="134.765"
- id="use5464" />
- </g>
- <g
- style="fill:#000080;fill-opacity:1;stroke:#000080"
- id="g5466">
- <use
- style="fill:#000080;stroke:#000080"
- height="100%"
- width="100%"
- xlink:href="#textext-da5ef958-9"
- x="238.58"
- y="134.765"
- id="use5468" />
- </g>
- <g
- style="fill:#000080;fill-opacity:1;stroke:#000080"
- id="g5470">
- <use
- style="fill:#000080;stroke:#000080"
- height="100%"
- width="100%"
- xlink:href="#textext-da5ef958-4"
- x="242.455"
- y="134.765"
- id="use5472" />
- </g>
- <g
- style="fill:#000080;fill-opacity:1;stroke:#000080"
- id="g5474">
- <use
- style="fill:#000080;stroke:#000080"
- height="100%"
- width="100%"
- xlink:href="#textext-da5ef958-5"
- x="249.85622"
- y="134.765"
- id="use5476" />
- </g>
- <g
- style="fill:#000080;fill-opacity:1;stroke:#000080"
- id="g5478">
- <use
- style="fill:#000080;stroke:#000080"
- height="100%"
- width="100%"
- xlink:href="#textext-da5ef958-6"
- x="254.28758"
- y="134.765"
- id="use5480" />
- </g>
- <g
- style="fill:#000080;fill-opacity:1;stroke:#000080"
- id="g5482">
- <use
- style="fill:#000080;stroke:#000080"
- height="100%"
- width="100%"
- xlink:href="#textext-da5ef958-10"
- x="261.06299"
- y="134.765"
- id="use5484" />
- </g>
- <g
- style="fill:#000080;fill-opacity:1;stroke:#000080"
- id="g5486">
- <use
- style="fill:#000080;stroke:#000080"
- height="100%"
- width="100%"
- xlink:href="#textext-da5ef958-13"
- x="264.93701"
- y="131.88699"
- id="use5488" />
- </g>
- <g
- style="fill:#000080;fill-opacity:1;stroke:#000080"
- id="g5490">
- <use
- style="fill:#000080;stroke:#000080"
- height="100%"
- width="100%"
- xlink:href="#textext-da5ef958-11"
- x="271.621"
- y="134.765"
- id="use5492" />
- </g>
- <g
- style="fill:#000080;fill-opacity:1;stroke:#000080"
- id="g5494">
- <use
- style="fill:#000080;stroke:#000080"
- height="100%"
- width="100%"
- xlink:href="#textext-da5ef958-7"
- x="281.58301"
- y="134.765"
- id="use5496" />
- </g>
- <g
- style="fill:#000080;fill-opacity:1;stroke:#000080"
- id="g5498">
- <use
- style="fill:#000080;stroke:#000080"
- height="100%"
- width="100%"
- xlink:href="#textext-da5ef958-13"
- x="287.99301"
- y="131.88699"
- id="use5500" />
- </g>
- </g>
- </g>
- <circle
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- r="148.57143"
- cy="449.89627"
- cx="738.71753"
- id="path4136-7"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <circle
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- r="2.7779195"
- cy="450.05875"
- cx="738.13837"
- id="path4138-8"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <g
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- id="g4147-5"
- ns0:preamble="/home/siarzhuk/GitDrive/2015Gudhi/Aid/preamble.ini"
- ns0:text="$w$"
- transform="matrix(2.7020226,0,0,2.7020226,138.14964,103.80999)"
- style="fill:#000080">
- <defs
- id="defs4149-9">
- <g
- id="g4151-7">
- <symbol
- id="textext-20f8880a-0-5"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path4154-3"
- d=""
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- id="textext-20f8880a-1-8"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path4157-8"
- d="M 4.609375,-3.375 C 4.65625,-3.59375 4.75,-3.96875 4.75,-4.03125 c 0,-0.171875 -0.140625,-0.265625 -0.28125,-0.265625 -0.125,0 -0.296875,0.078125 -0.375,0.28125 -0.03125,0.0625 -0.5,1.96875 -0.5625,2.234375 C 3.453125,-1.484375 3.4375,-1.3125 3.4375,-1.125 c 0,0.109375 0,0.125 0.015625,0.171875 -0.234375,0.53125 -0.53125,0.84375 -0.921875,0.84375 -0.796875,0 -0.796875,-0.734375 -0.796875,-0.90625 0,-0.3125 0.046875,-0.703125 0.515625,-1.9375 0.109375,-0.296875 0.171875,-0.4375 0.171875,-0.640625 0,-0.4375 -0.328125,-0.8125 -0.8125,-0.8125 -0.953125,0 -1.3125,1.453125 -1.3125,1.53125 0,0.109375 0.09375,0.109375 0.109375,0.109375 0.109375,0 0.109375,-0.03125 0.15625,-0.1875 C 0.84375,-3.875 1.21875,-4.1875 1.578125,-4.1875 c 0.09375,0 0.25,0.015625 0.25,0.328125 0,0.25 -0.109375,0.53125 -0.1875,0.703125 -0.4375,1.171875 -0.546875,1.625 -0.546875,2.015625 0,0.90625 0.65625,1.25 1.40625,1.25 0.171875,0 0.640625,0 1.03125,-0.703125 0.265625,0.640625 0.953125,0.703125 1.25,0.703125 0.75,0 1.1875,-0.625 1.453125,-1.21875 0.328125,-0.78125 0.65625,-2.125 0.65625,-2.59375 0,-0.546875 -0.265625,-0.703125 -0.4375,-0.703125 -0.25,0 -0.5,0.265625 -0.5,0.484375 0,0.125 0.0625,0.1875 0.140625,0.265625 0.109375,0.109375 0.359375,0.359375 0.359375,0.84375 0,0.34375 -0.28125,1.3125 -0.546875,1.828125 -0.25,0.53125 -0.609375,0.875 -1.09375,0.875 -0.46875,0 -0.734375,-0.296875 -0.734375,-0.875 0,-0.265625 0.0625,-0.578125 0.109375,-0.71875 z m 0,0"
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- </g>
- </defs>
- <g
- id="textext-20f8880a-2-3"
- style="fill:#000080">
- <g
- id="g4160-1"
- style="fill:#000080;fill-opacity:1">
- <use
- id="use4162-8"
- y="134.765"
- x="223.43201"
- xlink:href="#textext-20f8880a-1-8"
- width="100%"
- height="100%"
- style="fill:#000080" />
- </g>
- </g>
- </g>
- <circle
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- r="2.7779195"
- cy="342.37451"
- cx="681.14148"
- id="path4138-3-96"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <circle
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- r="2.7779195"
- cy="353.07648"
- cx="818.57141"
- id="path4138-3-7-4"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <circle
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- r="2.7779195"
- cy="492.09607"
- cx="668.35968"
- id="path4138-3-0-3"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <circle
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- r="2.7779195"
- cy="570.21936"
- cx="717.85718"
- id="path4138-3-9-3"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <circle
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- r="2.7779195"
- cy="473.07648"
- cx="859.28564"
- id="path4138-3-3-3"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <circle
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- r="2.7779195"
- cy="478.07648"
- cx="533.57141"
- id="path4138-3-6-8"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <circle
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- r="2.7779195"
- cy="350.52393"
- cx="594.1001"
- id="path4138-3-06-6"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <circle
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- r="2.7779195"
- cy="331.64792"
- cx="927.14288"
- id="path4138-3-2-0"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <circle
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- r="2.7779195"
- cy="505.21936"
- cx="930"
- id="path4138-3-61-4"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <g
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- id="g4558-8"
- style="fill:#000080"
- transform="matrix(2.7020226,0,0,2.7020226,145.6805,202.59004)"
- ns0:preamble="/home/siarzhuk/GitDrive/2015Gudhi/Aid/preamble.ini"
- ns0:text="$\\sigma \\subset L$">
- <defs
- id="defs4560-8">
- <g
- id="g4562-8">
- <symbol
- id="textext-b73c230a-0-9"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path4565-7"
- d=""
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- id="textext-b73c230a-1-7"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path4568-6"
- d="m 5.15625,-3.71875 c 0.140625,0 0.5,0 0.5,-0.34375 0,-0.234375 -0.21875,-0.234375 -0.390625,-0.234375 l -2.28125,0 c -1.5,0 -2.609375,1.640625 -2.609375,2.828125 0,0.875 0.59375,1.578125 1.5,1.578125 1.171875,0 2.5,-1.203125 2.5,-2.734375 0,-0.171875 0,-0.65625 -0.3125,-1.09375 z M 1.890625,-0.109375 C 1.390625,-0.109375 1,-0.46875 1,-1.1875 c 0,-0.296875 0.109375,-1.109375 0.46875,-1.703125 0.421875,-0.6875 1.015625,-0.828125 1.359375,-0.828125 0.828125,0 0.90625,0.65625 0.90625,0.96875 0,0.46875 -0.203125,1.28125 -0.53125,1.796875 -0.390625,0.578125 -0.9375,0.84375 -1.3125,0.84375 z m 0,0"
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- id="textext-b73c230a-2-4"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path4571-3"
- d="M 3.734375,-6.03125 C 3.8125,-6.390625 3.84375,-6.5 4.78125,-6.5 c 0.296875,0 0.375,0 0.375,-0.1875 0,-0.125 -0.109375,-0.125 -0.15625,-0.125 -0.328125,0 -1.140625,0.03125 -1.46875,0.03125 -0.296875,0 -1.03125,-0.03125 -1.328125,-0.03125 -0.0625,0 -0.1875,0 -0.1875,0.203125 0,0.109375 0.09375,0.109375 0.28125,0.109375 0.015625,0 0.203125,0 0.375,0.015625 0.171875,0.03125 0.265625,0.03125 0.265625,0.171875 0,0.03125 0,0.0625 -0.03125,0.1875 L 1.5625,-0.78125 c -0.09375,0.390625 -0.109375,0.46875 -0.90625,0.46875 -0.171875,0 -0.265625,0 -0.265625,0.203125 C 0.390625,0 0.484375,0 0.65625,0 l 4.625,0 C 5.515625,0 5.515625,0 5.578125,-0.171875 L 6.375,-2.328125 c 0.03125,-0.109375 0.03125,-0.125 0.03125,-0.140625 0,-0.03125 -0.03125,-0.109375 -0.109375,-0.109375 -0.09375,0 -0.109375,0.0625 -0.171875,0.21875 -0.34375,0.90625 -0.78125,2.046875 -2.5,2.046875 l -0.9375,0 c -0.140625,0 -0.171875,0 -0.21875,0 -0.109375,-0.015625 -0.140625,-0.03125 -0.140625,-0.109375 0,-0.03125 0,-0.046875 0.046875,-0.21875 z m 0,0"
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- id="textext-b73c230a-3-0"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path4574-3"
- d=""
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- id="textext-b73c230a-4-0"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path4577-9"
- d="m 6.5625,-4.984375 c 0.171875,0 0.359375,0 0.359375,-0.203125 0,-0.203125 -0.1875,-0.203125 -0.359375,-0.203125 l -2.671875,0 c -1.703125,0 -3.0625,1.296875 -3.0625,2.890625 0,1.609375 1.359375,2.90625 3.0625,2.90625 l 2.671875,0 c 0.171875,0 0.359375,0 0.359375,-0.203125 C 6.921875,0 6.734375,0 6.5625,0 L 3.90625,0 c -1.546875,0 -2.6875,-1.15625 -2.6875,-2.5 0,-1.328125 1.140625,-2.484375 2.6875,-2.484375 z m 0,0"
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- </g>
- </defs>
- <g
- id="textext-b73c230a-5-2">
- <g
- id="g4580-5"
- style="fill:#000000;fill-opacity:1">
- <use
- id="use4582-4"
- y="134.765"
- x="223.43201"
- xlink:href="#textext-b73c230a-1-7"
- width="100%"
- height="100%" />
- </g>
- <g
- id="g4584-0"
- style="fill:#000000;fill-opacity:1">
- <use
- id="use4586-5"
- y="134.765"
- x="232.25"
- xlink:href="#textext-b73c230a-4-0"
- width="100%"
- height="100%" />
- </g>
- <g
- id="g4588-9"
- style="fill:#000000;fill-opacity:1">
- <use
- id="use4590-4"
- y="134.765"
- x="242.76601"
- xlink:href="#textext-b73c230a-2-4"
- width="100%"
- height="100%" />
- </g>
- </g>
- </g>
- <path
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- style="fill:#000080;fill-rule:evenodd;stroke:#000080;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Lend-8)"
- d="m 737.85714,449.50504 148.57143,-8.57143"
- id="path5000-6"
- inkscape:connector-curvature="0" />
- <circle
- r="80.779091"
- cy="449.46512"
- cx="737.3952"
- id="path6334"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.98999999;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000080;stroke-width:1.06622958;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:3.19868871, 3.19868871;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <g
- id="g6495"
- style="fill:#000080;stroke:#000080"
- transform="matrix(1.3952558,-0.07472613,0.07472613,1.3952558,431.03302,272.05923)"
- ns0:preamble="/home/siarzhuk/GitDrive/2015Gudhi/Aid/preamble.ini"
- ns0:text="$\\sqrt{d(w,L \\setminus \\sigma)^2 + \\alpha^2}$">
- <defs
- id="defs6497">
- <g
- id="g6499">
- <symbol
- id="textext-c0d6e8dc-0"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path6502"
- d=""
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- id="textext-c0d6e8dc-1"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path6505"
- d="m 4.234375,11.5625 c 0.296875,0 0.3125,-0.01563 0.40625,-0.203125 l 5.453125,-11.375 c 0.07813,-0.140625 0.07813,-0.15625 0.07813,-0.1875 0,-0.109375 -0.07813,-0.203125 -0.203125,-0.203125 -0.125,0 -0.171875,0.09375 -0.21875,0.203125 L 4.609375,10.53125 2.484375,5.578125 1.09375,6.65625 1.25,6.8125 1.953125,6.265625 Z m 0,0"
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- id="textext-c0d6e8dc-2"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path6508"
- d=""
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- id="textext-c0d6e8dc-3"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path6511"
- d="m 5.140625,-6.8125 c 0,0 0,-0.109375 -0.125,-0.109375 -0.15625,0 -1.09375,0.09375 -1.265625,0.109375 -0.078125,0.015625 -0.140625,0.0625 -0.140625,0.1875 0,0.125 0.09375,0.125 0.234375,0.125 0.484375,0 0.5,0.0625 0.5,0.171875 L 4.3125,-6.125 3.71875,-3.765625 C 3.53125,-4.140625 3.25,-4.40625 2.796875,-4.40625 c -1.15625,0 -2.390625,1.46875 -2.390625,2.921875 0,0.9375 0.546875,1.59375 1.3125,1.59375 0.203125,0 0.703125,-0.046875 1.296875,-0.75 0.078125,0.421875 0.4375,0.75 0.90625,0.75 0.359375,0 0.578125,-0.234375 0.75,-0.546875 0.15625,-0.359375 0.296875,-0.96875 0.296875,-0.984375 0,-0.109375 -0.09375,-0.109375 -0.125,-0.109375 -0.09375,0 -0.109375,0.046875 -0.140625,0.1875 -0.171875,0.640625 -0.34375,1.234375 -0.75,1.234375 -0.28125,0 -0.296875,-0.265625 -0.296875,-0.453125 0,-0.25 0.015625,-0.3125 0.046875,-0.484375 z m -2.0625,5.625 C 3.015625,-1 3.015625,-0.984375 2.875,-0.8125 2.4375,-0.265625 2.03125,-0.109375 1.75,-0.109375 c -0.5,0 -0.640625,-0.546875 -0.640625,-0.9375 0,-0.5 0.3125,-1.71875 0.546875,-2.1875 0.3125,-0.578125 0.75,-0.953125 1.15625,-0.953125 0.640625,0 0.78125,0.8125 0.78125,0.875 0,0.0625 -0.015625,0.125 -0.03125,0.171875 z m 0,0"
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- id="textext-c0d6e8dc-4"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path6514"
- d="M 4.609375,-3.375 C 4.65625,-3.59375 4.75,-3.96875 4.75,-4.03125 c 0,-0.171875 -0.140625,-0.265625 -0.28125,-0.265625 -0.125,0 -0.296875,0.078125 -0.375,0.28125 -0.03125,0.0625 -0.5,1.96875 -0.5625,2.234375 C 3.453125,-1.484375 3.4375,-1.3125 3.4375,-1.125 c 0,0.109375 0,0.125 0.015625,0.171875 -0.234375,0.53125 -0.53125,0.84375 -0.921875,0.84375 -0.796875,0 -0.796875,-0.734375 -0.796875,-0.90625 0,-0.3125 0.046875,-0.703125 0.515625,-1.9375 0.109375,-0.296875 0.171875,-0.4375 0.171875,-0.640625 0,-0.4375 -0.328125,-0.8125 -0.8125,-0.8125 -0.953125,0 -1.3125,1.453125 -1.3125,1.53125 0,0.109375 0.09375,0.109375 0.109375,0.109375 0.109375,0 0.109375,-0.03125 0.15625,-0.1875 C 0.84375,-3.875 1.21875,-4.1875 1.578125,-4.1875 c 0.09375,0 0.25,0.015625 0.25,0.328125 0,0.25 -0.109375,0.53125 -0.1875,0.703125 -0.4375,1.171875 -0.546875,1.625 -0.546875,2.015625 0,0.90625 0.65625,1.25 1.40625,1.25 0.171875,0 0.640625,0 1.03125,-0.703125 0.265625,0.640625 0.953125,0.703125 1.25,0.703125 0.75,0 1.1875,-0.625 1.453125,-1.21875 0.328125,-0.78125 0.65625,-2.125 0.65625,-2.59375 0,-0.546875 -0.265625,-0.703125 -0.4375,-0.703125 -0.25,0 -0.5,0.265625 -0.5,0.484375 0,0.125 0.0625,0.1875 0.140625,0.265625 0.109375,0.109375 0.359375,0.359375 0.359375,0.84375 0,0.34375 -0.28125,1.3125 -0.546875,1.828125 -0.25,0.53125 -0.609375,0.875 -1.09375,0.875 -0.46875,0 -0.734375,-0.296875 -0.734375,-0.875 0,-0.265625 0.0625,-0.578125 0.109375,-0.71875 z m 0,0"
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- id="textext-c0d6e8dc-5"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path6517"
- d="m 2.03125,-0.015625 c 0,-0.65625 -0.25,-1.046875 -0.640625,-1.046875 -0.328125,0 -0.53125,0.25 -0.53125,0.53125 C 0.859375,-0.265625 1.0625,0 1.390625,0 1.5,0 1.640625,-0.046875 1.734375,-0.125 1.765625,-0.15625 1.78125,-0.15625 1.78125,-0.15625 c 0.015625,0 0.015625,0 0.015625,0.140625 0,0.75 -0.34375,1.34375 -0.671875,1.671875 -0.109375,0.109375 -0.109375,0.125 -0.109375,0.15625 0,0.078125 0.046875,0.109375 0.09375,0.109375 0.109375,0 0.921875,-0.765625 0.921875,-1.9375 z m 0,0"
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- id="textext-c0d6e8dc-6"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path6520"
- d="M 3.734375,-6.03125 C 3.8125,-6.390625 3.84375,-6.5 4.78125,-6.5 c 0.296875,0 0.375,0 0.375,-0.1875 0,-0.125 -0.109375,-0.125 -0.15625,-0.125 -0.328125,0 -1.140625,0.03125 -1.46875,0.03125 -0.296875,0 -1.03125,-0.03125 -1.328125,-0.03125 -0.0625,0 -0.1875,0 -0.1875,0.203125 0,0.109375 0.09375,0.109375 0.28125,0.109375 0.015625,0 0.203125,0 0.375,0.015625 0.171875,0.03125 0.265625,0.03125 0.265625,0.171875 0,0.03125 0,0.0625 -0.03125,0.1875 L 1.5625,-0.78125 c -0.09375,0.390625 -0.109375,0.46875 -0.90625,0.46875 -0.171875,0 -0.265625,0 -0.265625,0.203125 C 0.390625,0 0.484375,0 0.65625,0 l 4.625,0 C 5.515625,0 5.515625,0 5.578125,-0.171875 L 6.375,-2.328125 c 0.03125,-0.109375 0.03125,-0.125 0.03125,-0.140625 0,-0.03125 -0.03125,-0.109375 -0.109375,-0.109375 -0.09375,0 -0.109375,0.0625 -0.171875,0.21875 -0.34375,0.90625 -0.78125,2.046875 -2.5,2.046875 l -0.9375,0 c -0.140625,0 -0.171875,0 -0.21875,0 -0.109375,-0.015625 -0.140625,-0.03125 -0.140625,-0.109375 0,-0.03125 0,-0.046875 0.046875,-0.21875 z m 0,0"
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- id="textext-c0d6e8dc-7"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path6523"
- d="m 5.15625,-3.71875 c 0.140625,0 0.5,0 0.5,-0.34375 0,-0.234375 -0.21875,-0.234375 -0.390625,-0.234375 l -2.28125,0 c -1.5,0 -2.609375,1.640625 -2.609375,2.828125 0,0.875 0.59375,1.578125 1.5,1.578125 1.171875,0 2.5,-1.203125 2.5,-2.734375 0,-0.171875 0,-0.65625 -0.3125,-1.09375 z M 1.890625,-0.109375 C 1.390625,-0.109375 1,-0.46875 1,-1.1875 c 0,-0.296875 0.109375,-1.109375 0.46875,-1.703125 0.421875,-0.6875 1.015625,-0.828125 1.359375,-0.828125 0.828125,0 0.90625,0.65625 0.90625,0.96875 0,0.46875 -0.203125,1.28125 -0.53125,1.796875 -0.390625,0.578125 -0.9375,0.84375 -1.3125,0.84375 z m 0,0"
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- id="textext-c0d6e8dc-8"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path6526"
- d="m 4.75,-2.359375 c 0,-1.5625 -0.921875,-2.046875 -1.65625,-2.046875 -1.375,0 -2.6875,1.421875 -2.6875,2.828125 0,0.9375 0.59375,1.6875 1.625,1.6875 0.625,0 1.34375,-0.234375 2.09375,-0.84375 0.125,0.53125 0.453125,0.84375 0.90625,0.84375 0.53125,0 0.84375,-0.546875 0.84375,-0.703125 0,-0.078125 -0.0625,-0.109375 -0.125,-0.109375 -0.0625,0 -0.09375,0.03125 -0.125,0.109375 -0.1875,0.484375 -0.546875,0.484375 -0.5625,0.484375 -0.3125,0 -0.3125,-0.78125 -0.3125,-1.015625 0,-0.203125 0,-0.234375 0.109375,-0.34375 C 5.796875,-2.65625 6,-3.8125 6,-3.8125 6,-3.84375 5.984375,-3.921875 5.875,-3.921875 c -0.09375,0 -0.09375,0.03125 -0.140625,0.21875 -0.1875,0.625 -0.515625,1.375 -0.984375,1.96875 z m -0.65625,1.375 c -0.890625,0.765625 -1.65625,0.875 -2.046875,0.875 -0.59375,0 -0.90625,-0.453125 -0.90625,-1.09375 0,-0.484375 0.265625,-1.5625 0.578125,-2.0625 C 2.1875,-4 2.734375,-4.1875 3.078125,-4.1875 c 0.984375,0 0.984375,1.3125 0.984375,2.078125 0,0.375 0,0.953125 0.03125,1.125 z m 0,0"
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- id="textext-c0d6e8dc-9"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path6529"
- d=""
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- id="textext-c0d6e8dc-10"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path6532"
- d="m 3.296875,2.390625 c 0,-0.03125 0,-0.046875 -0.171875,-0.21875 C 1.890625,0.921875 1.5625,-0.96875 1.5625,-2.5 c 0,-1.734375 0.375,-3.46875 1.609375,-4.703125 0.125,-0.125 0.125,-0.140625 0.125,-0.171875 0,-0.078125 -0.03125,-0.109375 -0.09375,-0.109375 -0.109375,0 -1,0.6875 -1.59375,1.953125 -0.5,1.09375 -0.625,2.203125 -0.625,3.03125 0,0.78125 0.109375,1.984375 0.65625,3.125 C 2.25,1.84375 3.09375,2.5 3.203125,2.5 c 0.0625,0 0.09375,-0.03125 0.09375,-0.109375 z m 0,0"
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- id="textext-c0d6e8dc-11"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path6535"
- d="m 2.875,-2.5 c 0,-0.765625 -0.109375,-1.96875 -0.65625,-3.109375 -0.59375,-1.21875 -1.453125,-1.875 -1.546875,-1.875 -0.0625,0 -0.109375,0.046875 -0.109375,0.109375 0,0.03125 0,0.046875 0.1875,0.234375 0.984375,0.984375 1.546875,2.5625 1.546875,4.640625 0,1.71875 -0.359375,3.46875 -1.59375,4.71875 C 0.5625,2.34375 0.5625,2.359375 0.5625,2.390625 0.5625,2.453125 0.609375,2.5 0.671875,2.5 0.765625,2.5 1.671875,1.8125 2.25,0.546875 2.765625,-0.546875 2.875,-1.65625 2.875,-2.5 Z m 0,0"
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- id="textext-c0d6e8dc-12"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path6538"
- d="m 4.078125,-2.296875 2.78125,0 C 7,-2.296875 7.1875,-2.296875 7.1875,-2.5 7.1875,-2.6875 7,-2.6875 6.859375,-2.6875 l -2.78125,0 0,-2.796875 c 0,-0.140625 0,-0.328125 -0.203125,-0.328125 -0.203125,0 -0.203125,0.1875 -0.203125,0.328125 l 0,2.796875 -2.78125,0 c -0.140625,0 -0.328125,0 -0.328125,0.1875 0,0.203125 0.1875,0.203125 0.328125,0.203125 l 2.78125,0 0,2.796875 c 0,0.140625 0,0.328125 0.203125,0.328125 0.203125,0 0.203125,-0.1875 0.203125,-0.328125 z m 0,0"
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- id="textext-c0d6e8dc-13"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path6541"
- d=""
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- id="textext-c0d6e8dc-14"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path6544"
- d="m 4,2.25 c 0.046875,0.140625 0.09375,0.25 0.234375,0.25 0.109375,0 0.1875,-0.09375 0.1875,-0.203125 0,-0.03125 0,-0.046875 -0.046875,-0.15625 l -3.40625,-9.375 c -0.0625,-0.171875 -0.09375,-0.25 -0.21875,-0.25 -0.109375,0 -0.203125,0.09375 -0.203125,0.203125 0,0.03125 0,0.046875 0.046875,0.15625 z m 0,0"
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- id="textext-c0d6e8dc-15"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path6547"
- d=""
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- id="textext-c0d6e8dc-16"
- overflow="visible"
- style="overflow:visible">
- <path
- id="path6550"
- d="m 3.515625,-1.265625 -0.234375,0 c -0.015625,0.15625 -0.09375,0.5625 -0.1875,0.625 -0.046875,0.046875 -0.578125,0.046875 -0.6875,0.046875 l -1.28125,0 c 0.734375,-0.640625 0.984375,-0.84375 1.390625,-1.171875 0.515625,-0.40625 1,-0.84375 1,-1.5 0,-0.84375 -0.734375,-1.359375 -1.625,-1.359375 -0.859375,0 -1.453125,0.609375 -1.453125,1.25 0,0.34375 0.296875,0.390625 0.375,0.390625 0.15625,0 0.359375,-0.125 0.359375,-0.375 0,-0.125 -0.046875,-0.375 -0.40625,-0.375 C 0.984375,-4.21875 1.453125,-4.375 1.78125,-4.375 c 0.703125,0 1.0625,0.546875 1.0625,1.109375 0,0.609375 -0.4375,1.078125 -0.65625,1.328125 L 0.515625,-0.265625 C 0.4375,-0.203125 0.4375,-0.1875 0.4375,0 l 2.875,0 z m 0,0"
- style="stroke:none"
- inkscape:connector-curvature="0" />
- </symbol>
- </g>
- </defs>
- <g
- id="textext-c0d6e8dc-17"
- style="fill:#000080;stroke:#000080">
- <g
- id="g6553"
- style="fill:#000080;fill-opacity:1;stroke:#000080">
- <use
- id="use6555"
- y="126.247"
- x="223.43201"
- xlink:href="#textext-c0d6e8dc-1"
- width="100%"
- height="100%"
- style="fill:#000080;stroke:#000080" />
- </g>
- <path
- id="path6557"
- transform="matrix(1,0,0,-1,233.395,126.048)"
- d="m -4.6875e-4,0.001125 74.52734375,0"
- style="fill:#000080;stroke:#000080;stroke-width:0.398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
- inkscape:connector-curvature="0" />
- <g
- id="g6559"
- style="fill:#000080;fill-opacity:1;stroke:#000080">
- <use
- id="use6561"
- y="134.765"
- x="233.395"
- xlink:href="#textext-c0d6e8dc-3"
- width="100%"
- height="100%"
- style="fill:#000080;stroke:#000080" />
- </g>
- <g
- id="g6563"
- style="fill:#000080;fill-opacity:1;stroke:#000080">
- <use
- id="use6565"
- y="134.765"
- x="238.58"
- xlink:href="#textext-c0d6e8dc-10"
- width="100%"
- height="100%"
- style="fill:#000080;stroke:#000080" />
- </g>
- <g
- id="g6567"
- style="fill:#000080;fill-opacity:1;stroke:#000080">
- <use
- id="use6569"
- y="134.765"
- x="242.455"
- xlink:href="#textext-c0d6e8dc-4"
- width="100%"
- height="100%"
- style="fill:#000080;stroke:#000080" />
- </g>
- <g
- id="g6571"
- style="fill:#000080;fill-opacity:1;stroke:#000080">
- <use
- id="use6573"
- y="134.765"
- x="249.85622"
- xlink:href="#textext-c0d6e8dc-5"
- width="100%"
- height="100%"
- style="fill:#000080;stroke:#000080" />
- </g>
- <g
- id="g6575"
- style="fill:#000080;fill-opacity:1;stroke:#000080">
- <use
- id="use6577"
- y="134.765"
- x="254.28758"
- xlink:href="#textext-c0d6e8dc-6"
- width="100%"
- height="100%"
- style="fill:#000080;stroke:#000080" />
- </g>
- <g
- id="g6579"
- style="fill:#000080;fill-opacity:1;stroke:#000080">
- <use
- id="use6581"
- y="134.765"
- x="263.27701"
- xlink:href="#textext-c0d6e8dc-14"
- width="100%"
- height="100%"
- style="fill:#000080;stroke:#000080" />
- </g>
- <g
- id="g6583"
- style="fill:#000080;fill-opacity:1;stroke:#000080">
- <use
- id="use6585"
- y="134.765"
- x="270.47198"
- xlink:href="#textext-c0d6e8dc-7"
- width="100%"
- height="100%"
- style="fill:#000080;stroke:#000080" />
- </g>
- <g
- id="g6587"
- style="fill:#000080;fill-opacity:1;stroke:#000080">
- <use
- id="use6589"
- y="134.765"
- x="276.522"
- xlink:href="#textext-c0d6e8dc-11"
- width="100%"
- height="100%"
- style="fill:#000080;stroke:#000080" />
- </g>
- <g
- id="g6591"
- style="fill:#000080;fill-opacity:1;stroke:#000080">
- <use
- id="use6593"
- y="131.88699"
- x="280.397"
- xlink:href="#textext-c0d6e8dc-16"
- width="100%"
- height="100%"
- style="fill:#000080;stroke:#000080" />
- </g>
- <g
- id="g6595"
- style="fill:#000080;fill-opacity:1;stroke:#000080">
- <use
- id="use6597"
- y="134.765"
- x="287.07999"
- xlink:href="#textext-c0d6e8dc-12"
- width="100%"
- height="100%"
- style="fill:#000080;stroke:#000080" />
- </g>
- <g
- id="g6599"
- style="fill:#000080;fill-opacity:1;stroke:#000080">
- <use
- id="use6601"
- y="134.765"
- x="297.043"
- xlink:href="#textext-c0d6e8dc-8"
- width="100%"
- height="100%"
- style="fill:#000080;stroke:#000080" />
- </g>
- <g
- id="g6603"
- style="fill:#000080;fill-opacity:1;stroke:#000080">
- <use
- id="use6605"
- y="131.88699"
- x="303.453"
- xlink:href="#textext-c0d6e8dc-16"
- width="100%"
- height="100%"
- style="fill:#000080;stroke:#000080" />
- </g>
- </g>
- </g>
- </g>
- <g
- transform="translate(-130.29351,-300.82484)"
- style="display:none"
- inkscape:label="Layer 2"
- id="layer2"
- inkscape:groupmode="layer">
- <circle
- r="32.857143"
- cy="448.79074"
- cx="337.85715"
- id="path5639"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.98999999;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:3, 3;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- </g>
-</svg>