List of commits:
Subject Hash Author Date (UTC)
Fixed margin for PDF, added a couple of SVG images, fixed some problems, added some code. eb83d9f07d738df7ab2515b768d6165a3b7e5ca3 au 2018-12-24 02:28:36
Working on rel_mod for Prof_Department_Extended. 2b1eff83797fbda620189f014043d648c884e887 au 2018-12-23 22:38:07
Working on FD and various figures. 8fd7f8322e70ae252596aa9cb88918ac40d5aa84 au 2018-12-23 20:25:19
Added first drawing for fd. 2a0e4fc716d91c23c81346a0e3b568f7132284c9 au 2018-12-23 05:23:29
Cleaned latex code. 1cf04e85915d24fc0208b407eb0166803b2369cf au 2018-12-23 04:27:41
Working on drawing for functional dependencies. 7dc167021630c00be25881877c0921adbc87f482 au 2018-12-23 04:20:33
Working on style for functional dependencies graph. 029c32395ba1110ad2af980e248848e0877040d7 au 2018-12-23 00:17:54
Working on template for FD. 091bb061b6fea06f440e97a4c9ac0f69b4ea1392 au 2018-12-22 20:57:00
Started to work on Functional Dep. 2123fbafc3b8258184ad745d8f23521a3f477d0e au 2018-12-22 18:53:20
Fixing a couple of problem, adding some more correct figures. ef44b65f45fba2bd9a653b639287d872b9f7471d au 2018-12-22 04:27:34
Fixing two figures, and renaming them. 71f4ab9c4090e97da19089f2316e87a4ebe838d6 au 2018-12-22 02:37:15
Fixing some of the name of the problems + references. 67c6c669fbb952cdd92be94487f46774da086a59 au 2018-12-21 16:20:08
Exercises fix, naming problems. 2b00c9f2306dd4d05f6919b4c06bc61b5786917f au 2018-12-21 02:10:54
Fixing some exercises. d5053a4b04b16b1817f2e8edb67f9ca7a6c48eb9 au 2018-12-21 01:24:09
Started to externalize the code, fixed the makefile, added a style for HTML files, fixed a lot of solution / problem / exercise environment, cleaned some fig code cfc0c26c5fb9ea64dfd101b9a1a70bc34dfa7082 au 2018-12-20 07:19:10
Re-organization of the structure and of the makefile. d352a7419a507c83374d78c8723d3aaebbaf1e0d au 2018-12-19 02:36:38
Pushing to merge. 92a45b2d1f200221602d730030f87f26e65e335d au 2018-12-19 01:13:42
Pushing to merge. d937aa46e12ee344113794dbb778eccb727819d3 au 2018-12-19 01:09:15
Fixing underline + solution environment. 4f207ab8ae51b1d87d0e83b7b813a91e30bf361f aubert@math.cnrs.fr 2018-12-18 20:03:10
Fixing underline + solution environment. 895823a4d392501285e613325078e9fce7bdd95b aubert@math.cnrs.fr 2018-12-18 20:02:55
Commit eb83d9f07d738df7ab2515b768d6165a3b7e5ca3 - Fixed margin for PDF, added a couple of SVG images, fixed some problems, added some code.
Author: au
Author date (UTC): 2018-12-24 02:28
Committer name: au
Committer date (UTC): 2018-12-24 02:28
Parent(s): 2b1eff83797fbda620189f014043d648c884e887
Signing key:
Tree: 11f88e01c119fa85691f30feeeb86686c8b44177
File Lines added Lines deleted
notes/Makefile 1 1
notes/code/sql/COMPUTER.sql 36 0
notes/fig/rel_mod/PROF_DEPARTMENT_EXTENDED.tex 11 54
notes/img/db_design.svg 1476 0
notes/img/p.svg 249 0
notes/img/te.svg 758 0
notes/latex/packages.sty 2 106
notes/lectures_notes.md 52 84
notes/temp.md 3 1
File notes/Makefile changed (mode: 100644) (index 8eca910..47a6b36)
... ... pdf: lectures_notes.md
59 59 temp: temp.md temp: temp.md
60 60 pandoc $(OPTIONSPANDOC) --default-image-extension=svg --css=style/style.css --toc-depth=1 --self-contained -o temp.html $< pandoc $(OPTIONSPANDOC) --default-image-extension=svg --css=style/style.css --toc-depth=1 --self-contained -o temp.html $<
61 61 pandoc $(OPTIONSPANDOC) --default-image-extension=svg -o temp.odt $< pandoc $(OPTIONSPANDOC) --default-image-extension=svg -o temp.odt $<
62 pandoc $(OPTIONSPANDOC) --pdf-engine=xelatex --pdf-engine-opt=-shell-escape --default-image-extension=pdf -o temp.pdf $<
62 pandoc $(OPTIONSPANDOC) --pdf-engine=xelatex --pdf-engine-opt=-shell-escape -V links-as-notes --default-image-extension=pdf -o temp.pdf $<
63 63
64 64
65 65
File notes/code/sql/COMPUTER.sql added (mode: 100644) (index 0000000..83e570b)
1 /* code/sql/COMPUTER.sql */
2 CREATE TABLE COMPUTER(
3 Id VARCHAR(20) PRIMARY KEY,
4 Model VARCHAR(20)
5 );
6
7 CREATE TABLE PRINTER(
8 Id VARCHAR(20) PRIMARY KEY,
9 Model VARCHAR(20)
10 );
11
12 CREATE TABLE CONNEXION(
13 Computer VARCHAR(20),
14 Printer VARCHAR(20),
15 PRIMARY KEY(Computer, Printer),
16 FOREIGN KEY (Computer) REFERENCES COMPUTER(Id),
17 FOREIGN KEY (Printer) REFERENCES PRINTER(Id)
18 );
19
20 INSERT INTO COMPUTER VALUES
21 ('A', 'DELL A'),
22 ('B', 'HP X'),
23 ('C', 'ZEPTO D'),
24 ('D', 'MAC Y');
25
26 INSERT INTO PRINTER VALUES
27 ('12', 'HP-140'),
28 ('13', 'HP-139'),
29 ('14', 'HP-140'),
30 ('15', 'HP-139');
31
32 INSERT INTO CONNEXION VALUES
33 ('A', '12'),
34 ('A', '13'),
35 ('B', '13'),
36 ('C', '14');
File notes/fig/rel_mod/PROF_DEPARTMENT_EXTENDED.tex changed (mode: 100644) (index 224084b..4c915c8)
1 1 \documentclass[border=20pt]{standalone} \documentclass[border=20pt]{standalone}
2 2 \input{template.def} \input{template.def}
3 3
4
5 4 % PROF(Login (PK), Name, Department (FK to DEPARTMENT.Code)) % PROF(Login (PK), Name, Department (FK to DEPARTMENT.Code))
6 5 % DEPARTMENT(Code (PK), Name, Head (FK to PROF.Login)) % DEPARTMENT(Code (PK), Name, Head (FK to PROF.Login))
7 6 % LECTURE (Code (PK), Year (PK), Name, Instructor (FK to PROF.Login) % LECTURE (Code (PK), Year (PK), Name, Instructor (FK to PROF.Login)
 
42 41 -- (Department1 |- inter) --++(0,0.6); -- (Department1 |- inter) --++(0,0.6);
43 42
44 43 \draw[FK] % From Major3 to Code2 \draw[FK] % From Major3 to Code2
45 (Code2)++(0.1,0) -- ++(0,-.5) -- ++(6,0) -- ++(0,-3) -- ++(-2.15, 0) -- (Major3);
44 (Code2)++(0.1,0) -- ++(0,-.5) -- ++(5,0) -- ++(0,-3) -- ++(-1.15, 0) -- (Major3);
46 45
47 46 \draw[FK] % From Head2 to Login1 \draw[FK] % From Head2 to Login1
48 47 (Login1)++(0.1,0) -- ++(0,-1) coordinate (inter) (Login1)++(0.1,0) -- ++(0,-1) coordinate (inter)
49 48 -- (Head2 |- inter) --++(0, 1.1); -- (Head2 |- inter) --++(0, 1.1);
50 49
50 %\draw[FK] % From Instructor4 to Login1
51 %(Login1)++(-0.1,0) -- ++(0, -.5) -- ++(-1,0) -- ++(0, -3) -- ++(4.36, 0) -- (Instructor4);
52
51 53 \draw[FK] % From Instructor4 to Login1 \draw[FK] % From Instructor4 to Login1
52 (Login1)++(-0.1,0) -- ++(0, -.5) -- ++(-1,0) -- ++(0, -3) -- ++(4.36, 0) -- (Instructor4);
54 (Login1)++(-0.1,0) -- ++(0, -1.5) -- ++(4.4,0) -- ++(0, -2) -- ++(-1.04, 0) --
55 (Instructor4);
53 56
54 57 \draw[FK] % From Login5 to Login3 \draw[FK] % From Login5 to Login3
55 58 (Login3)-- ++(0, -1) -- ++(-3.5,0) -- ++(0, -2.5) -- ++(1, 0) -- (Login5); (Login3)-- ++(0, -1) -- ++(-3.5,0) -- ++(0, -2.5) -- ++(1, 0) -- (Login5);
56 59
57 %
58 %
59 %\Frame(0,0){1}[ACTOR]{
60 % Id/PK,
61 % Name/A,
62 % Birthdate/A};
63 %
64 %\Frame(0,-2.5){2}[MOVIE]{
65 % Title/PK,
66 % Year/A,
67 % Length/A,
68 % Studio/A};
69 %
70 %\Frame(0,-5){3}[THEATER]{
71 % Name/PK,
72 % Street/A,
73 % City/A,
74 % State/A,
75 % Zip/A};
76 %
77 %\Frame(8,0){4}[ACTING]{
78 % ActorId/PK,
79 % MovieTitle/PK};
80 %
81 %\Frame(8,-2.5){5}[SHOWING]{
82 % MovieTitle/PK,
83 % TheaterName/PK,
84 % Day/PK,
85 % Time/PK};
86 %
87 %\draw[FK] % From ACTING.ActorID to ACTOR.Id
88 %(Id1) -- ++(0,-.55) coordinate (inter)
89 %-- (ActorId4 |- inter) --++(0, 0.5);
90 %
91 %\draw[FK] % From ACTING.MovieTitle to MOVIE.Title
92 %(Title2)++(0.1,0) -- ++(0,-.55) -- ++(4,0)
93 %-- ++(0,2)
94 %coordinate (inter)
95 %-- (MovieTitle4 |- inter) --++(0, 1);
96 %
97 %\draw[FK] % From SHOWING.MovieTitle to THEATER.Name
98 %(Name3) -- ++(0,-.55)
99 %coordinate (inter)
100 %-- (TheaterName5 |- inter) --++(0, 3);
101 %
102 %\draw[FK] % From SHOWING.TheaterName to MOVIE.Title
103 %(Title2)++(-0.1,0) -- ++(0,-.75)
104 %coordinate (inter)
105 %-- (MovieTitle5 |- inter) --++(0, 0.7);
106 \end{tikzpicture}
60 \draw[FK] % From LectureCode5 to Code4
61 (Code4)-- ++(0, -4) -- ++(5.19,0) --(LectureCode5);
107 62
108 Two FK are missing.
63 \draw[FK] % From LectureYear5 to Year4
64 (Year4)-- ++(0, -5) -- ++(6.3,0) --(LectureYear5);
65 \end{tikzpicture}
109 66 \end{document} \end{document}
File notes/img/db_design.svg added (mode: 100644) (index 0000000..d72c54b)
1 <?xml version="1.0" encoding="UTF-8"?>
2 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360.210083pt" height="399.832184pt" viewBox="0 0 360.210083 399.832184" version="1.1">
3 <defs>
4 <g>
5 <symbol overflow="visible" id="glyph0-0">
6 <path style="stroke:none;" d="M 0.453125 1.59375 L 0.453125 -6.34375 L 4.953125 -6.34375 L 4.953125 1.59375 Z M 0.953125 1.09375 L 4.453125 1.09375 L 4.453125 -5.84375 L 0.953125 -5.84375 Z M 0.953125 1.09375 "/>
7 </symbol>
8 <symbol overflow="visible" id="glyph0-1">
9 <path style="stroke:none;" d="M 0.890625 -6.5625 L 4.65625 -6.5625 L 4.65625 -5.8125 L 1.765625 -5.8125 L 1.765625 -3.875 L 4.375 -3.875 L 4.375 -3.140625 L 1.765625 -3.140625 L 1.765625 0 L 0.890625 0 Z M 0.890625 -6.5625 "/>
10 </symbol>
11 <symbol overflow="visible" id="glyph0-2">
12 <path style="stroke:none;" d="M 0.765625 -1.9375 L 0.765625 -4.921875 L 1.578125 -4.921875 L 1.578125 -1.96875 C 1.578125 -1.507812 1.664062 -1.160156 1.84375 -0.921875 C 2.03125 -0.691406 2.300781 -0.578125 2.65625 -0.578125 C 3.09375 -0.578125 3.4375 -0.710938 3.6875 -0.984375 C 3.945312 -1.265625 4.078125 -1.644531 4.078125 -2.125 L 4.078125 -4.921875 L 4.890625 -4.921875 L 4.890625 0 L 4.078125 0 L 4.078125 -0.75 C 3.878906 -0.457031 3.648438 -0.238281 3.390625 -0.09375 C 3.128906 0.0507812 2.828125 0.125 2.484375 0.125 C 1.921875 0.125 1.492188 -0.046875 1.203125 -0.390625 C 0.910156 -0.742188 0.765625 -1.257812 0.765625 -1.9375 Z M 2.796875 -5.046875 Z M 2.796875 -5.046875 "/>
13 </symbol>
14 <symbol overflow="visible" id="glyph0-3">
15 <path style="stroke:none;" d="M 4.9375 -2.96875 L 4.9375 0 L 4.125 0 L 4.125 -2.9375 C 4.125 -3.40625 4.035156 -3.753906 3.859375 -3.984375 C 3.679688 -4.222656 3.410156 -4.34375 3.046875 -4.34375 C 2.609375 -4.34375 2.257812 -4.203125 2 -3.921875 C 1.75 -3.640625 1.625 -3.257812 1.625 -2.78125 L 1.625 0 L 0.8125 0 L 0.8125 -4.921875 L 1.625 -4.921875 L 1.625 -4.15625 C 1.820312 -4.445312 2.050781 -4.664062 2.3125 -4.8125 C 2.570312 -4.96875 2.875 -5.046875 3.21875 -5.046875 C 3.78125 -5.046875 4.207031 -4.867188 4.5 -4.515625 C 4.789062 -4.160156 4.9375 -3.644531 4.9375 -2.96875 Z M 4.9375 -2.96875 "/>
16 </symbol>
17 <symbol overflow="visible" id="glyph0-4">
18 <path style="stroke:none;" d="M 4.390625 -4.734375 L 4.390625 -3.984375 C 4.160156 -4.109375 3.929688 -4.203125 3.703125 -4.265625 C 3.472656 -4.328125 3.238281 -4.359375 3 -4.359375 C 2.476562 -4.359375 2.070312 -4.191406 1.78125 -3.859375 C 1.488281 -3.523438 1.34375 -3.054688 1.34375 -2.453125 C 1.34375 -1.859375 1.488281 -1.394531 1.78125 -1.0625 C 2.070312 -0.726562 2.476562 -0.5625 3 -0.5625 C 3.238281 -0.5625 3.472656 -0.59375 3.703125 -0.65625 C 3.929688 -0.71875 4.160156 -0.8125 4.390625 -0.9375 L 4.390625 -0.1875 C 4.160156 -0.0820312 3.925781 -0.00390625 3.6875 0.046875 C 3.445312 0.0976562 3.191406 0.125 2.921875 0.125 C 2.179688 0.125 1.59375 -0.101562 1.15625 -0.5625 C 0.71875 -1.03125 0.5 -1.660156 0.5 -2.453125 C 0.5 -3.253906 0.71875 -3.882812 1.15625 -4.34375 C 1.59375 -4.8125 2.195312 -5.046875 2.96875 -5.046875 C 3.21875 -5.046875 3.460938 -5.019531 3.703125 -4.96875 C 3.941406 -4.914062 4.171875 -4.835938 4.390625 -4.734375 Z M 4.390625 -4.734375 "/>
19 </symbol>
20 <symbol overflow="visible" id="glyph0-5">
21 <path style="stroke:none;" d="M 1.640625 -6.3125 L 1.640625 -4.921875 L 3.3125 -4.921875 L 3.3125 -4.296875 L 1.640625 -4.296875 L 1.640625 -1.625 C 1.640625 -1.21875 1.695312 -0.957031 1.8125 -0.84375 C 1.925781 -0.726562 2.148438 -0.671875 2.484375 -0.671875 L 3.3125 -0.671875 L 3.3125 0 L 2.484375 0 C 1.859375 0 1.425781 -0.113281 1.1875 -0.34375 C 0.945312 -0.582031 0.828125 -1.007812 0.828125 -1.625 L 0.828125 -4.296875 L 0.234375 -4.296875 L 0.234375 -4.921875 L 0.828125 -4.921875 L 0.828125 -6.3125 Z M 1.640625 -6.3125 "/>
22 </symbol>
23 <symbol overflow="visible" id="glyph0-6">
24 <path style="stroke:none;" d="M 0.84375 -4.921875 L 1.65625 -4.921875 L 1.65625 0 L 0.84375 0 Z M 0.84375 -6.84375 L 1.65625 -6.84375 L 1.65625 -5.8125 L 0.84375 -5.8125 Z M 0.84375 -6.84375 "/>
25 </symbol>
26 <symbol overflow="visible" id="glyph0-7">
27 <path style="stroke:none;" d="M 2.75 -4.359375 C 2.320312 -4.359375 1.976562 -4.1875 1.71875 -3.84375 C 1.46875 -3.507812 1.34375 -3.046875 1.34375 -2.453125 C 1.34375 -1.867188 1.46875 -1.40625 1.71875 -1.0625 C 1.96875 -0.726562 2.3125 -0.5625 2.75 -0.5625 C 3.1875 -0.5625 3.53125 -0.726562 3.78125 -1.0625 C 4.03125 -1.40625 4.15625 -1.867188 4.15625 -2.453125 C 4.15625 -3.035156 4.03125 -3.5 3.78125 -3.84375 C 3.53125 -4.1875 3.1875 -4.359375 2.75 -4.359375 Z M 2.75 -5.046875 C 3.457031 -5.046875 4.007812 -4.816406 4.40625 -4.359375 C 4.8125 -3.898438 5.015625 -3.265625 5.015625 -2.453125 C 5.015625 -1.648438 4.8125 -1.019531 4.40625 -0.5625 C 4.007812 -0.101562 3.457031 0.125 2.75 0.125 C 2.050781 0.125 1.5 -0.101562 1.09375 -0.5625 C 0.695312 -1.019531 0.5 -1.648438 0.5 -2.453125 C 0.5 -3.265625 0.695312 -3.898438 1.09375 -4.359375 C 1.5 -4.816406 2.050781 -5.046875 2.75 -5.046875 Z M 2.75 -5.046875 "/>
28 </symbol>
29 <symbol overflow="visible" id="glyph0-8">
30 <path style="stroke:none;" d="M 3.078125 -2.46875 C 2.429688 -2.46875 1.976562 -2.394531 1.71875 -2.25 C 1.46875 -2.101562 1.34375 -1.847656 1.34375 -1.484375 C 1.34375 -1.203125 1.4375 -0.972656 1.625 -0.796875 C 1.820312 -0.628906 2.082031 -0.546875 2.40625 -0.546875 C 2.851562 -0.546875 3.210938 -0.703125 3.484375 -1.015625 C 3.753906 -1.335938 3.890625 -1.765625 3.890625 -2.296875 L 3.890625 -2.46875 Z M 4.703125 -2.8125 L 4.703125 0 L 3.890625 0 L 3.890625 -0.75 C 3.703125 -0.445312 3.46875 -0.222656 3.1875 -0.078125 C 2.914062 0.0546875 2.582031 0.125 2.1875 0.125 C 1.6875 0.125 1.285156 -0.015625 0.984375 -0.296875 C 0.691406 -0.578125 0.546875 -0.957031 0.546875 -1.4375 C 0.546875 -1.988281 0.726562 -2.40625 1.09375 -2.6875 C 1.46875 -2.96875 2.019531 -3.109375 2.75 -3.109375 L 3.890625 -3.109375 L 3.890625 -3.1875 C 3.890625 -3.5625 3.765625 -3.847656 3.515625 -4.046875 C 3.273438 -4.253906 2.929688 -4.359375 2.484375 -4.359375 C 2.203125 -4.359375 1.925781 -4.320312 1.65625 -4.25 C 1.394531 -4.1875 1.144531 -4.085938 0.90625 -3.953125 L 0.90625 -4.703125 C 1.195312 -4.816406 1.484375 -4.898438 1.765625 -4.953125 C 2.046875 -5.015625 2.316406 -5.046875 2.578125 -5.046875 C 3.285156 -5.046875 3.816406 -4.859375 4.171875 -4.484375 C 4.523438 -4.117188 4.703125 -3.5625 4.703125 -2.8125 Z M 4.703125 -2.8125 "/>
31 </symbol>
32 <symbol overflow="visible" id="glyph0-9">
33 <path style="stroke:none;" d="M 0.84375 -6.84375 L 1.65625 -6.84375 L 1.65625 0 L 0.84375 0 Z M 0.84375 -6.84375 "/>
34 </symbol>
35 <symbol overflow="visible" id="glyph0-10">
36 <path style="stroke:none;" d=""/>
37 </symbol>
38 <symbol overflow="visible" id="glyph0-11">
39 <path style="stroke:none;" d="M 4 -3.078125 C 4.1875 -3.015625 4.367188 -2.875 4.546875 -2.65625 C 4.734375 -2.445312 4.914062 -2.160156 5.09375 -1.796875 L 6 0 L 5.046875 0 L 4.203125 -1.6875 C 3.984375 -2.125 3.769531 -2.410156 3.5625 -2.546875 C 3.363281 -2.691406 3.085938 -2.765625 2.734375 -2.765625 L 1.765625 -2.765625 L 1.765625 0 L 0.890625 0 L 0.890625 -6.5625 L 2.890625 -6.5625 C 3.640625 -6.5625 4.195312 -6.40625 4.5625 -6.09375 C 4.9375 -5.78125 5.125 -5.304688 5.125 -4.671875 C 5.125 -4.253906 5.023438 -3.910156 4.828125 -3.640625 C 4.640625 -3.367188 4.363281 -3.179688 4 -3.078125 Z M 1.765625 -5.828125 L 1.765625 -3.5 L 2.890625 -3.5 C 3.316406 -3.5 3.640625 -3.597656 3.859375 -3.796875 C 4.078125 -3.992188 4.1875 -4.285156 4.1875 -4.671875 C 4.1875 -5.054688 4.078125 -5.34375 3.859375 -5.53125 C 3.640625 -5.726562 3.316406 -5.828125 2.890625 -5.828125 Z M 1.765625 -5.828125 "/>
40 </symbol>
41 <symbol overflow="visible" id="glyph0-12">
42 <path style="stroke:none;" d="M 5.0625 -2.65625 L 5.0625 -2.265625 L 1.34375 -2.265625 C 1.375 -1.710938 1.539062 -1.289062 1.84375 -1 C 2.144531 -0.707031 2.5625 -0.5625 3.09375 -0.5625 C 3.40625 -0.5625 3.707031 -0.597656 4 -0.671875 C 4.289062 -0.742188 4.582031 -0.859375 4.875 -1.015625 L 4.875 -0.25 C 4.582031 -0.125 4.28125 -0.03125 3.96875 0.03125 C 3.664062 0.09375 3.359375 0.125 3.046875 0.125 C 2.265625 0.125 1.644531 -0.101562 1.1875 -0.5625 C 0.726562 -1.019531 0.5 -1.632812 0.5 -2.40625 C 0.5 -3.21875 0.710938 -3.859375 1.140625 -4.328125 C 1.578125 -4.804688 2.164062 -5.046875 2.90625 -5.046875 C 3.570312 -5.046875 4.097656 -4.832031 4.484375 -4.40625 C 4.867188 -3.976562 5.0625 -3.394531 5.0625 -2.65625 Z M 4.25 -2.90625 C 4.238281 -3.34375 4.113281 -3.691406 3.875 -3.953125 C 3.632812 -4.222656 3.316406 -4.359375 2.921875 -4.359375 C 2.460938 -4.359375 2.097656 -4.226562 1.828125 -3.96875 C 1.554688 -3.71875 1.398438 -3.359375 1.359375 -2.890625 Z M 4.25 -2.90625 "/>
43 </symbol>
44 <symbol overflow="visible" id="glyph0-13">
45 <path style="stroke:none;" d="M 1.328125 -2.453125 C 1.328125 -1.859375 1.445312 -1.390625 1.6875 -1.046875 C 1.9375 -0.710938 2.273438 -0.546875 2.703125 -0.546875 C 3.128906 -0.546875 3.46875 -0.710938 3.71875 -1.046875 C 3.96875 -1.390625 4.09375 -1.859375 4.09375 -2.453125 C 4.09375 -3.046875 3.96875 -3.507812 3.71875 -3.84375 C 3.46875 -4.1875 3.128906 -4.359375 2.703125 -4.359375 C 2.273438 -4.359375 1.9375 -4.1875 1.6875 -3.84375 C 1.445312 -3.507812 1.328125 -3.046875 1.328125 -2.453125 Z M 4.09375 -0.734375 C 3.914062 -0.441406 3.695312 -0.222656 3.4375 -0.078125 C 3.175781 0.0546875 2.867188 0.125 2.515625 0.125 C 1.921875 0.125 1.4375 -0.109375 1.0625 -0.578125 C 0.6875 -1.054688 0.5 -1.679688 0.5 -2.453125 C 0.5 -3.222656 0.6875 -3.847656 1.0625 -4.328125 C 1.4375 -4.804688 1.921875 -5.046875 2.515625 -5.046875 C 2.867188 -5.046875 3.175781 -4.972656 3.4375 -4.828125 C 3.695312 -4.679688 3.914062 -4.460938 4.09375 -4.171875 L 4.09375 -4.921875 L 4.890625 -4.921875 L 4.890625 1.875 L 4.09375 1.875 Z M 4.09375 -0.734375 "/>
46 </symbol>
47 <symbol overflow="visible" id="glyph0-14">
48 <path style="stroke:none;" d="M 3.703125 -4.171875 C 3.609375 -4.222656 3.507812 -4.257812 3.40625 -4.28125 C 3.300781 -4.300781 3.179688 -4.3125 3.046875 -4.3125 C 2.585938 -4.3125 2.234375 -4.160156 1.984375 -3.859375 C 1.742188 -3.566406 1.625 -3.144531 1.625 -2.59375 L 1.625 0 L 0.8125 0 L 0.8125 -4.921875 L 1.625 -4.921875 L 1.625 -4.15625 C 1.800781 -4.457031 2.023438 -4.679688 2.296875 -4.828125 C 2.566406 -4.972656 2.894531 -5.046875 3.28125 -5.046875 C 3.34375 -5.046875 3.40625 -5.039062 3.46875 -5.03125 C 3.539062 -5.019531 3.617188 -5.007812 3.703125 -5 Z M 3.703125 -4.171875 "/>
49 </symbol>
50 <symbol overflow="visible" id="glyph0-15">
51 <path style="stroke:none;" d="M 4.6875 -3.984375 C 4.882812 -4.335938 5.125 -4.601562 5.40625 -4.78125 C 5.6875 -4.957031 6.019531 -5.046875 6.40625 -5.046875 C 6.914062 -5.046875 7.304688 -4.863281 7.578125 -4.5 C 7.859375 -4.144531 8 -3.632812 8 -2.96875 L 8 0 L 7.1875 0 L 7.1875 -2.9375 C 7.1875 -3.414062 7.101562 -3.769531 6.9375 -4 C 6.769531 -4.226562 6.515625 -4.34375 6.171875 -4.34375 C 5.753906 -4.34375 5.421875 -4.203125 5.171875 -3.921875 C 4.929688 -3.640625 4.8125 -3.257812 4.8125 -2.78125 L 4.8125 0 L 4 0 L 4 -2.9375 C 4 -3.414062 3.914062 -3.769531 3.75 -4 C 3.582031 -4.226562 3.328125 -4.34375 2.984375 -4.34375 C 2.566406 -4.34375 2.234375 -4.203125 1.984375 -3.921875 C 1.742188 -3.640625 1.625 -3.257812 1.625 -2.78125 L 1.625 0 L 0.8125 0 L 0.8125 -4.921875 L 1.625 -4.921875 L 1.625 -4.15625 C 1.8125 -4.457031 2.035156 -4.679688 2.296875 -4.828125 C 2.554688 -4.972656 2.863281 -5.046875 3.21875 -5.046875 C 3.570312 -5.046875 3.875 -4.953125 4.125 -4.765625 C 4.375 -4.585938 4.5625 -4.328125 4.6875 -3.984375 Z M 4.6875 -3.984375 "/>
52 </symbol>
53 <symbol overflow="visible" id="glyph0-16">
54 <path style="stroke:none;" d="M 3.984375 -4.78125 L 3.984375 -4.015625 C 3.753906 -4.128906 3.515625 -4.210938 3.265625 -4.265625 C 3.023438 -4.328125 2.773438 -4.359375 2.515625 -4.359375 C 2.109375 -4.359375 1.804688 -4.296875 1.609375 -4.171875 C 1.410156 -4.054688 1.3125 -3.875 1.3125 -3.625 C 1.3125 -3.4375 1.378906 -3.289062 1.515625 -3.1875 C 1.660156 -3.082031 1.953125 -2.976562 2.390625 -2.875 L 2.65625 -2.8125 C 3.238281 -2.6875 3.648438 -2.507812 3.890625 -2.28125 C 4.128906 -2.0625 4.25 -1.753906 4.25 -1.359375 C 4.25 -0.898438 4.066406 -0.535156 3.703125 -0.265625 C 3.347656 -0.00390625 2.851562 0.125 2.21875 0.125 C 1.945312 0.125 1.671875 0.0976562 1.390625 0.046875 C 1.109375 -0.00390625 0.804688 -0.0820312 0.484375 -0.1875 L 0.484375 -1.015625 C 0.785156 -0.859375 1.082031 -0.738281 1.375 -0.65625 C 1.664062 -0.582031 1.953125 -0.546875 2.234375 -0.546875 C 2.609375 -0.546875 2.898438 -0.609375 3.109375 -0.734375 C 3.316406 -0.867188 3.421875 -1.054688 3.421875 -1.296875 C 3.421875 -1.515625 3.34375 -1.679688 3.1875 -1.796875 C 3.039062 -1.921875 2.71875 -2.035156 2.21875 -2.140625 L 1.9375 -2.203125 C 1.4375 -2.304688 1.070312 -2.46875 0.84375 -2.6875 C 0.625 -2.90625 0.515625 -3.207031 0.515625 -3.59375 C 0.515625 -4.050781 0.675781 -4.40625 1 -4.65625 C 1.332031 -4.914062 1.800781 -5.046875 2.40625 -5.046875 C 2.707031 -5.046875 2.988281 -5.019531 3.25 -4.96875 C 3.519531 -4.925781 3.765625 -4.863281 3.984375 -4.78125 Z M 3.984375 -4.78125 "/>
55 </symbol>
56 <symbol overflow="visible" id="glyph0-17">
57 <path style="stroke:none;" d="M 0.890625 -6.5625 L 5.03125 -6.5625 L 5.03125 -5.8125 L 1.765625 -5.8125 L 1.765625 -3.875 L 4.890625 -3.875 L 4.890625 -3.125 L 1.765625 -3.125 L 1.765625 -0.75 L 5.109375 -0.75 L 5.109375 0 L 0.890625 0 Z M 0.890625 -6.5625 "/>
58 </symbol>
59 <symbol overflow="visible" id="glyph0-18">
60 <path style="stroke:none;" d="M 3.546875 -5.953125 C 2.898438 -5.953125 2.382812 -5.710938 2 -5.234375 C 1.625 -4.753906 1.4375 -4.101562 1.4375 -3.28125 C 1.4375 -2.445312 1.625 -1.789062 2 -1.3125 C 2.382812 -0.832031 2.898438 -0.59375 3.546875 -0.59375 C 4.191406 -0.59375 4.703125 -0.832031 5.078125 -1.3125 C 5.453125 -1.789062 5.640625 -2.445312 5.640625 -3.28125 C 5.640625 -4.101562 5.453125 -4.753906 5.078125 -5.234375 C 4.703125 -5.710938 4.191406 -5.953125 3.546875 -5.953125 Z M 4.796875 -0.125 L 5.953125 1.15625 L 4.890625 1.15625 L 3.921875 0.109375 C 3.816406 0.117188 3.738281 0.125 3.6875 0.125 C 3.632812 0.125 3.585938 0.125 3.546875 0.125 C 2.617188 0.125 1.878906 -0.179688 1.328125 -0.796875 C 0.773438 -1.410156 0.5 -2.238281 0.5 -3.28125 C 0.5 -4.3125 0.773438 -5.132812 1.328125 -5.75 C 1.878906 -6.375 2.617188 -6.6875 3.546875 -6.6875 C 4.460938 -6.6875 5.195312 -6.375 5.75 -5.75 C 6.300781 -5.132812 6.578125 -4.3125 6.578125 -3.28125 C 6.578125 -2.507812 6.421875 -1.851562 6.109375 -1.3125 C 5.804688 -0.769531 5.367188 -0.375 4.796875 -0.125 Z M 4.796875 -0.125 "/>
61 </symbol>
62 <symbol overflow="visible" id="glyph0-19">
63 <path style="stroke:none;" d="M 0.78125 -6.5625 L 1.671875 -6.5625 L 1.671875 -2.578125 C 1.671875 -1.867188 1.796875 -1.359375 2.046875 -1.046875 C 2.304688 -0.742188 2.722656 -0.59375 3.296875 -0.59375 C 3.867188 -0.59375 4.28125 -0.742188 4.53125 -1.046875 C 4.78125 -1.359375 4.90625 -1.867188 4.90625 -2.578125 L 4.90625 -6.5625 L 5.8125 -6.5625 L 5.8125 -2.46875 C 5.8125 -1.613281 5.597656 -0.96875 5.171875 -0.53125 C 4.742188 -0.09375 4.117188 0.125 3.296875 0.125 C 2.460938 0.125 1.832031 -0.09375 1.40625 -0.53125 C 0.988281 -0.96875 0.78125 -1.613281 0.78125 -2.46875 Z M 0.78125 -6.5625 "/>
64 </symbol>
65 <symbol overflow="visible" id="glyph0-20">
66 <path style="stroke:none;" d="M 0.890625 -6.5625 L 1.765625 -6.5625 L 1.765625 0 L 0.890625 0 Z M 0.890625 -6.5625 "/>
67 </symbol>
68 <symbol overflow="visible" id="glyph0-21">
69 <path style="stroke:none;" d="M 0.890625 -6.5625 L 2.203125 -6.5625 L 3.875 -2.09375 L 5.5625 -6.5625 L 6.890625 -6.5625 L 6.890625 0 L 6.015625 0 L 6.015625 -5.765625 L 4.328125 -1.265625 L 3.4375 -1.265625 L 1.75 -5.765625 L 1.75 0 L 0.890625 0 Z M 0.890625 -6.5625 "/>
70 </symbol>
71 <symbol overflow="visible" id="glyph0-22">
72 <path style="stroke:none;" d="M 0.890625 -6.5625 L 2.078125 -6.5625 L 4.984375 -1.078125 L 4.984375 -6.5625 L 5.84375 -6.5625 L 5.84375 0 L 4.65625 0 L 1.75 -5.484375 L 1.75 0 L 0.890625 0 Z M 0.890625 -6.5625 "/>
73 </symbol>
74 <symbol overflow="visible" id="glyph0-23">
75 <path style="stroke:none;" d="M -0.03125 -6.5625 L 5.53125 -6.5625 L 5.53125 -5.8125 L 3.1875 -5.8125 L 3.1875 0 L 2.296875 0 L 2.296875 -5.8125 L -0.03125 -5.8125 Z M -0.03125 -6.5625 "/>
76 </symbol>
77 <symbol overflow="visible" id="glyph0-24">
78 <path style="stroke:none;" d="M 4.8125 -6.34375 L 4.8125 -5.484375 C 4.476562 -5.640625 4.160156 -5.753906 3.859375 -5.828125 C 3.566406 -5.910156 3.28125 -5.953125 3 -5.953125 C 2.507812 -5.953125 2.132812 -5.859375 1.875 -5.671875 C 1.613281 -5.484375 1.484375 -5.21875 1.484375 -4.875 C 1.484375 -4.582031 1.570312 -4.363281 1.75 -4.21875 C 1.925781 -4.070312 2.253906 -3.953125 2.734375 -3.859375 L 3.28125 -3.75 C 3.9375 -3.625 4.421875 -3.398438 4.734375 -3.078125 C 5.054688 -2.765625 5.21875 -2.34375 5.21875 -1.8125 C 5.21875 -1.175781 5.003906 -0.691406 4.578125 -0.359375 C 4.148438 -0.0351562 3.523438 0.125 2.703125 0.125 C 2.390625 0.125 2.054688 0.0859375 1.703125 0.015625 C 1.359375 -0.046875 1 -0.148438 0.625 -0.296875 L 0.625 -1.203125 C 0.976562 -1.003906 1.328125 -0.851562 1.671875 -0.75 C 2.023438 -0.644531 2.367188 -0.59375 2.703125 -0.59375 C 3.203125 -0.59375 3.585938 -0.691406 3.859375 -0.890625 C 4.140625 -1.085938 4.28125 -1.375 4.28125 -1.75 C 4.28125 -2.070312 4.179688 -2.320312 3.984375 -2.5 C 3.785156 -2.675781 3.460938 -2.8125 3.015625 -2.90625 L 2.46875 -3.015625 C 1.8125 -3.148438 1.332031 -3.359375 1.03125 -3.640625 C 0.738281 -3.921875 0.59375 -4.3125 0.59375 -4.8125 C 0.59375 -5.382812 0.796875 -5.835938 1.203125 -6.171875 C 1.609375 -6.515625 2.171875 -6.6875 2.890625 -6.6875 C 3.203125 -6.6875 3.515625 -6.65625 3.828125 -6.59375 C 4.148438 -6.539062 4.476562 -6.457031 4.8125 -6.34375 Z M 4.8125 -6.34375 "/>
79 </symbol>
80 <symbol overflow="visible" id="glyph0-25">
81 <path style="stroke:none;" d="M 5.796875 -6.0625 L 5.796875 -5.125 C 5.492188 -5.394531 5.171875 -5.597656 4.828125 -5.734375 C 4.492188 -5.878906 4.140625 -5.953125 3.765625 -5.953125 C 3.015625 -5.953125 2.4375 -5.722656 2.03125 -5.265625 C 1.632812 -4.804688 1.4375 -4.144531 1.4375 -3.28125 C 1.4375 -2.414062 1.632812 -1.753906 2.03125 -1.296875 C 2.4375 -0.835938 3.015625 -0.609375 3.765625 -0.609375 C 4.140625 -0.609375 4.492188 -0.675781 4.828125 -0.8125 C 5.171875 -0.945312 5.492188 -1.15625 5.796875 -1.4375 L 5.796875 -0.5 C 5.484375 -0.289062 5.15625 -0.132812 4.8125 -0.03125 C 4.46875 0.0703125 4.097656 0.125 3.703125 0.125 C 2.710938 0.125 1.929688 -0.175781 1.359375 -0.78125 C 0.785156 -1.394531 0.5 -2.226562 0.5 -3.28125 C 0.5 -4.332031 0.785156 -5.160156 1.359375 -5.765625 C 1.929688 -6.378906 2.710938 -6.6875 3.703125 -6.6875 C 4.097656 -6.6875 4.46875 -6.632812 4.8125 -6.53125 C 5.164062 -6.425781 5.492188 -6.269531 5.796875 -6.0625 Z M 5.796875 -6.0625 "/>
82 </symbol>
83 <symbol overflow="visible" id="glyph0-26">
84 <path style="stroke:none;" d="M 3.546875 -5.953125 C 2.898438 -5.953125 2.382812 -5.710938 2 -5.234375 C 1.625 -4.753906 1.4375 -4.101562 1.4375 -3.28125 C 1.4375 -2.445312 1.625 -1.789062 2 -1.3125 C 2.382812 -0.832031 2.898438 -0.59375 3.546875 -0.59375 C 4.191406 -0.59375 4.703125 -0.832031 5.078125 -1.3125 C 5.453125 -1.789062 5.640625 -2.445312 5.640625 -3.28125 C 5.640625 -4.101562 5.453125 -4.753906 5.078125 -5.234375 C 4.703125 -5.710938 4.191406 -5.953125 3.546875 -5.953125 Z M 3.546875 -6.6875 C 4.460938 -6.6875 5.195312 -6.375 5.75 -5.75 C 6.300781 -5.132812 6.578125 -4.3125 6.578125 -3.28125 C 6.578125 -2.238281 6.300781 -1.410156 5.75 -0.796875 C 5.195312 -0.179688 4.460938 0.125 3.546875 0.125 C 2.617188 0.125 1.878906 -0.179688 1.328125 -0.796875 C 0.773438 -1.410156 0.5 -2.238281 0.5 -3.28125 C 0.5 -4.3125 0.773438 -5.132812 1.328125 -5.75 C 1.878906 -6.375 2.617188 -6.6875 3.546875 -6.6875 Z M 3.546875 -6.6875 "/>
85 </symbol>
86 <symbol overflow="visible" id="glyph0-27">
87 <path style="stroke:none;" d="M 0.890625 -6.5625 L 1.765625 -6.5625 L 1.765625 -0.75 L 4.96875 -0.75 L 4.96875 0 L 0.890625 0 Z M 0.890625 -6.5625 "/>
88 </symbol>
89 <symbol overflow="visible" id="glyph0-28">
90 <path style="stroke:none;" d="M 3.078125 -5.6875 L 1.875 -2.421875 L 4.28125 -2.421875 Z M 2.578125 -6.5625 L 3.578125 -6.5625 L 6.078125 0 L 5.15625 0 L 4.5625 -1.6875 L 1.609375 -1.6875 L 1 0 L 0.078125 0 Z M 2.578125 -6.5625 "/>
91 </symbol>
92 <symbol overflow="visible" id="glyph0-29">
93 <path style="stroke:none;" d="M 1.765625 -5.828125 L 1.765625 -0.734375 L 2.84375 -0.734375 C 3.75 -0.734375 4.410156 -0.9375 4.828125 -1.34375 C 5.253906 -1.75 5.46875 -2.394531 5.46875 -3.28125 C 5.46875 -4.164062 5.253906 -4.8125 4.828125 -5.21875 C 4.410156 -5.625 3.75 -5.828125 2.84375 -5.828125 Z M 0.890625 -6.5625 L 2.703125 -6.5625 C 3.972656 -6.5625 4.90625 -6.296875 5.5 -5.765625 C 6.101562 -5.234375 6.40625 -4.40625 6.40625 -3.28125 C 6.40625 -2.15625 6.101562 -1.328125 5.5 -0.796875 C 4.90625 -0.265625 3.972656 0 2.703125 0 L 0.890625 0 Z M 0.890625 -6.5625 "/>
94 </symbol>
95 <symbol overflow="visible" id="glyph0-30">
96 <path style="stroke:none;" d="M -0.015625 -6.5625 L 0.9375 -6.5625 L 2.75 -3.859375 L 4.5625 -6.5625 L 5.515625 -6.5625 L 3.1875 -3.125 L 3.1875 0 L 2.296875 0 L 2.296875 -3.125 Z M -0.015625 -6.5625 "/>
97 </symbol>
98 <symbol overflow="visible" id="glyph0-31">
99 <path style="stroke:none;" d="M 0.375 -4.921875 L 1.1875 -4.921875 L 2.203125 -1.078125 L 3.203125 -4.921875 L 4.15625 -4.921875 L 5.171875 -1.078125 L 6.171875 -4.921875 L 6.984375 -4.921875 L 5.703125 0 L 4.734375 0 L 3.6875 -4.03125 L 2.625 0 L 1.671875 0 Z M 0.375 -4.921875 "/>
100 </symbol>
101 <symbol overflow="visible" id="glyph0-32">
102 <path style="stroke:none;" d="M 4.09375 -4.171875 L 4.09375 -6.84375 L 4.890625 -6.84375 L 4.890625 0 L 4.09375 0 L 4.09375 -0.734375 C 3.914062 -0.441406 3.695312 -0.222656 3.4375 -0.078125 C 3.175781 0.0546875 2.867188 0.125 2.515625 0.125 C 1.921875 0.125 1.4375 -0.109375 1.0625 -0.578125 C 0.6875 -1.054688 0.5 -1.679688 0.5 -2.453125 C 0.5 -3.222656 0.6875 -3.847656 1.0625 -4.328125 C 1.4375 -4.804688 1.921875 -5.046875 2.515625 -5.046875 C 2.867188 -5.046875 3.175781 -4.972656 3.4375 -4.828125 C 3.695312 -4.679688 3.914062 -4.460938 4.09375 -4.171875 Z M 1.328125 -2.453125 C 1.328125 -1.859375 1.445312 -1.390625 1.6875 -1.046875 C 1.9375 -0.710938 2.273438 -0.546875 2.703125 -0.546875 C 3.128906 -0.546875 3.46875 -0.710938 3.71875 -1.046875 C 3.96875 -1.390625 4.09375 -1.859375 4.09375 -2.453125 C 4.09375 -3.046875 3.96875 -3.507812 3.71875 -3.84375 C 3.46875 -4.1875 3.128906 -4.359375 2.703125 -4.359375 C 2.273438 -4.359375 1.9375 -4.1875 1.6875 -3.84375 C 1.445312 -3.507812 1.328125 -3.046875 1.328125 -2.453125 Z M 1.328125 -2.453125 "/>
103 </symbol>
104 <symbol overflow="visible" id="glyph0-33">
105 <path style="stroke:none;" d="M 1.765625 -5.828125 L 1.765625 -3.359375 L 2.890625 -3.359375 C 3.296875 -3.359375 3.613281 -3.46875 3.84375 -3.6875 C 4.070312 -3.90625 4.1875 -4.207031 4.1875 -4.59375 C 4.1875 -4.988281 4.070312 -5.289062 3.84375 -5.5 C 3.613281 -5.71875 3.296875 -5.828125 2.890625 -5.828125 Z M 0.890625 -6.5625 L 2.890625 -6.5625 C 3.617188 -6.5625 4.171875 -6.394531 4.546875 -6.0625 C 4.929688 -5.726562 5.125 -5.238281 5.125 -4.59375 C 5.125 -3.945312 4.929688 -3.457031 4.546875 -3.125 C 4.171875 -2.800781 3.617188 -2.640625 2.890625 -2.640625 L 1.765625 -2.640625 L 1.765625 0 L 0.890625 0 Z M 0.890625 -6.5625 "/>
106 </symbol>
107 <symbol overflow="visible" id="glyph0-34">
108 <path style="stroke:none;" d="M 5.359375 -0.9375 L 5.359375 -2.703125 L 3.90625 -2.703125 L 3.90625 -3.421875 L 6.234375 -3.421875 L 6.234375 -0.609375 C 5.890625 -0.367188 5.507812 -0.1875 5.09375 -0.0625 C 4.6875 0.0625 4.25 0.125 3.78125 0.125 C 2.75 0.125 1.941406 -0.171875 1.359375 -0.765625 C 0.785156 -1.367188 0.5 -2.207031 0.5 -3.28125 C 0.5 -4.34375 0.785156 -5.175781 1.359375 -5.78125 C 1.941406 -6.382812 2.75 -6.6875 3.78125 -6.6875 C 4.207031 -6.6875 4.613281 -6.628906 5 -6.515625 C 5.382812 -6.410156 5.738281 -6.257812 6.0625 -6.0625 L 6.0625 -5.109375 C 5.738281 -5.390625 5.390625 -5.597656 5.015625 -5.734375 C 4.648438 -5.878906 4.265625 -5.953125 3.859375 -5.953125 C 3.054688 -5.953125 2.453125 -5.726562 2.046875 -5.28125 C 1.640625 -4.832031 1.4375 -4.164062 1.4375 -3.28125 C 1.4375 -2.394531 1.640625 -1.726562 2.046875 -1.28125 C 2.453125 -0.832031 3.054688 -0.609375 3.859375 -0.609375 C 4.171875 -0.609375 4.445312 -0.632812 4.6875 -0.6875 C 4.9375 -0.738281 5.160156 -0.820312 5.359375 -0.9375 Z M 5.359375 -0.9375 "/>
109 </symbol>
110 <symbol overflow="visible" id="glyph0-35">
111 <path style="stroke:none;" d="M 1.625 -0.734375 L 1.625 1.875 L 0.8125 1.875 L 0.8125 -4.921875 L 1.625 -4.921875 L 1.625 -4.171875 C 1.800781 -4.460938 2.015625 -4.679688 2.265625 -4.828125 C 2.523438 -4.972656 2.835938 -5.046875 3.203125 -5.046875 C 3.796875 -5.046875 4.28125 -4.804688 4.65625 -4.328125 C 5.03125 -3.847656 5.21875 -3.222656 5.21875 -2.453125 C 5.21875 -1.679688 5.03125 -1.054688 4.65625 -0.578125 C 4.28125 -0.109375 3.796875 0.125 3.203125 0.125 C 2.835938 0.125 2.523438 0.0546875 2.265625 -0.078125 C 2.015625 -0.222656 1.800781 -0.441406 1.625 -0.734375 Z M 4.375 -2.453125 C 4.375 -3.046875 4.25 -3.507812 4 -3.84375 C 3.757812 -4.1875 3.425781 -4.359375 3 -4.359375 C 2.570312 -4.359375 2.234375 -4.1875 1.984375 -3.84375 C 1.742188 -3.507812 1.625 -3.046875 1.625 -2.453125 C 1.625 -1.859375 1.742188 -1.390625 1.984375 -1.046875 C 2.234375 -0.710938 2.570312 -0.546875 3 -0.546875 C 3.425781 -0.546875 3.757812 -0.710938 4 -1.046875 C 4.25 -1.390625 4.375 -1.859375 4.375 -2.453125 Z M 4.375 -2.453125 "/>
112 </symbol>
113 <symbol overflow="visible" id="glyph0-36">
114 <path style="stroke:none;" d="M 4.9375 -2.96875 L 4.9375 0 L 4.125 0 L 4.125 -2.9375 C 4.125 -3.40625 4.035156 -3.753906 3.859375 -3.984375 C 3.679688 -4.222656 3.410156 -4.34375 3.046875 -4.34375 C 2.609375 -4.34375 2.257812 -4.203125 2 -3.921875 C 1.75 -3.640625 1.625 -3.257812 1.625 -2.78125 L 1.625 0 L 0.8125 0 L 0.8125 -6.84375 L 1.625 -6.84375 L 1.625 -4.15625 C 1.820312 -4.445312 2.050781 -4.664062 2.3125 -4.8125 C 2.570312 -4.96875 2.875 -5.046875 3.21875 -5.046875 C 3.78125 -5.046875 4.207031 -4.867188 4.5 -4.515625 C 4.789062 -4.160156 4.9375 -3.644531 4.9375 -2.96875 Z M 4.9375 -2.96875 "/>
115 </symbol>
116 <symbol overflow="visible" id="glyph0-37">
117 <path style="stroke:none;" d="M 2.796875 -6.828125 C 2.398438 -6.148438 2.101562 -5.484375 1.90625 -4.828125 C 1.71875 -4.171875 1.625 -3.503906 1.625 -2.828125 C 1.625 -2.148438 1.71875 -1.476562 1.90625 -0.8125 C 2.101562 -0.144531 2.398438 0.519531 2.796875 1.1875 L 2.09375 1.1875 C 1.644531 0.5 1.3125 -0.175781 1.09375 -0.84375 C 0.882812 -1.507812 0.78125 -2.171875 0.78125 -2.828125 C 0.78125 -3.484375 0.882812 -4.140625 1.09375 -4.796875 C 1.3125 -5.460938 1.644531 -6.140625 2.09375 -6.828125 Z M 2.796875 -6.828125 "/>
118 </symbol>
119 <symbol overflow="visible" id="glyph0-38">
120 <path style="stroke:none;" d="M 4.09375 -2.515625 C 4.09375 -3.097656 3.96875 -3.550781 3.71875 -3.875 C 3.476562 -4.195312 3.140625 -4.359375 2.703125 -4.359375 C 2.273438 -4.359375 1.9375 -4.195312 1.6875 -3.875 C 1.445312 -3.550781 1.328125 -3.097656 1.328125 -2.515625 C 1.328125 -1.929688 1.445312 -1.476562 1.6875 -1.15625 C 1.9375 -0.832031 2.273438 -0.671875 2.703125 -0.671875 C 3.140625 -0.671875 3.476562 -0.832031 3.71875 -1.15625 C 3.96875 -1.476562 4.09375 -1.929688 4.09375 -2.515625 Z M 4.890625 -0.609375 C 4.890625 0.222656 4.703125 0.84375 4.328125 1.25 C 3.960938 1.664062 3.394531 1.875 2.625 1.875 C 2.34375 1.875 2.078125 1.851562 1.828125 1.8125 C 1.578125 1.769531 1.332031 1.703125 1.09375 1.609375 L 1.09375 0.828125 C 1.332031 0.953125 1.566406 1.046875 1.796875 1.109375 C 2.023438 1.171875 2.257812 1.203125 2.5 1.203125 C 3.03125 1.203125 3.425781 1.0625 3.6875 0.78125 C 3.957031 0.507812 4.09375 0.09375 4.09375 -0.46875 L 4.09375 -0.859375 C 3.925781 -0.578125 3.707031 -0.363281 3.4375 -0.21875 C 3.175781 -0.0703125 2.867188 0 2.515625 0 C 1.910156 0 1.421875 -0.226562 1.046875 -0.6875 C 0.679688 -1.144531 0.5 -1.753906 0.5 -2.515625 C 0.5 -3.273438 0.679688 -3.882812 1.046875 -4.34375 C 1.421875 -4.8125 1.910156 -5.046875 2.515625 -5.046875 C 2.867188 -5.046875 3.175781 -4.972656 3.4375 -4.828125 C 3.707031 -4.679688 3.925781 -4.460938 4.09375 -4.171875 L 4.09375 -4.921875 L 4.890625 -4.921875 Z M 4.890625 -0.609375 "/>
121 </symbol>
122 <symbol overflow="visible" id="glyph0-39">
123 <path style="stroke:none;" d="M 0.4375 -2.828125 L 2.8125 -2.828125 L 2.8125 -2.109375 L 0.4375 -2.109375 Z M 0.4375 -2.828125 "/>
124 </symbol>
125 <symbol overflow="visible" id="glyph0-40">
126 <path style="stroke:none;" d="M 0.265625 -4.921875 L 1.125 -4.921875 L 2.65625 -0.796875 L 4.203125 -4.921875 L 5.0625 -4.921875 L 3.21875 0 L 2.109375 0 Z M 0.265625 -4.921875 "/>
127 </symbol>
128 <symbol overflow="visible" id="glyph0-41">
129 <path style="stroke:none;" d="M 0.71875 -6.828125 L 1.421875 -6.828125 C 1.859375 -6.140625 2.1875 -5.460938 2.40625 -4.796875 C 2.625 -4.140625 2.734375 -3.484375 2.734375 -2.828125 C 2.734375 -2.171875 2.625 -1.507812 2.40625 -0.84375 C 2.1875 -0.175781 1.859375 0.5 1.421875 1.1875 L 0.71875 1.1875 C 1.113281 0.519531 1.40625 -0.144531 1.59375 -0.8125 C 1.78125 -1.476562 1.875 -2.148438 1.875 -2.828125 C 1.875 -3.503906 1.78125 -4.171875 1.59375 -4.828125 C 1.40625 -5.484375 1.113281 -6.148438 0.71875 -6.828125 Z M 0.71875 -6.828125 "/>
130 </symbol>
131 <symbol overflow="visible" id="glyph0-42">
132 <path style="stroke:none;" d="M 3.34375 -6.84375 L 3.34375 -6.171875 L 2.5625 -6.171875 C 2.269531 -6.171875 2.066406 -6.109375 1.953125 -5.984375 C 1.847656 -5.867188 1.796875 -5.660156 1.796875 -5.359375 L 1.796875 -4.921875 L 3.125 -4.921875 L 3.125 -4.296875 L 1.796875 -4.296875 L 1.796875 0 L 0.984375 0 L 0.984375 -4.296875 L 0.203125 -4.296875 L 0.203125 -4.921875 L 0.984375 -4.921875 L 0.984375 -5.265625 C 0.984375 -5.816406 1.109375 -6.21875 1.359375 -6.46875 C 1.617188 -6.71875 2.023438 -6.84375 2.578125 -6.84375 Z M 3.34375 -6.84375 "/>
133 </symbol>
134 <symbol overflow="visible" id="glyph0-43">
135 <path style="stroke:none;" d="M 1.765625 -3.140625 L 1.765625 -0.734375 L 3.1875 -0.734375 C 3.664062 -0.734375 4.019531 -0.832031 4.25 -1.03125 C 4.476562 -1.226562 4.59375 -1.53125 4.59375 -1.9375 C 4.59375 -2.34375 4.476562 -2.644531 4.25 -2.84375 C 4.019531 -3.039062 3.664062 -3.140625 3.1875 -3.140625 Z M 1.765625 -5.828125 L 1.765625 -3.859375 L 3.078125 -3.859375 C 3.515625 -3.859375 3.835938 -3.9375 4.046875 -4.09375 C 4.265625 -4.257812 4.375 -4.507812 4.375 -4.84375 C 4.375 -5.175781 4.265625 -5.421875 4.046875 -5.578125 C 3.835938 -5.742188 3.515625 -5.828125 3.078125 -5.828125 Z M 0.890625 -6.5625 L 3.15625 -6.5625 C 3.832031 -6.5625 4.351562 -6.421875 4.71875 -6.140625 C 5.082031 -5.859375 5.265625 -5.457031 5.265625 -4.9375 C 5.265625 -4.539062 5.171875 -4.222656 4.984375 -3.984375 C 4.796875 -3.742188 4.519531 -3.59375 4.15625 -3.53125 C 4.59375 -3.4375 4.929688 -3.238281 5.171875 -2.9375 C 5.410156 -2.644531 5.53125 -2.28125 5.53125 -1.84375 C 5.53125 -1.25 5.332031 -0.789062 4.9375 -0.46875 C 4.539062 -0.15625 3.972656 0 3.234375 0 L 0.890625 0 Z M 0.890625 -6.5625 "/>
136 </symbol>
137 <symbol overflow="visible" id="glyph0-44">
138 <path style="stroke:none;" d="M 0.890625 -6.5625 L 1.765625 -6.5625 L 1.765625 -3.875 L 5 -3.875 L 5 -6.5625 L 5.890625 -6.5625 L 5.890625 0 L 5 0 L 5 -3.125 L 1.765625 -3.125 L 1.765625 0 L 0.890625 0 Z M 0.890625 -6.5625 "/>
139 </symbol>
140 </g>
141 <clipPath id="clip1">
142 <path d="M 358 289 L 360.210938 289 L 360.210938 298 L 358 298 Z M 358 289 "/>
143 </clipPath>
144 <clipPath id="clip2">
145 <path d="M 81 392 L 87 392 L 87 399.832031 L 81 399.832031 Z M 81 392 "/>
146 </clipPath>
147 <clipPath id="clip3">
148 <path d="M 86 392 L 92 392 L 92 399.832031 L 86 399.832031 Z M 86 392 "/>
149 </clipPath>
150 <clipPath id="clip4">
151 <path d="M 134 392 L 139 392 L 139 399.832031 L 134 399.832031 Z M 134 392 "/>
152 </clipPath>
153 </defs>
154 <g id="surface1">
155 <path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.33313%,11.764526%,12.156677%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 264.753906 -0.265625 C 270.855469 0.132812 272.453125 -6.765625 279.253906 -6.765625 C 289.453125 -6.765625 295.054688 -1.566406 305.253906 -2.265625 C 311.355469 -2.867188 319.15625 -10.167969 322.253906 -14.265625 C 327.054688 -21.464844 321.453125 -26.765625 324.753906 -35.765625 C 326.054688 -39.464844 331.15625 -43.066406 328.753906 -50.765625 C 325.355469 -60.765625 317.054688 -64.265625 305.253906 -64.265625 C 296.453125 -64.265625 291.554688 -59.667969 282.753906 -60.265625 C 268.355469 -61.765625 246.253906 -62.167969 247.753906 -47.765625 C 248.15625 -42.066406 244.753906 -40.367188 243.753906 -35.265625 C 242.054688 -26.667969 248.753906 -19.667969 252.253906 -14.765625 C 256.554688 -8.566406 257.355469 -1.066406 264.753906 -0.265625 Z M 240.394531 -77.453125 L 330.339844 -77.453125 L 330.339844 -118.214844 L 240.394531 -118.214844 Z M 240.394531 -77.453125 " transform="matrix(1,0,0,-1,0,0)"/>
156 <path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.33313%,11.764526%,12.156677%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 286.433594 -60.265625 L 286.433594 -70.460938 " transform="matrix(1,0,0,-1,0,0)"/>
157 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.33313%,11.764526%,12.156677%);fill-opacity:1;" d="M 284.28125 68.976562 L 286.460938 77.105469 L 288.640625 68.976562 "/>
158 <path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.33313%,11.764526%,12.156677%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 286.433594 -118.3125 L 286.433594 -125.710938 " transform="matrix(1,0,0,-1,0,0)"/>
159 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.33313%,11.764526%,12.156677%);fill-opacity:1;" d="M 284.28125 124.226562 L 286.460938 132.355469 L 288.640625 124.226562 "/>
160 <path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.33313%,11.764526%,12.156677%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 286.433594 -144.90625 L 286.433594 -153.90625 " transform="matrix(1,0,0,-1,0,0)"/>
161 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.33313%,11.764526%,12.156677%);fill-opacity:1;" d="M 284.28125 152.417969 L 286.460938 160.550781 L 288.640625 152.417969 "/>
162 <path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.33313%,11.764526%,12.156677%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 286.433594 -176.863281 L 286.433594 -186.863281 " transform="matrix(1,0,0,-1,0,0)"/>
163 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.33313%,11.764526%,12.156677%);fill-opacity:1;" d="M 284.28125 185.378906 L 286.460938 193.507812 L 288.640625 185.378906 "/>
164 <path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.33313%,11.764526%,12.156677%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 286.433594 -219.265625 L 286.433594 -227.515625 " transform="matrix(1,0,0,-1,0,0)"/>
165 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.33313%,11.764526%,12.156677%);fill-opacity:1;" d="M 284.28125 226.03125 L 286.460938 234.160156 L 288.640625 226.03125 "/>
166 <path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.33313%,11.764526%,12.156677%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 286.433594 -260.667969 L 286.433594 -269.917969 " transform="matrix(1,0,0,-1,0,0)"/>
167 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.33313%,11.764526%,12.156677%);fill-opacity:1;" d="M 284.28125 268.429688 L 286.460938 276.5625 L 288.640625 268.429688 "/>
168 <path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.33313%,11.764526%,12.156677%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 286.433594 -300.265625 L 286.433594 -310.265625 " transform="matrix(1,0,0,-1,0,0)"/>
169 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.33313%,11.764526%,12.156677%);fill-opacity:1;" d="M 284.28125 308.78125 L 286.460938 316.910156 L 288.640625 308.78125 "/>
170 <path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.33313%,11.764526%,12.156677%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 286.433594 -332.964844 L 286.433594 -341.964844 " transform="matrix(1,0,0,-1,0,0)"/>
171 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.33313%,11.764526%,12.156677%);fill-opacity:1;" d="M 284.28125 340.480469 L 286.460938 348.609375 L 288.640625 340.480469 "/>
172 <path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.33313%,11.764526%,12.156677%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 10.199219 -244.464844 L 10.199219 -218.464844 " transform="matrix(1,0,0,-1,0,0)"/>
173 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.33313%,11.764526%,12.156677%);fill-opacity:1;" d="M 12.351562 219.953125 L 10.175781 211.820312 L 7.996094 219.953125 "/>
174 <path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.33313%,11.764526%,12.156677%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 10.199219 -250.265625 L 10.199219 -277.265625 " transform="matrix(1,0,0,-1,0,0)"/>
175 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.33313%,11.764526%,12.156677%);fill-opacity:1;" d="M 8.050781 275.78125 L 10.226562 283.910156 L 12.40625 275.78125 "/>
176 <path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.33313%,11.764526%,12.156677%);stroke-opacity:1;stroke-dasharray:2,2;stroke-miterlimit:3.864;" d="M 0 -246.964844 L 224.441406 -246.964844 " transform="matrix(1,0,0,-1,0,0)"/>
177 <path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.33313%,11.764526%,12.156677%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 237.882812 -98.433594 L 128.339844 -128.441406 " transform="matrix(1,0,0,-1,0,0)"/>
178 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.33313%,11.764526%,12.156677%);fill-opacity:1;" d="M 129.207031 125.976562 L 121.941406 130.222656 L 130.355469 130.175781 "/>
179 <path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.33313%,11.764526%,12.156677%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 116.316406 -144.90625 L 116.316406 -153.90625 " transform="matrix(1,0,0,-1,0,0)"/>
180 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.33313%,11.764526%,12.156677%);fill-opacity:1;" d="M 114.167969 152.417969 L 116.34375 160.550781 L 118.523438 152.417969 "/>
181 <path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.33313%,11.764526%,12.156677%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 116.316406 -176.863281 L 116.316406 -186.863281 " transform="matrix(1,0,0,-1,0,0)"/>
182 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.33313%,11.764526%,12.156677%);fill-opacity:1;" d="M 114.167969 185.378906 L 116.34375 193.507812 L 118.523438 185.378906 "/>
183 <path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.33313%,11.764526%,12.156677%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 116.316406 -219.265625 L 116.316406 -278.515625 " transform="matrix(1,0,0,-1,0,0)"/>
184 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.33313%,11.764526%,12.156677%);fill-opacity:1;" d="M 114.167969 277.03125 L 116.34375 285.160156 L 118.523438 277.03125 "/>
185 <path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.33313%,11.764526%,12.156677%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 116.316406 -312.265625 L 116.316406 -338.765625 " transform="matrix(1,0,0,-1,0,0)"/>
186 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.33313%,11.764526%,12.156677%);fill-opacity:1;" d="M 114.167969 337.28125 L 116.34375 345.410156 L 118.523438 337.28125 "/>
187 <path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.33313%,11.764526%,12.156677%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 116.316406 -372.167969 L 116.316406 -382.667969 " transform="matrix(1,0,0,-1,0,0)"/>
188 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.33313%,11.764526%,12.156677%);fill-opacity:1;" d="M 114.167969 381.179688 L 116.34375 389.3125 L 118.523438 381.179688 "/>
189 <path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.33313%,11.764526%,12.156677%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 120.976562 -219.265625 L 229.5625 -319.890625 " transform="matrix(1,0,0,-1,0,0)"/>
190 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.33313%,11.764526%,12.156677%);fill-opacity:1;" d="M 227.007812 320.457031 L 234.453125 324.386719 L 229.972656 317.261719 "/>
191 <path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.33313%,11.764526%,12.156677%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 251.683594 -356.621094 L 169.398438 -356.621094 " transform="matrix(1,0,0,-1,0,0)"/>
192 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.33313%,11.764526%,12.156677%);fill-opacity:1;" d="M 170.882812 354.472656 L 162.753906 356.648438 L 170.882812 358.828125 "/>
193 <path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.33313%,11.764526%,12.156677%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 210.011719 -292.988281 L 181.511719 -298.480469 " transform="matrix(1,0,0,-1,0,0)"/>
194 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.33313%,11.764526%,12.156677%);fill-opacity:1;" d="M 182.5625 296.085938 L 174.988281 299.761719 L 183.386719 300.363281 "/>
195 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
196 <use xlink:href="#glyph0-1" x="68.870992" y="139.737606"/>
197 </g>
198 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
199 <use xlink:href="#glyph0-2" x="73.748992" y="139.737606"/>
200 </g>
201 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
202 <use xlink:href="#glyph0-3" x="78.428992" y="139.737606"/>
203 </g>
204 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
205 <use xlink:href="#glyph0-4" x="83.108992" y="139.737606"/>
206 </g>
207 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
208 <use xlink:href="#glyph0-5" x="87.788992" y="139.737606"/>
209 </g>
210 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
211 <use xlink:href="#glyph0-6" x="90.416992" y="139.737606"/>
212 </g>
213 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
214 <use xlink:href="#glyph0-7" x="92.279992" y="139.737606"/>
215 </g>
216 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
217 <use xlink:href="#glyph0-3" x="97.157992" y="139.737606"/>
218 </g>
219 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
220 <use xlink:href="#glyph0-8" x="101.837992" y="139.737606"/>
221 </g>
222 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
223 <use xlink:href="#glyph0-9" x="106.328992" y="139.737606"/>
224 </g>
225 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
226 <use xlink:href="#glyph0-10" x="108.191992" y="139.737606"/>
227 </g>
228 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
229 <use xlink:href="#glyph0-11" x="110.621992" y="139.737606"/>
230 </g>
231 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
232 <use xlink:href="#glyph0-12" x="116.624992" y="139.737606"/>
233 </g>
234 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
235 <use xlink:href="#glyph0-13" x="121.304992" y="139.737606"/>
236 </g>
237 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
238 <use xlink:href="#glyph0-2" x="126.362992" y="139.737606"/>
239 </g>
240 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
241 <use xlink:href="#glyph0-6" x="131.042992" y="139.737606"/>
242 </g>
243 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
244 <use xlink:href="#glyph0-14" x="132.905992" y="139.737606"/>
245 </g>
246 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
247 <use xlink:href="#glyph0-12" x="135.722992" y="139.737606"/>
248 </g>
249 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
250 <use xlink:href="#glyph0-15" x="140.411992" y="139.737606"/>
251 </g>
252 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
253 <use xlink:href="#glyph0-12" x="147.341992" y="139.737606"/>
254 </g>
255 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
256 <use xlink:href="#glyph0-3" x="152.030992" y="139.737606"/>
257 </g>
258 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
259 <use xlink:href="#glyph0-5" x="156.710992" y="139.737606"/>
260 </g>
261 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
262 <use xlink:href="#glyph0-16" x="159.338992" y="139.737606"/>
263 </g>
264 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
265 <use xlink:href="#glyph0-11" x="249.725992" y="90.552606"/>
266 </g>
267 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
268 <use xlink:href="#glyph0-17" x="256.097992" y="90.552606"/>
269 </g>
270 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
271 <use xlink:href="#glyph0-18" x="261.713992" y="90.552606"/>
272 </g>
273 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
274 <use xlink:href="#glyph0-19" x="269.210992" y="90.552606"/>
275 <use xlink:href="#glyph0-20" x="275.789992" y="90.552606"/>
276 </g>
277 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
278 <use xlink:href="#glyph0-11" x="278.201992" y="90.552606"/>
279 </g>
280 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
281 <use xlink:href="#glyph0-17" x="284.582992" y="90.552606"/>
282 </g>
283 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
284 <use xlink:href="#glyph0-21" x="290.387992" y="90.552606"/>
285 </g>
286 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
287 <use xlink:href="#glyph0-17" x="298.064992" y="90.552606"/>
288 </g>
289 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
290 <use xlink:href="#glyph0-22" x="303.869992" y="90.552606"/>
291 </g>
292 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
293 <use xlink:href="#glyph0-23" x="310.241992" y="90.552606"/>
294 </g>
295 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
296 <use xlink:href="#glyph0-24" x="314.930992" y="90.552606"/>
297 </g>
298 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
299 <use xlink:href="#glyph0-25" x="246.18001" y="101.550606"/>
300 </g>
301 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
302 <use xlink:href="#glyph0-26" x="253.11901" y="101.550606"/>
303 </g>
304 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
305 <use xlink:href="#glyph0-27" x="260.61601" y="101.550606"/>
306 </g>
307 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
308 <use xlink:href="#glyph0-27" x="265.30501" y="101.550606"/>
309 </g>
310 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
311 <use xlink:href="#glyph0-17" x="269.98501" y="101.550606"/>
312 </g>
313 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
314 <use xlink:href="#glyph0-25" x="275.61001" y="101.550606"/>
315 </g>
316 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
317 <use xlink:href="#glyph0-23" x="282.17101" y="101.550606"/>
318 </g>
319 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
320 <use xlink:href="#glyph0-20" x="287.04001" y="101.550606"/>
321 </g>
322 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
323 <use xlink:href="#glyph0-26" x="289.29001" y="101.550606"/>
324 </g>
325 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
326 <use xlink:href="#glyph0-22" x="296.77801" y="101.550606"/>
327 </g>
328 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
329 <use xlink:href="#glyph0-10" x="303.15001" y="101.550606"/>
330 </g>
331 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
332 <use xlink:href="#glyph0-28" x="305.58901" y="101.550606"/>
333 </g>
334 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
335 <use xlink:href="#glyph0-22" x="311.39401" y="101.550606"/>
336 <use xlink:href="#glyph0-29" x="318.12601" y="101.550606"/>
337 </g>
338 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
339 <use xlink:href="#glyph0-28" x="264.828028" y="112.548615"/>
340 </g>
341 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
342 <use xlink:href="#glyph0-22" x="270.642028" y="112.548615"/>
343 </g>
344 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
345 <use xlink:href="#glyph0-28" x="277.014028" y="112.548615"/>
346 </g>
347 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
348 <use xlink:href="#glyph0-27" x="282.828028" y="112.548615"/>
349 </g>
350 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
351 <use xlink:href="#glyph0-30" x="286.212028" y="112.548615"/>
352 </g>
353 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
354 <use xlink:href="#glyph0-24" x="291.459028" y="112.548615"/>
355 </g>
356 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
357 <use xlink:href="#glyph0-20" x="297.642028" y="112.548615"/>
358 </g>
359 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
360 <use xlink:href="#glyph0-24" x="299.883028" y="112.548615"/>
361 </g>
362 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
363 <use xlink:href="#glyph0-21" x="267.969019" y="36.741606"/>
364 </g>
365 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
366 <use xlink:href="#glyph0-6" x="275.268019" y="36.741606"/>
367 </g>
368 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
369 <use xlink:href="#glyph0-3" x="277.131019" y="36.741606"/>
370 </g>
371 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
372 <use xlink:href="#glyph0-6" x="281.820019" y="36.741606"/>
373 </g>
374 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
375 <use xlink:href="#glyph0-31" x="283.683019" y="36.741606"/>
376 </g>
377 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
378 <use xlink:href="#glyph0-7" x="290.235019" y="36.741606"/>
379 </g>
380 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
381 <use xlink:href="#glyph0-14" x="295.104019" y="36.741606"/>
382 </g>
383 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
384 <use xlink:href="#glyph0-9" x="297.921019" y="36.741606"/>
385 </g>
386 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
387 <use xlink:href="#glyph0-32" x="299.784019" y="36.741606"/>
388 </g>
389 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
390 <use xlink:href="#glyph0-29" x="248.511019" y="140.133606"/>
391 </g>
392 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
393 <use xlink:href="#glyph0-8" x="254.883019" y="140.133606"/>
394 </g>
395 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
396 <use xlink:href="#glyph0-5" x="259.374019" y="140.133606"/>
397 </g>
398 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
399 <use xlink:href="#glyph0-8" x="262.191019" y="140.133606"/>
400 </g>
401 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
402 <use xlink:href="#glyph0-10" x="266.682019" y="140.133606"/>
403 </g>
404 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
405 <use xlink:href="#glyph0-11" x="269.121019" y="140.133606"/>
406 </g>
407 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
408 <use xlink:href="#glyph0-12" x="275.115019" y="140.133606"/>
409 </g>
410 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
411 <use xlink:href="#glyph0-13" x="279.795019" y="140.133606"/>
412 </g>
413 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
414 <use xlink:href="#glyph0-2" x="284.853019" y="140.133606"/>
415 </g>
416 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
417 <use xlink:href="#glyph0-6" x="289.533019" y="140.133606"/>
418 </g>
419 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
420 <use xlink:href="#glyph0-14" x="291.396019" y="140.133606"/>
421 </g>
422 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
423 <use xlink:href="#glyph0-12" x="294.213019" y="140.133606"/>
424 </g>
425 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
426 <use xlink:href="#glyph0-15" x="298.902019" y="140.133606"/>
427 </g>
428 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
429 <use xlink:href="#glyph0-12" x="305.841019" y="140.133606"/>
430 </g>
431 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
432 <use xlink:href="#glyph0-3" x="310.521019" y="140.133606"/>
433 </g>
434 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
435 <use xlink:href="#glyph0-5" x="315.210019" y="140.133606"/>
436 </g>
437 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
438 <use xlink:href="#glyph0-16" x="317.829019" y="140.133606"/>
439 </g>
440 <path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.33313%,11.764526%,12.156677%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 227.753906 161.226562 L 342.980469 161.226562 L 342.980469 176.226562 L 227.753906 176.226562 Z M 227.753906 161.226562 "/>
441 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
442 <use xlink:href="#glyph0-25" x="236.773001" y="172.24162"/>
443 </g>
444 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
445 <use xlink:href="#glyph0-26" x="243.712001" y="172.24162"/>
446 </g>
447 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
448 <use xlink:href="#glyph0-22" x="251.209001" y="172.24162"/>
449 </g>
450 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
451 <use xlink:href="#glyph0-25" x="257.770001" y="172.24162"/>
452 </g>
453 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
454 <use xlink:href="#glyph0-17" x="264.700001" y="172.24162"/>
455 </g>
456 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
457 <use xlink:href="#glyph0-33" x="270.514001" y="172.24162"/>
458 </g>
459 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
460 <use xlink:href="#glyph0-23" x="276.130001" y="172.24162"/>
461 </g>
462 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
463 <use xlink:href="#glyph0-19" x="281.008001" y="172.24162"/>
464 </g>
465 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
466 <use xlink:href="#glyph0-28" x="287.011001" y="172.24162"/>
467 </g>
468 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
469 <use xlink:href="#glyph0-27" x="292.825001" y="172.24162"/>
470 </g>
471 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
472 <use xlink:href="#glyph0-10" x="297.514001" y="172.24162"/>
473 </g>
474 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
475 <use xlink:href="#glyph0-29" x="299.944001" y="172.24162"/>
476 </g>
477 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
478 <use xlink:href="#glyph0-17" x="306.505001" y="172.24162"/>
479 </g>
480 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
481 <use xlink:href="#glyph0-24" x="312.121001" y="172.24162"/>
482 </g>
483 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
484 <use xlink:href="#glyph0-20" x="318.304001" y="172.24162"/>
485 </g>
486 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
487 <use xlink:href="#glyph0-34" x="320.545001" y="172.24162"/>
488 </g>
489 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
490 <use xlink:href="#glyph0-22" x="328.222001" y="172.24162"/>
491 </g>
492 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
493 <use xlink:href="#glyph0-25" x="246.259001" y="201.725593"/>
494 </g>
495 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
496 <use xlink:href="#glyph0-7" x="253.009001" y="201.725593"/>
497 </g>
498 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
499 <use xlink:href="#glyph0-3" x="257.878001" y="201.725593"/>
500 </g>
501 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
502 <use xlink:href="#glyph0-4" x="262.558001" y="201.725593"/>
503 </g>
504 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
505 <use xlink:href="#glyph0-12" x="267.238001" y="201.725593"/>
506 </g>
507 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
508 <use xlink:href="#glyph0-35" x="271.927001" y="201.725593"/>
509 </g>
510 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
511 <use xlink:href="#glyph0-5" x="276.976001" y="201.725593"/>
512 </g>
513 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
514 <use xlink:href="#glyph0-2" x="279.604001" y="201.725593"/>
515 </g>
516 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
517 <use xlink:href="#glyph0-8" x="284.284001" y="201.725593"/>
518 </g>
519 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
520 <use xlink:href="#glyph0-9" x="288.784001" y="201.725593"/>
521 </g>
522 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
523 <use xlink:href="#glyph0-10" x="290.647001" y="201.725593"/>
524 </g>
525 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
526 <use xlink:href="#glyph0-24" x="293.077001" y="201.725593"/>
527 </g>
528 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
529 <use xlink:href="#glyph0-4" x="299.071001" y="201.725593"/>
530 </g>
531 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
532 <use xlink:href="#glyph0-36" x="303.580001" y="201.725593"/>
533 </g>
534 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
535 <use xlink:href="#glyph0-12" x="308.260001" y="201.725593"/>
536 </g>
537 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
538 <use xlink:href="#glyph0-15" x="312.949001" y="201.725593"/>
539 </g>
540 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
541 <use xlink:href="#glyph0-8" x="319.879001" y="201.725593"/>
542 </g>
543 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
544 <use xlink:href="#glyph0-37" x="233.893001" y="212.723602"/>
545 </g>
546 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
547 <use xlink:href="#glyph0-20" x="236.710001" y="212.723602"/>
548 </g>
549 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
550 <use xlink:href="#glyph0-3" x="238.762001" y="212.723602"/>
551 </g>
552 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
553 <use xlink:href="#glyph0-10" x="243.442001" y="212.723602"/>
554 </g>
555 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
556 <use xlink:href="#glyph0-8" x="245.872001" y="212.723602"/>
557 </g>
558 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
559 <use xlink:href="#glyph0-10" x="250.363001" y="212.723602"/>
560 </g>
561 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
562 <use xlink:href="#glyph0-36" x="252.802001" y="212.723602"/>
563 </g>
564 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
565 <use xlink:href="#glyph0-6" x="257.482001" y="212.723602"/>
566 </g>
567 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
568 <use xlink:href="#glyph0-38" x="259.345001" y="212.723602"/>
569 </g>
570 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
571 <use xlink:href="#glyph0-36" x="264.394001" y="212.723602"/>
572 </g>
573 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
574 <use xlink:href="#glyph0-39" x="269.074001" y="212.723602"/>
575 </g>
576 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
577 <use xlink:href="#glyph0-9" x="271.702001" y="212.723602"/>
578 </g>
579 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
580 <use xlink:href="#glyph0-12" x="273.565001" y="212.723602"/>
581 </g>
582 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
583 <use xlink:href="#glyph0-40" x="278.254001" y="212.723602"/>
584 </g>
585 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
586 <use xlink:href="#glyph0-12" x="282.178001" y="212.723602"/>
587 </g>
588 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
589 <use xlink:href="#glyph0-9" x="286.867001" y="212.723602"/>
590 </g>
591 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
592 <use xlink:href="#glyph0-10" x="288.730001" y="212.723602"/>
593 </g>
594 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
595 <use xlink:href="#glyph0-32" x="291.160001" y="212.723602"/>
596 </g>
597 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
598 <use xlink:href="#glyph0-8" x="296.209001" y="212.723602"/>
599 </g>
600 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
601 <use xlink:href="#glyph0-5" x="300.700001" y="212.723602"/>
602 </g>
603 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
604 <use xlink:href="#glyph0-8" x="303.517001" y="212.723602"/>
605 </g>
606 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
607 <use xlink:href="#glyph0-10" x="308.017001" y="212.723602"/>
608 </g>
609 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
610 <use xlink:href="#glyph0-15" x="310.447001" y="212.723602"/>
611 </g>
612 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
613 <use xlink:href="#glyph0-7" x="317.386001" y="212.723602"/>
614 </g>
615 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
616 <use xlink:href="#glyph0-32" x="322.255001" y="212.723602"/>
617 </g>
618 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
619 <use xlink:href="#glyph0-12" x="327.304001" y="212.723602"/>
620 </g>
621 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
622 <use xlink:href="#glyph0-9" x="331.993001" y="212.723602"/>
623 </g>
624 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
625 <use xlink:href="#glyph0-41" x="333.856001" y="212.723602"/>
626 </g>
627 <path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.33313%,11.764526%,12.156677%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 226.953125 234.546875 L 343.78125 234.546875 L 343.78125 260.546875 L 226.953125 260.546875 Z M 226.953125 234.546875 "/>
628 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
629 <use xlink:href="#glyph0-27" x="247.48599" y="245.163503"/>
630 </g>
631 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
632 <use xlink:href="#glyph0-26" x="251.61699" y="245.163503"/>
633 </g>
634 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
635 <use xlink:href="#glyph0-34" x="259.11399" y="245.163503"/>
636 </g>
637 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
638 <use xlink:href="#glyph0-20" x="266.79099" y="245.163503"/>
639 </g>
640 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
641 <use xlink:href="#glyph0-25" x="269.03199" y="245.163503"/>
642 </g>
643 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
644 <use xlink:href="#glyph0-28" x="275.60199" y="245.163503"/>
645 </g>
646 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
647 <use xlink:href="#glyph0-27" x="281.41599" y="245.163503"/>
648 </g>
649 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
650 <use xlink:href="#glyph0-10" x="286.09599" y="245.163503"/>
651 </g>
652 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
653 <use xlink:href="#glyph0-29" x="288.53499" y="245.163503"/>
654 </g>
655 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
656 <use xlink:href="#glyph0-17" x="295.09599" y="245.163503"/>
657 </g>
658 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
659 <use xlink:href="#glyph0-24" x="300.71199" y="245.163503"/>
660 </g>
661 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
662 <use xlink:href="#glyph0-20" x="306.89499" y="245.163503"/>
663 </g>
664 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
665 <use xlink:href="#glyph0-34" x="309.13599" y="245.163503"/>
666 </g>
667 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
668 <use xlink:href="#glyph0-22" x="316.81299" y="245.163503"/>
669 </g>
670 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
671 <use xlink:href="#glyph0-37" x="233.032008" y="256.161512"/>
672 </g>
673 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
674 <use xlink:href="#glyph0-29" x="235.849008" y="256.161512"/>
675 </g>
676 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
677 <use xlink:href="#glyph0-28" x="242.041008" y="256.161512"/>
678 </g>
679 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
680 <use xlink:href="#glyph0-23" x="247.117008" y="256.161512"/>
681 </g>
682 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
683 <use xlink:href="#glyph0-28" x="251.068008" y="256.161512"/>
684 </g>
685 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
686 <use xlink:href="#glyph0-21" x="259.321008" y="256.161512"/>
687 </g>
688 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
689 <use xlink:href="#glyph0-26" x="266.809008" y="256.161512"/>
690 </g>
691 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
692 <use xlink:href="#glyph0-29" x="274.306008" y="256.161512"/>
693 </g>
694 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
695 <use xlink:href="#glyph0-17" x="280.867008" y="256.161512"/>
696 </g>
697 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
698 <use xlink:href="#glyph0-27" x="286.672008" y="256.161512"/>
699 </g>
700 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
701 <use xlink:href="#glyph0-21" x="293.800008" y="256.161512"/>
702 </g>
703 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
704 <use xlink:href="#glyph0-28" x="301.099008" y="256.161512"/>
705 </g>
706 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
707 <use xlink:href="#glyph0-33" x="306.913008" y="256.161512"/>
708 </g>
709 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
710 <use xlink:href="#glyph0-33" x="312.727008" y="256.161512"/>
711 </g>
712 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
713 <use xlink:href="#glyph0-20" x="318.541008" y="256.161512"/>
714 </g>
715 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
716 <use xlink:href="#glyph0-22" x="320.971008" y="256.161512"/>
717 </g>
718 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
719 <use xlink:href="#glyph0-34" x="327.532008" y="256.161512"/>
720 </g>
721 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
722 <use xlink:href="#glyph0-41" x="334.831008" y="256.161512"/>
723 </g>
724 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
725 <use xlink:href="#glyph0-27" x="228.44199" y="285.105512"/>
726 </g>
727 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
728 <use xlink:href="#glyph0-7" x="233.13099" y="285.105512"/>
729 </g>
730 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
731 <use xlink:href="#glyph0-38" x="237.99999" y="285.105512"/>
732 </g>
733 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
734 <use xlink:href="#glyph0-6" x="243.04899" y="285.105512"/>
735 </g>
736 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
737 <use xlink:href="#glyph0-4" x="244.91199" y="285.105512"/>
738 </g>
739 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
740 <use xlink:href="#glyph0-8" x="249.60099" y="285.105512"/>
741 </g>
742 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
743 <use xlink:href="#glyph0-9" x="254.09199" y="285.105512"/>
744 </g>
745 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
746 <use xlink:href="#glyph0-37" x="258.39399" y="285.105512"/>
747 </g>
748 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
749 <use xlink:href="#glyph0-25" x="261.21099" y="285.105512"/>
750 </g>
751 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
752 <use xlink:href="#glyph0-7" x="267.96099" y="285.105512"/>
753 </g>
754 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
755 <use xlink:href="#glyph0-3" x="272.82999" y="285.105512"/>
756 </g>
757 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
758 <use xlink:href="#glyph0-4" x="277.50999" y="285.105512"/>
759 </g>
760 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
761 <use xlink:href="#glyph0-12" x="282.18999" y="285.105512"/>
762 </g>
763 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
764 <use xlink:href="#glyph0-35" x="286.87899" y="285.105512"/>
765 </g>
766 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
767 <use xlink:href="#glyph0-5" x="291.92799" y="285.105512"/>
768 </g>
769 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
770 <use xlink:href="#glyph0-2" x="294.55599" y="285.105512"/>
771 </g>
772 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
773 <use xlink:href="#glyph0-8" x="299.23599" y="285.105512"/>
774 </g>
775 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
776 <use xlink:href="#glyph0-9" x="303.73599" y="285.105512"/>
777 </g>
778 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
779 <use xlink:href="#glyph0-41" x="305.59899" y="285.105512"/>
780 </g>
781 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
782 <use xlink:href="#glyph0-10" x="308.41599" y="285.105512"/>
783 </g>
784 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
785 <use xlink:href="#glyph0-24" x="310.84599" y="285.105512"/>
786 </g>
787 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
788 <use xlink:href="#glyph0-4" x="316.83999" y="285.105512"/>
789 </g>
790 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
791 <use xlink:href="#glyph0-36" x="321.34899" y="285.105512"/>
792 </g>
793 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
794 <use xlink:href="#glyph0-12" x="326.02899" y="285.105512"/>
795 </g>
796 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
797 <use xlink:href="#glyph0-15" x="330.71799" y="285.105512"/>
798 </g>
799 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
800 <use xlink:href="#glyph0-8" x="337.64799" y="285.105512"/>
801 </g>
802 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
803 <use xlink:href="#glyph0-37" x="210.44199" y="296.103521"/>
804 </g>
805 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
806 <use xlink:href="#glyph0-20" x="213.25899" y="296.103521"/>
807 </g>
808 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
809 <use xlink:href="#glyph0-3" x="215.31099" y="296.103521"/>
810 </g>
811 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
812 <use xlink:href="#glyph0-10" x="219.99099" y="296.103521"/>
813 </g>
814 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
815 <use xlink:href="#glyph0-5" x="222.42099" y="296.103521"/>
816 </g>
817 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
818 <use xlink:href="#glyph0-36" x="225.04899" y="296.103521"/>
819 </g>
820 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
821 <use xlink:href="#glyph0-12" x="229.72899" y="296.103521"/>
822 </g>
823 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
824 <use xlink:href="#glyph0-10" x="234.41799" y="296.103521"/>
825 </g>
826 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
827 <use xlink:href="#glyph0-32" x="236.84799" y="296.103521"/>
828 </g>
829 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
830 <use xlink:href="#glyph0-8" x="241.90599" y="296.103521"/>
831 </g>
832 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
833 <use xlink:href="#glyph0-5" x="246.39699" y="296.103521"/>
834 </g>
835 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
836 <use xlink:href="#glyph0-8" x="249.21399" y="296.103521"/>
837 </g>
838 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
839 <use xlink:href="#glyph0-10" x="253.70499" y="296.103521"/>
840 </g>
841 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
842 <use xlink:href="#glyph0-15" x="256.13499" y="296.103521"/>
843 </g>
844 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
845 <use xlink:href="#glyph0-7" x="263.07399" y="296.103521"/>
846 </g>
847 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
848 <use xlink:href="#glyph0-32" x="267.94299" y="296.103521"/>
849 </g>
850 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
851 <use xlink:href="#glyph0-12" x="272.99199" y="296.103521"/>
852 </g>
853 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
854 <use xlink:href="#glyph0-9" x="277.68099" y="296.103521"/>
855 </g>
856 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
857 <use xlink:href="#glyph0-10" x="279.54399" y="296.103521"/>
858 </g>
859 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
860 <use xlink:href="#glyph0-7" x="281.98299" y="296.103521"/>
861 </g>
862 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
863 <use xlink:href="#glyph0-42" x="286.85199" y="296.103521"/>
864 </g>
865 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
866 <use xlink:href="#glyph0-10" x="289.29099" y="296.103521"/>
867 </g>
868 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
869 <use xlink:href="#glyph0-8" x="291.72099" y="296.103521"/>
870 </g>
871 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
872 <use xlink:href="#glyph0-10" x="296.21199" y="296.103521"/>
873 </g>
874 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
875 <use xlink:href="#glyph0-16" x="298.64199" y="296.103521"/>
876 </g>
877 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
878 <use xlink:href="#glyph0-35" x="302.94399" y="296.103521"/>
879 </g>
880 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
881 <use xlink:href="#glyph0-12" x="307.99299" y="296.103521"/>
882 </g>
883 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
884 <use xlink:href="#glyph0-4" x="312.68199" y="296.103521"/>
885 </g>
886 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
887 <use xlink:href="#glyph0-6" x="317.36199" y="296.103521"/>
888 </g>
889 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
890 <use xlink:href="#glyph0-42" x="319.23399" y="296.103521"/>
891 </g>
892 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
893 <use xlink:href="#glyph0-6" x="321.66399" y="296.103521"/>
894 </g>
895 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
896 <use xlink:href="#glyph0-4" x="323.53599" y="296.103521"/>
897 </g>
898 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
899 <use xlink:href="#glyph0-10" x="328.21599" y="296.103521"/>
900 </g>
901 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
902 <use xlink:href="#glyph0-29" x="330.64599" y="296.103521"/>
903 </g>
904 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
905 <use xlink:href="#glyph0-43" x="337.20699" y="296.103521"/>
906 </g>
907 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
908 <use xlink:href="#glyph0-21" x="343.77699" y="296.103521"/>
909 </g>
910 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
911 <use xlink:href="#glyph0-24" x="351.26499" y="296.103521"/>
912 </g>
913 <g clip-path="url(#clip1)" clip-rule="nonzero">
914 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
915 <use xlink:href="#glyph0-41" x="357.472283" y="296.110696"/>
916 </g>
917 </g>
918 <path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.33313%,11.764526%,12.156677%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 234.804688 317.113281 L 335.929688 317.113281 L 335.929688 332.113281 L 234.804688 332.113281 Z M 234.804688 317.113281 "/>
919 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
920 <use xlink:href="#glyph0-33" x="245.584014" y="327.828507"/>
921 </g>
922 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
923 <use xlink:href="#glyph0-44" x="251.398014" y="327.828507"/>
924 </g>
925 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
926 <use xlink:href="#glyph0-30" x="257.950014" y="327.828507"/>
927 </g>
928 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
929 <use xlink:href="#glyph0-24" x="263.197014" y="327.828507"/>
930 </g>
931 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
932 <use xlink:href="#glyph0-20" x="269.380014" y="327.828507"/>
933 </g>
934 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
935 <use xlink:href="#glyph0-25" x="271.621014" y="327.828507"/>
936 </g>
937 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
938 <use xlink:href="#glyph0-28" x="278.191014" y="327.828507"/>
939 </g>
940 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
941 <use xlink:href="#glyph0-27" x="284.005014" y="327.828507"/>
942 </g>
943 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
944 <use xlink:href="#glyph0-10" x="288.694014" y="327.828507"/>
945 </g>
946 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
947 <use xlink:href="#glyph0-29" x="291.124014" y="327.828507"/>
948 </g>
949 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
950 <use xlink:href="#glyph0-17" x="297.685014" y="327.828507"/>
951 </g>
952 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
953 <use xlink:href="#glyph0-24" x="303.301014" y="327.828507"/>
954 </g>
955 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
956 <use xlink:href="#glyph0-20" x="309.493014" y="327.828507"/>
957 </g>
958 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
959 <use xlink:href="#glyph0-34" x="311.734014" y="327.828507"/>
960 </g>
961 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
962 <use xlink:href="#glyph0-22" x="319.411014" y="327.828507"/>
963 </g>
964 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
965 <use xlink:href="#glyph0-20" x="254.512005" y="359.094471"/>
966 </g>
967 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
968 <use xlink:href="#glyph0-3" x="256.564005" y="359.094471"/>
969 </g>
970 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
971 <use xlink:href="#glyph0-5" x="261.244005" y="359.094471"/>
972 </g>
973 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
974 <use xlink:href="#glyph0-12" x="263.872005" y="359.094471"/>
975 </g>
976 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
977 <use xlink:href="#glyph0-14" x="268.561005" y="359.094471"/>
978 </g>
979 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
980 <use xlink:href="#glyph0-3" x="271.378005" y="359.094471"/>
981 </g>
982 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
983 <use xlink:href="#glyph0-8" x="276.058005" y="359.094471"/>
984 </g>
985 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
986 <use xlink:href="#glyph0-9" x="280.549005" y="359.094471"/>
987 </g>
988 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
989 <use xlink:href="#glyph0-10" x="282.412005" y="359.094471"/>
990 </g>
991 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
992 <use xlink:href="#glyph0-24" x="284.851005" y="359.094471"/>
993 </g>
994 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
995 <use xlink:href="#glyph0-4" x="290.845005" y="359.094471"/>
996 </g>
997 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
998 <use xlink:href="#glyph0-36" x="295.345005" y="359.094471"/>
999 </g>
1000 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1001 <use xlink:href="#glyph0-12" x="300.025005" y="359.094471"/>
1002 </g>
1003 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1004 <use xlink:href="#glyph0-15" x="304.714005" y="359.094471"/>
1005 </g>
1006 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1007 <use xlink:href="#glyph0-8" x="311.653005" y="359.094471"/>
1008 </g>
1009 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1010 <use xlink:href="#glyph0-28" x="75.161805" y="397.960098"/>
1011 </g>
1012 <g clip-path="url(#clip2)" clip-rule="nonzero">
1013 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1014 <use xlink:href="#glyph0-35" x="80.975805" y="397.960098"/>
1015 </g>
1016 </g>
1017 <g clip-path="url(#clip3)" clip-rule="nonzero">
1018 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1019 <use xlink:href="#glyph0-35" x="86.024805" y="397.960098"/>
1020 </g>
1021 </g>
1022 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1023 <use xlink:href="#glyph0-9" x="91.073805" y="397.960098"/>
1024 </g>
1025 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1026 <use xlink:href="#glyph0-6" x="92.945805" y="397.960098"/>
1027 </g>
1028 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1029 <use xlink:href="#glyph0-4" x="94.808805" y="397.960098"/>
1030 </g>
1031 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1032 <use xlink:href="#glyph0-8" x="99.488805" y="397.960098"/>
1033 </g>
1034 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1035 <use xlink:href="#glyph0-5" x="103.979805" y="397.960098"/>
1036 </g>
1037 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1038 <use xlink:href="#glyph0-6" x="106.607805" y="397.960098"/>
1039 </g>
1040 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1041 <use xlink:href="#glyph0-7" x="108.470805" y="397.960098"/>
1042 </g>
1043 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1044 <use xlink:href="#glyph0-3" x="113.339805" y="397.960098"/>
1045 </g>
1046 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1047 <use xlink:href="#glyph0-10" x="118.028805" y="397.960098"/>
1048 </g>
1049 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1050 <use xlink:href="#glyph0-33" x="120.458805" y="397.960098"/>
1051 </g>
1052 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1053 <use xlink:href="#glyph0-14" x="126.083805" y="397.960098"/>
1054 </g>
1055 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1056 <use xlink:href="#glyph0-7" x="128.900805" y="397.960098"/>
1057 </g>
1058 <g clip-path="url(#clip4)" clip-rule="nonzero">
1059 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1060 <use xlink:href="#glyph0-38" x="133.769805" y="397.960098"/>
1061 </g>
1062 </g>
1063 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1064 <use xlink:href="#glyph0-14" x="138.818805" y="397.960098"/>
1065 </g>
1066 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1067 <use xlink:href="#glyph0-8" x="141.635805" y="397.960098"/>
1068 </g>
1069 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1070 <use xlink:href="#glyph0-15" x="146.126805" y="397.960098"/>
1071 </g>
1072 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1073 <use xlink:href="#glyph0-16" x="153.065805" y="397.960098"/>
1074 </g>
1075 <path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.33313%,11.764526%,12.156677%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 71.316406 345.917969 L 161.316406 345.917969 L 161.316406 371.917969 L 71.316406 371.917969 Z M 71.316406 345.917969 "/>
1076 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1077 <use xlink:href="#glyph0-23" x="85.042002" y="356.631588"/>
1078 </g>
1079 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1080 <use xlink:href="#glyph0-11" x="89.911002" y="356.631588"/>
1081 </g>
1082 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1083 <use xlink:href="#glyph0-28" x="95.905002" y="356.631588"/>
1084 </g>
1085 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1086 <use xlink:href="#glyph0-22" x="101.719002" y="356.631588"/>
1087 </g>
1088 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1089 <use xlink:href="#glyph0-24" x="108.280002" y="356.631588"/>
1090 </g>
1091 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1092 <use xlink:href="#glyph0-28" x="114.283002" y="356.631588"/>
1093 </g>
1094 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1095 <use xlink:href="#glyph0-25" x="119.908002" y="356.631588"/>
1096 </g>
1097 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1098 <use xlink:href="#glyph0-23" x="126.478002" y="356.631588"/>
1099 </g>
1100 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1101 <use xlink:href="#glyph0-20" x="131.347002" y="356.631588"/>
1102 </g>
1103 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1104 <use xlink:href="#glyph0-26" x="133.588002" y="356.631588"/>
1105 </g>
1106 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1107 <use xlink:href="#glyph0-22" x="141.085002" y="356.631588"/>
1108 </g>
1109 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1110 <use xlink:href="#glyph0-20" x="78.102993" y="367.629615"/>
1111 </g>
1112 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1113 <use xlink:href="#glyph0-21" x="80.532993" y="367.629615"/>
1114 </g>
1115 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1116 <use xlink:href="#glyph0-33" x="88.209993" y="367.629615"/>
1117 </g>
1118 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1119 <use xlink:href="#glyph0-27" x="94.023993" y="367.629615"/>
1120 </g>
1121 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1122 <use xlink:href="#glyph0-17" x="98.712993" y="367.629615"/>
1123 </g>
1124 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1125 <use xlink:href="#glyph0-21" x="104.517993" y="367.629615"/>
1126 </g>
1127 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1128 <use xlink:href="#glyph0-17" x="112.203993" y="367.629615"/>
1129 </g>
1130 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1131 <use xlink:href="#glyph0-22" x="118.008993" y="367.629615"/>
1132 </g>
1133 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1134 <use xlink:href="#glyph0-23" x="124.380993" y="367.629615"/>
1135 </g>
1136 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1137 <use xlink:href="#glyph0-28" x="128.322993" y="367.629615"/>
1138 </g>
1139 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1140 <use xlink:href="#glyph0-23" x="133.407993" y="367.629615"/>
1141 </g>
1142 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1143 <use xlink:href="#glyph0-20" x="138.276993" y="367.629615"/>
1144 </g>
1145 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1146 <use xlink:href="#glyph0-26" x="140.517993" y="367.629615"/>
1147 </g>
1148 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1149 <use xlink:href="#glyph0-22" x="148.014993" y="367.629615"/>
1150 </g>
1151 <path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.33313%,11.764526%,12.156677%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 57.992188 285.800781 L 174.644531 285.800781 L 174.644531 311.800781 L 57.992188 311.800781 Z M 57.992188 285.800781 "/>
1152 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1153 <use xlink:href="#glyph0-28" x="63.244002" y="296.517515"/>
1154 </g>
1155 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1156 <use xlink:href="#glyph0-33" x="69.058002" y="296.517515"/>
1157 </g>
1158 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1159 <use xlink:href="#glyph0-33" x="74.872002" y="296.517515"/>
1160 </g>
1161 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1162 <use xlink:href="#glyph0-27" x="80.686002" y="296.517515"/>
1163 </g>
1164 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1165 <use xlink:href="#glyph0-20" x="85.375002" y="296.517515"/>
1166 </g>
1167 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1168 <use xlink:href="#glyph0-25" x="87.616002" y="296.517515"/>
1169 </g>
1170 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1171 <use xlink:href="#glyph0-28" x="94.186002" y="296.517515"/>
1172 </g>
1173 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1174 <use xlink:href="#glyph0-23" x="99.253002" y="296.517515"/>
1175 </g>
1176 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1177 <use xlink:href="#glyph0-20" x="104.131002" y="296.517515"/>
1178 </g>
1179 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1180 <use xlink:href="#glyph0-26" x="106.372002" y="296.517515"/>
1181 </g>
1182 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1183 <use xlink:href="#glyph0-22" x="113.869002" y="296.517515"/>
1184 </g>
1185 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1186 <use xlink:href="#glyph0-10" x="120.241002" y="296.517515"/>
1187 </g>
1188 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1189 <use xlink:href="#glyph0-33" x="122.671002" y="296.517515"/>
1190 </g>
1191 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1192 <use xlink:href="#glyph0-11" x="128.485002" y="296.517515"/>
1193 </g>
1194 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1195 <use xlink:href="#glyph0-26" x="134.668002" y="296.517515"/>
1196 </g>
1197 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1198 <use xlink:href="#glyph0-34" x="142.165002" y="296.517515"/>
1199 </g>
1200 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1201 <use xlink:href="#glyph0-11" x="149.842002" y="296.517515"/>
1202 </g>
1203 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1204 <use xlink:href="#glyph0-28" x="155.836002" y="296.517515"/>
1205 </g>
1206 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1207 <use xlink:href="#glyph0-21" x="161.650002" y="296.517515"/>
1208 </g>
1209 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1210 <use xlink:href="#glyph0-29" x="98.784993" y="307.515524"/>
1211 </g>
1212 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1213 <use xlink:href="#glyph0-17" x="105.345993" y="307.515524"/>
1214 </g>
1215 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1216 <use xlink:href="#glyph0-24" x="110.961993" y="307.515524"/>
1217 </g>
1218 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1219 <use xlink:href="#glyph0-20" x="117.144993" y="307.515524"/>
1220 </g>
1221 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1222 <use xlink:href="#glyph0-34" x="119.385993" y="307.515524"/>
1223 </g>
1224 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1225 <use xlink:href="#glyph0-22" x="127.071993" y="307.515524"/>
1226 </g>
1227 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1228 <use xlink:href="#glyph0-29" x="16.120011" y="258.141515"/>
1229 </g>
1230 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1231 <use xlink:href="#glyph0-43" x="22.681011" y="258.141515"/>
1232 </g>
1233 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1234 <use xlink:href="#glyph0-21" x="29.251011" y="258.141515"/>
1235 </g>
1236 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1237 <use xlink:href="#glyph0-24" x="36.739011" y="258.141515"/>
1238 </g>
1239 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1240 <use xlink:href="#glyph0-39" x="42.733011" y="258.141515"/>
1241 </g>
1242 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1243 <use xlink:href="#glyph0-16" x="45.361011" y="258.141515"/>
1244 </g>
1245 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1246 <use xlink:href="#glyph0-35" x="49.663011" y="258.141515"/>
1247 </g>
1248 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1249 <use xlink:href="#glyph0-12" x="54.712011" y="258.141515"/>
1250 </g>
1251 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1252 <use xlink:href="#glyph0-4" x="59.401011" y="258.141515"/>
1253 </g>
1254 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1255 <use xlink:href="#glyph0-6" x="64.081011" y="258.141515"/>
1256 </g>
1257 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1258 <use xlink:href="#glyph0-42" x="65.944011" y="258.141515"/>
1259 </g>
1260 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1261 <use xlink:href="#glyph0-6" x="68.383011" y="258.141515"/>
1262 </g>
1263 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1264 <use xlink:href="#glyph0-4" x="70.246011" y="258.141515"/>
1265 </g>
1266 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1267 <use xlink:href="#glyph0-29" x="16.120011" y="240.663497"/>
1268 </g>
1269 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1270 <use xlink:href="#glyph0-43" x="22.681011" y="240.663497"/>
1271 </g>
1272 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1273 <use xlink:href="#glyph0-21" x="29.251011" y="240.663497"/>
1274 </g>
1275 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1276 <use xlink:href="#glyph0-24" x="36.739011" y="240.663497"/>
1277 </g>
1278 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1279 <use xlink:href="#glyph0-39" x="42.733011" y="240.663497"/>
1280 </g>
1281 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1282 <use xlink:href="#glyph0-6" x="45.361011" y="240.663497"/>
1283 </g>
1284 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1285 <use xlink:href="#glyph0-3" x="47.224011" y="240.663497"/>
1286 </g>
1287 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1288 <use xlink:href="#glyph0-32" x="51.904011" y="240.663497"/>
1289 </g>
1290 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1291 <use xlink:href="#glyph0-12" x="56.953011" y="240.663497"/>
1292 </g>
1293 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1294 <use xlink:href="#glyph0-35" x="61.642011" y="240.663497"/>
1295 </g>
1296 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1297 <use xlink:href="#glyph0-12" x="66.691011" y="240.663497"/>
1298 </g>
1299 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1300 <use xlink:href="#glyph0-3" x="71.380011" y="240.663497"/>
1301 </g>
1302 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1303 <use xlink:href="#glyph0-32" x="76.060011" y="240.663497"/>
1304 </g>
1305 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1306 <use xlink:href="#glyph0-12" x="81.109011" y="240.663497"/>
1307 </g>
1308 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1309 <use xlink:href="#glyph0-3" x="85.798011" y="240.663497"/>
1310 </g>
1311 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1312 <use xlink:href="#glyph0-5" x="90.478011" y="240.663497"/>
1313 </g>
1314 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1315 <use xlink:href="#glyph0-44" x="72.802002" y="201.720506"/>
1316 </g>
1317 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1318 <use xlink:href="#glyph0-6" x="79.354002" y="201.720506"/>
1319 </g>
1320 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1321 <use xlink:href="#glyph0-38" x="81.217002" y="201.720506"/>
1322 </g>
1323 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1324 <use xlink:href="#glyph0-36" x="86.266002" y="201.720506"/>
1325 </g>
1326 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1327 <use xlink:href="#glyph0-39" x="90.955002" y="201.720506"/>
1328 </g>
1329 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1330 <use xlink:href="#glyph0-27" x="93.574002" y="201.720506"/>
1331 </g>
1332 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1333 <use xlink:href="#glyph0-12" x="98.263002" y="201.720506"/>
1334 </g>
1335 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1336 <use xlink:href="#glyph0-40" x="102.943002" y="201.720506"/>
1337 </g>
1338 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1339 <use xlink:href="#glyph0-12" x="106.876002" y="201.720506"/>
1340 </g>
1341 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1342 <use xlink:href="#glyph0-9" x="111.556002" y="201.720506"/>
1343 </g>
1344 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1345 <use xlink:href="#glyph0-10" x="113.428002" y="201.720506"/>
1346 </g>
1347 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1348 <use xlink:href="#glyph0-23" x="115.858002" y="201.720506"/>
1349 </g>
1350 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1351 <use xlink:href="#glyph0-14" x="119.989002" y="201.720506"/>
1352 </g>
1353 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1354 <use xlink:href="#glyph0-8" x="122.806002" y="201.720506"/>
1355 </g>
1356 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1357 <use xlink:href="#glyph0-3" x="127.297002" y="201.720506"/>
1358 </g>
1359 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1360 <use xlink:href="#glyph0-16" x="131.977002" y="201.720506"/>
1361 </g>
1362 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1363 <use xlink:href="#glyph0-8" x="136.468002" y="201.720506"/>
1364 </g>
1365 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1366 <use xlink:href="#glyph0-4" x="140.968002" y="201.720506"/>
1367 </g>
1368 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1369 <use xlink:href="#glyph0-5" x="145.648002" y="201.720506"/>
1370 </g>
1371 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1372 <use xlink:href="#glyph0-6" x="148.276002" y="201.720506"/>
1373 </g>
1374 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1375 <use xlink:href="#glyph0-7" x="150.139002" y="201.720506"/>
1376 </g>
1377 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1378 <use xlink:href="#glyph0-3" x="155.008002" y="201.720506"/>
1379 </g>
1380 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1381 <use xlink:href="#glyph0-24" x="91.369002" y="212.718515"/>
1382 </g>
1383 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1384 <use xlink:href="#glyph0-35" x="97.363002" y="212.718515"/>
1385 </g>
1386 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1387 <use xlink:href="#glyph0-12" x="102.412002" y="212.718515"/>
1388 </g>
1389 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1390 <use xlink:href="#glyph0-4" x="107.101002" y="212.718515"/>
1391 </g>
1392 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1393 <use xlink:href="#glyph0-6" x="111.781002" y="212.718515"/>
1394 </g>
1395 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1396 <use xlink:href="#glyph0-42" x="113.653002" y="212.718515"/>
1397 </g>
1398 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1399 <use xlink:href="#glyph0-6" x="116.092002" y="212.718515"/>
1400 </g>
1401 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1402 <use xlink:href="#glyph0-4" x="117.955002" y="212.718515"/>
1403 </g>
1404 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1405 <use xlink:href="#glyph0-8" x="122.635002" y="212.718515"/>
1406 </g>
1407 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1408 <use xlink:href="#glyph0-5" x="127.126002" y="212.718515"/>
1409 </g>
1410 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1411 <use xlink:href="#glyph0-6" x="129.754002" y="212.718515"/>
1412 </g>
1413 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1414 <use xlink:href="#glyph0-7" x="131.617002" y="212.718515"/>
1415 </g>
1416 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1417 <use xlink:href="#glyph0-3" x="136.486002" y="212.718515"/>
1418 </g>
1419 <path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.33313%,11.764526%,12.156677%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 58.472656 161.226562 L 174.167969 161.226562 L 174.167969 176.226562 L 58.472656 176.226562 Z M 58.472656 161.226562 "/>
1420 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1421 <use xlink:href="#glyph0-1" x="66.252007" y="171.940512"/>
1422 </g>
1423 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1424 <use xlink:href="#glyph0-19" x="71.319007" y="171.940512"/>
1425 <use xlink:href="#glyph0-22" x="77.898007" y="171.940512"/>
1426 </g>
1427 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1428 <use xlink:href="#glyph0-25" x="84.441007" y="171.940512"/>
1429 </g>
1430 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1431 <use xlink:href="#glyph0-23" x="91.011007" y="171.940512"/>
1432 </g>
1433 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1434 <use xlink:href="#glyph0-20" x="95.880007" y="171.940512"/>
1435 </g>
1436 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1437 <use xlink:href="#glyph0-26" x="98.121007" y="171.940512"/>
1438 </g>
1439 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1440 <use xlink:href="#glyph0-22" x="105.618007" y="171.940512"/>
1441 </g>
1442 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1443 <use xlink:href="#glyph0-28" x="111.990007" y="171.940512"/>
1444 </g>
1445 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1446 <use xlink:href="#glyph0-27" x="117.804007" y="171.940512"/>
1447 </g>
1448 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1449 <use xlink:href="#glyph0-10" x="122.484007" y="171.940512"/>
1450 </g>
1451 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1452 <use xlink:href="#glyph0-28" x="124.923007" y="171.940512"/>
1453 </g>
1454 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1455 <use xlink:href="#glyph0-22" x="130.728007" y="171.940512"/>
1456 </g>
1457 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1458 <use xlink:href="#glyph0-28" x="137.100007" y="171.940512"/>
1459 </g>
1460 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1461 <use xlink:href="#glyph0-27" x="142.914007" y="171.940512"/>
1462 </g>
1463 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1464 <use xlink:href="#glyph0-30" x="146.298007" y="171.940512"/>
1465 </g>
1466 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1467 <use xlink:href="#glyph0-24" x="151.545007" y="171.940512"/>
1468 </g>
1469 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1470 <use xlink:href="#glyph0-20" x="157.737007" y="171.940512"/>
1471 </g>
1472 <g style="fill:rgb(12.548828%,11.372375%,11.764526%);fill-opacity:1;">
1473 <use xlink:href="#glyph0-24" x="159.978007" y="171.940512"/>
1474 </g>
1475 </g>
1476 </svg>
File notes/img/p.svg added (mode: 100644) (index 0000000..4e6e5b8)
1 <?xml version="1.0" encoding="UTF-8"?>
2 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="357pt" height="154pt" viewBox="0 0 357 154" version="1.1">
3 <defs>
4 <g>
5 <symbol overflow="visible" id="glyph0-0">
6 <path style="stroke:none;" d=""/>
7 </symbol>
8 <symbol overflow="visible" id="glyph0-1">
9 <path style="stroke:none;" d="M 1 -0.03125 L 1.078125 0 C 1.296875 0.0625 1.421875 0.09375 1.515625 0.09375 C 2.015625 0.09375 3 -0.53125 3.375 -1.078125 C 3.71875 -1.609375 4.015625 -2.5625 4.015625 -3.203125 C 4.015625 -3.78125 3.8125 -4.171875 3.515625 -4.171875 C 3.140625 -4.171875 2.6875 -3.9375 2.234375 -3.53125 C 1.890625 -3.234375 1.703125 -3 1.40625 -2.5 L 1.609375 -3.53125 C 1.640625 -3.671875 1.65625 -3.796875 1.65625 -3.90625 C 1.65625 -4.0625 1.578125 -4.171875 1.453125 -4.171875 C 1.28125 -4.171875 0.953125 -3.984375 0.3125 -3.53125 L 0.0625 -3.359375 L 0.125 -3.1875 L 0.40625 -3.359375 C 0.640625 -3.515625 0.75 -3.5625 0.828125 -3.5625 C 0.90625 -3.5625 0.96875 -3.484375 0.96875 -3.359375 C 0.96875 -3.28125 0.953125 -3.125 0.9375 -3.03125 L 0.4375 -0.0625 C 0.34375 0.453125 0.1875 1.25 0.015625 2.015625 L -0.0625 2.328125 L 0 2.390625 C 0.1875 2.328125 0.34375 2.296875 0.625 2.234375 Z M 1.234375 -1.421875 C 1.421875 -2.53125 2.34375 -3.65625 3.0625 -3.65625 C 3.296875 -3.65625 3.390625 -3.46875 3.390625 -3.078125 C 3.390625 -2.375 3.046875 -1.34375 2.59375 -0.6875 C 2.421875 -0.4375 2.140625 -0.3125 1.78125 -0.3125 C 1.515625 -0.3125 1.3125 -0.375 1.078125 -0.515625 Z M 1.234375 -1.421875 "/>
10 </symbol>
11 <symbol overflow="visible" id="glyph0-2">
12 <path style="stroke:none;" d="M 2.828125 -0.953125 L 2.625 -0.8125 C 2.171875 -0.484375 1.75 -0.3125 1.4375 -0.3125 C 1.03125 -0.3125 0.78125 -0.625 0.78125 -1.15625 C 0.78125 -1.375 0.796875 -1.59375 0.859375 -1.84375 L 1.5625 -2.015625 C 1.703125 -2.0625 1.9375 -2.140625 2.15625 -2.234375 C 2.890625 -2.5625 3.234375 -2.953125 3.234375 -3.484375 C 3.234375 -3.890625 2.953125 -4.171875 2.5 -4.171875 C 1.9375 -4.171875 0.984375 -3.5625 0.640625 -3.015625 C 0.390625 -2.578125 0.125 -1.5625 0.125 -0.96875 C 0.125 -0.3125 0.5 0.09375 1.125 0.09375 C 1.625 0.09375 2.09375 -0.140625 2.90625 -0.796875 Z M 0.96875 -2.375 C 1.125 -2.96875 1.296875 -3.328125 1.546875 -3.5625 C 1.703125 -3.703125 1.96875 -3.796875 2.171875 -3.796875 C 2.421875 -3.796875 2.59375 -3.625 2.59375 -3.359375 C 2.59375 -2.96875 2.296875 -2.5625 1.84375 -2.34375 C 1.59375 -2.234375 1.265625 -2.125 0.90625 -2.046875 Z M 0.96875 -2.375 "/>
13 </symbol>
14 <symbol overflow="visible" id="glyph0-3">
15 <path style="stroke:none;" d="M 3.1875 -3.15625 C 3.203125 -3.484375 3.234375 -3.734375 3.3125 -4.109375 C 3.234375 -4.140625 3.1875 -4.171875 3.140625 -4.171875 C 2.875 -4.171875 2.609375 -3.953125 2.296875 -3.515625 L 2.0625 -3.1875 C 1.734375 -2.703125 1.625 -2.515625 1.484375 -2.21875 L 1.5625 -2.5625 C 1.59375 -2.765625 1.65625 -3.109375 1.703125 -3.296875 L 1.765625 -3.53125 C 1.796875 -3.6875 1.8125 -3.78125 1.8125 -3.890625 C 1.8125 -4.0625 1.75 -4.171875 1.609375 -4.171875 C 1.4375 -4.171875 1.109375 -3.984375 0.46875 -3.53125 L 0.21875 -3.359375 L 0.28125 -3.1875 L 0.5625 -3.359375 C 0.796875 -3.515625 0.90625 -3.5625 0.96875 -3.5625 C 1.0625 -3.5625 1.125 -3.484375 1.125 -3.375 C 1.125 -2.875 0.75 -1.09375 0.40625 0.015625 L 0.5 0.078125 C 0.625 0.03125 0.765625 0.015625 0.953125 -0.03125 L 1.078125 -0.046875 L 1.296875 -1.09375 C 1.453125 -1.8125 1.65625 -2.265625 2.03125 -2.75 C 2.328125 -3.140625 2.546875 -3.3125 2.75 -3.3125 C 2.875 -3.3125 2.96875 -3.28125 3.0625 -3.15625 Z M 3.1875 -3.15625 "/>
16 </symbol>
17 <symbol overflow="visible" id="glyph0-4">
18 <path style="stroke:none;" d="M 0.265625 -1.28125 C 0.21875 -0.84375 0.171875 -0.53125 0.078125 -0.140625 C 0.40625 0.03125 0.703125 0.09375 1 0.09375 C 1.421875 0.09375 1.828125 -0.0625 2.265625 -0.40625 C 2.703125 -0.75 2.890625 -1.078125 2.890625 -1.5 C 2.890625 -1.984375 2.625 -2.21875 1.96875 -2.34375 L 1.59375 -2.40625 C 1.078125 -2.5 0.921875 -2.65625 0.921875 -3 C 0.921875 -3.46875 1.296875 -3.8125 1.796875 -3.8125 C 2.15625 -3.8125 2.484375 -3.65625 2.625 -3.4375 L 2.625 -2.953125 L 2.8125 -2.953125 C 2.84375 -3.28125 2.890625 -3.453125 2.984375 -3.9375 C 2.640625 -4.09375 2.40625 -4.171875 2.109375 -4.171875 C 1.671875 -4.171875 1.140625 -3.921875 0.71875 -3.484375 C 0.5 -3.25 0.40625 -3.046875 0.40625 -2.734375 C 0.40625 -2.25 0.671875 -1.96875 1.25 -1.859375 L 1.78125 -1.75 C 2.171875 -1.6875 2.3125 -1.53125 2.3125 -1.1875 C 2.3125 -0.625 1.90625 -0.25 1.296875 -0.25 C 0.984375 -0.25 0.71875 -0.34375 0.484375 -0.546875 L 0.484375 -1.28125 Z M 0.265625 -1.28125 "/>
19 </symbol>
20 <symbol overflow="visible" id="glyph0-5">
21 <path style="stroke:none;" d="M 2.40625 -4.171875 C 2.015625 -4.171875 1.640625 -4.015625 1.234375 -3.734375 C 0.53125 -3.234375 0.140625 -2.375 0.140625 -1.3125 C 0.140625 -0.390625 0.53125 0.09375 1.25 0.09375 C 1.734375 0.09375 2.25 -0.125 2.640625 -0.5 C 3.171875 -1 3.546875 -1.984375 3.546875 -2.859375 C 3.546875 -3.671875 3.125 -4.171875 2.40625 -4.171875 Z M 2.078125 -3.84375 C 2.625 -3.84375 2.890625 -3.453125 2.890625 -2.71875 C 2.890625 -1.890625 2.625 -0.96875 2.25 -0.515625 C 2.09375 -0.34375 1.859375 -0.234375 1.59375 -0.234375 C 1.09375 -0.234375 0.796875 -0.625 0.796875 -1.3125 C 0.796875 -2.28125 1.140625 -3.34375 1.5625 -3.6875 C 1.671875 -3.78125 1.859375 -3.84375 2.078125 -3.84375 Z M 2.078125 -3.84375 "/>
22 </symbol>
23 <symbol overflow="visible" id="glyph0-6">
24 <path style="stroke:none;" d="M 0.203125 -3.359375 L 0.265625 -3.1875 L 0.546875 -3.359375 C 0.875 -3.578125 0.890625 -3.578125 0.953125 -3.578125 C 1.046875 -3.578125 1.109375 -3.484375 1.109375 -3.359375 C 1.109375 -2.90625 0.75 -1.265625 0.390625 -0.015625 L 0.453125 0.078125 C 0.671875 0.015625 0.875 -0.03125 1.0625 -0.0625 C 1.234375 -1.15625 1.40625 -1.71875 1.8125 -2.328125 C 2.28125 -3.046875 2.921875 -3.578125 3.3125 -3.578125 C 3.40625 -3.578125 3.453125 -3.515625 3.453125 -3.375 C 3.453125 -3.203125 3.4375 -3.046875 3.359375 -2.75 L 2.90625 -0.921875 C 2.828125 -0.59375 2.796875 -0.40625 2.796875 -0.265625 C 2.796875 -0.046875 2.890625 0.078125 3.0625 0.078125 C 3.28125 0.078125 3.609375 -0.125 4.4375 -0.734375 L 4.359375 -0.890625 L 4.125 -0.75 C 3.875 -0.5625 3.6875 -0.484375 3.609375 -0.484375 C 3.546875 -0.484375 3.484375 -0.5625 3.484375 -0.65625 C 3.484375 -0.703125 3.5 -0.78125 3.515625 -0.828125 L 4.078125 -3.21875 C 4.140625 -3.46875 4.171875 -3.703125 4.171875 -3.859375 C 4.171875 -4.046875 4.078125 -4.171875 3.90625 -4.171875 C 3.546875 -4.171875 2.953125 -3.84375 2.4375 -3.359375 C 2.109375 -3.0625 1.859375 -2.765625 1.421875 -2.140625 L 1.75 -3.53125 C 1.78125 -3.6875 1.796875 -3.78125 1.796875 -3.875 C 1.796875 -4.0625 1.734375 -4.171875 1.59375 -4.171875 C 1.421875 -4.171875 1.09375 -3.984375 0.453125 -3.53125 Z M 0.203125 -3.359375 "/>
25 </symbol>
26 <symbol overflow="visible" id="glyph0-7">
27 <path style="stroke:none;" d="M 4.78125 -3.65625 L 4.875 -3.484375 C 4.953125 -3.546875 5.03125 -3.5625 5.109375 -3.5625 C 5.359375 -3.5625 5.484375 -3.375 5.484375 -3.03125 C 5.484375 -1.765625 4.65625 -0.34375 3.90625 -0.34375 C 3.65625 -0.34375 3.484375 -0.671875 3.484375 -1.15625 C 3.484375 -1.578125 3.5625 -2.125 3.65625 -2.5 L 4.109375 -4.09375 L 4.046875 -4.171875 L 3.40625 -3.96875 L 3.15625 -2.6875 C 3.0625 -2.140625 2.9375 -1.8125 2.6875 -1.34375 C 2.34375 -0.6875 2.015625 -0.34375 1.75 -0.34375 C 1.453125 -0.34375 1.25 -0.671875 1.25 -1.171875 C 1.25 -2.203125 1.609375 -3.03125 2.46875 -4.015625 L 2.375 -4.171875 C 2.21875 -4.09375 2.078125 -4.0625 1.859375 -4.0625 C 1.59375 -4.0625 1.265625 -4.078125 1 -4.109375 L 0.890625 -4.109375 C 0.84375 -4.125 0.796875 -4.125 0.78125 -4.125 C 0.6875 -4.125 0.609375 -4.109375 0.515625 -4.0625 C 0.390625 -3.828125 0.296875 -3.515625 0.1875 -3.046875 L 0.375 -3.046875 L 0.515625 -3.40625 C 0.578125 -3.546875 0.75 -3.640625 0.953125 -3.640625 C 0.984375 -3.640625 1.078125 -3.640625 1.1875 -3.640625 C 1.265625 -3.625 1.34375 -3.625 1.4375 -3.625 C 1.65625 -3.625 1.75 -3.640625 1.953125 -3.65625 L 1.921875 -3.625 C 1.875 -3.5625 1.84375 -3.515625 1.6875 -3.359375 C 0.921875 -2.4375 0.625 -1.828125 0.625 -1.09375 C 0.625 -0.375 0.921875 0.09375 1.375 0.09375 C 1.9375 0.09375 2.390625 -0.375 3.03125 -1.609375 C 2.953125 -1.234375 2.921875 -1.03125 2.921875 -0.84375 C 2.921875 -0.265625 3.171875 0.09375 3.546875 0.09375 C 4.265625 0.09375 5.171875 -0.78125 5.703125 -1.96875 C 5.90625 -2.40625 6.046875 -2.96875 6.046875 -3.3125 C 6.046875 -3.8125 5.828125 -4.171875 5.5 -4.171875 C 5.390625 -4.171875 5.28125 -4.125 5.21875 -4.0625 Z M 4.78125 -3.65625 "/>
28 </symbol>
29 <symbol overflow="visible" id="glyph0-8">
30 <path style="stroke:none;" d="M 2.953125 -2.84375 L 3.15625 -2.84375 C 3.21875 -3.40625 3.28125 -3.734375 3.359375 -3.953125 C 3.15625 -4.09375 2.859375 -4.171875 2.53125 -4.171875 C 2.140625 -4.171875 1.5 -3.859375 1.015625 -3.40625 C 0.53125 -2.984375 0.21875 -2.078125 0.21875 -1.171875 C 0.21875 -0.34375 0.578125 0.09375 1.265625 0.09375 C 1.734375 0.09375 2.15625 -0.078125 2.625 -0.46875 L 3.0625 -0.828125 L 2.984375 -1 L 2.859375 -0.90625 C 2.234375 -0.5 1.90625 -0.34375 1.609375 -0.34375 C 1.125 -0.34375 0.875 -0.6875 0.875 -1.375 C 0.875 -2.3125 1.171875 -3.203125 1.59375 -3.53125 C 1.78125 -3.6875 1.984375 -3.734375 2.25 -3.734375 C 2.640625 -3.734375 2.953125 -3.578125 2.953125 -3.375 Z M 2.953125 -2.84375 "/>
31 </symbol>
32 <symbol overflow="visible" id="glyph0-9">
33 <path style="stroke:none;" d="M 3.46875 -4.078125 L 3.390625 -4.15625 L 3.109375 -4 C 2.75 -4.125 2.59375 -4.171875 2.375 -4.171875 C 2.125 -4.171875 1.953125 -4.125 1.71875 -4.015625 C 1.1875 -3.734375 0.90625 -3.484375 0.6875 -3.0625 C 0.296875 -2.296875 0.03125 -1.265625 0.03125 -0.578125 C 0.03125 -0.203125 0.171875 0.09375 0.328125 0.09375 C 0.515625 0.09375 0.84375 -0.09375 1.171875 -0.390625 C 1.53125 -0.703125 1.875 -1.109375 2.34375 -1.765625 L 2.09375 -0.671875 C 2.0625 -0.515625 2.046875 -0.359375 2.046875 -0.21875 C 2.046875 -0.03125 2.109375 0.078125 2.25 0.078125 C 2.4375 0.078125 2.796875 -0.15625 3.515625 -0.734375 L 3.453125 -0.921875 L 3.328125 -0.828125 C 3.0625 -0.59375 2.921875 -0.515625 2.796875 -0.515625 C 2.71875 -0.515625 2.671875 -0.578125 2.671875 -0.71875 C 2.671875 -0.75 2.671875 -0.78125 2.671875 -0.796875 Z M 2.75 -3.578125 C 2.5625 -2.640625 2.40625 -2.1875 2.109375 -1.734375 C 1.609375 -1.015625 1.09375 -0.515625 0.8125 -0.515625 C 0.703125 -0.515625 0.65625 -0.625 0.65625 -0.859375 C 0.65625 -1.421875 0.90625 -2.421875 1.203125 -3.109375 C 1.40625 -3.578125 1.609375 -3.734375 2.015625 -3.734375 C 2.21875 -3.734375 2.390625 -3.703125 2.75 -3.578125 Z M 2.75 -3.578125 "/>
34 </symbol>
35 <symbol overflow="visible" id="glyph0-10">
36 <path style="stroke:none;" d="M 1.078125 -3.375 L 0.59375 -0.921875 C 0.59375 -0.859375 0.578125 -0.84375 0.546875 -0.75 C 0.5 -0.5 0.484375 -0.375 0.484375 -0.265625 C 0.484375 -0.046875 0.578125 0.078125 0.75 0.078125 C 1.046875 0.078125 1.34375 -0.09375 2.015625 -0.640625 L 2.296875 -0.859375 L 2.203125 -1.015625 L 1.8125 -0.75 C 1.5625 -0.5625 1.390625 -0.484375 1.28125 -0.484375 C 1.21875 -0.484375 1.171875 -0.546875 1.171875 -0.65625 C 1.171875 -0.875 1.28125 -1.5625 1.546875 -2.828125 L 1.65625 -3.375 L 2.578125 -3.375 L 2.671875 -3.796875 C 2.34375 -3.765625 2.0625 -3.75 1.734375 -3.75 C 1.859375 -4.5625 1.96875 -4.984375 2.109375 -5.453125 L 2.015625 -5.578125 C 1.84375 -5.484375 1.609375 -5.375 1.34375 -5.265625 L 1.125 -3.796875 C 0.734375 -3.609375 0.53125 -3.53125 0.375 -3.484375 L 0.359375 -3.375 Z M 1.078125 -3.375 "/>
37 </symbol>
38 <symbol overflow="visible" id="glyph0-11">
39 <path style="stroke:none;" d="M 0.296875 -3.359375 L 0.359375 -3.1875 L 0.625 -3.359375 C 0.96875 -3.578125 0.96875 -3.578125 1.03125 -3.578125 C 1.125 -3.578125 1.1875 -3.484375 1.1875 -3.375 C 1.1875 -3.3125 1.15625 -3.125 1.125 -3 L 0.546875 -0.921875 C 0.46875 -0.640625 0.4375 -0.4375 0.4375 -0.265625 C 0.4375 -0.046875 0.53125 0.078125 0.703125 0.078125 C 0.921875 0.078125 1.25 -0.109375 2.078125 -0.734375 L 2 -0.890625 L 1.765625 -0.75 C 1.515625 -0.5625 1.328125 -0.484375 1.25 -0.484375 C 1.1875 -0.484375 1.125 -0.5625 1.125 -0.65625 C 1.125 -0.75 1.140625 -0.8125 1.1875 -1 L 1.859375 -3.625 C 1.890625 -3.78125 1.90625 -3.859375 1.90625 -3.9375 C 1.90625 -4.09375 1.84375 -4.171875 1.6875 -4.171875 C 1.5 -4.171875 1.1875 -3.984375 0.53125 -3.53125 Z M 1.96875 -6.15625 C 1.703125 -6.15625 1.46875 -5.859375 1.46875 -5.578125 C 1.46875 -5.359375 1.59375 -5.21875 1.8125 -5.21875 C 2.078125 -5.21875 2.28125 -5.46875 2.28125 -5.796875 C 2.28125 -6 2.15625 -6.15625 1.96875 -6.15625 Z M 1.96875 -6.15625 "/>
40 </symbol>
41 <symbol overflow="visible" id="glyph0-12">
42 <path style="stroke:none;" d="M 4.171875 -6.234375 L 4.0625 -6.328125 C 3.625 -6.109375 3.3125 -6.03125 2.6875 -5.96875 L 2.65625 -5.796875 L 3.0625 -5.796875 C 3.28125 -5.796875 3.359375 -5.734375 3.359375 -5.578125 C 3.359375 -5.5 3.359375 -5.4375 3.34375 -5.375 L 3.109375 -4.046875 C 2.84375 -4.125 2.625 -4.171875 2.390625 -4.171875 C 1.796875 -4.171875 0.984375 -3.546875 0.59375 -2.796875 C 0.3125 -2.296875 0.140625 -1.484375 0.140625 -0.75 C 0.140625 -0.1875 0.28125 0.09375 0.53125 0.09375 C 0.765625 0.09375 1.078125 -0.046875 1.375 -0.28125 C 1.84375 -0.671875 2.125 -1.015625 2.703125 -1.875 L 2.5 -1.09375 C 2.40625 -0.703125 2.375 -0.4375 2.375 -0.203125 C 2.375 -0.015625 2.4375 0.078125 2.59375 0.078125 C 2.734375 0.078125 2.9375 -0.015625 3.234375 -0.234375 L 3.9375 -0.765625 L 3.859375 -0.921875 L 3.46875 -0.65625 C 3.359375 -0.5625 3.21875 -0.515625 3.140625 -0.515625 C 3.0625 -0.515625 3.015625 -0.59375 3.015625 -0.703125 C 3.015625 -0.78125 3.03125 -0.84375 3.078125 -1.109375 Z M 2.90625 -3.03125 C 2.75 -2.265625 2.328125 -1.5 1.796875 -1 C 1.5 -0.71875 1.15625 -0.515625 0.984375 -0.515625 C 0.84375 -0.515625 0.765625 -0.625 0.765625 -0.84375 C 0.765625 -1.9375 1.171875 -3.28125 1.59375 -3.609375 C 1.703125 -3.703125 1.859375 -3.734375 2.09375 -3.734375 C 2.484375 -3.734375 2.734375 -3.6875 3.015625 -3.546875 Z M 2.90625 -3.03125 "/>
43 </symbol>
44 <symbol overflow="visible" id="glyph0-13">
45 <path style="stroke:none;" d="M 6.3125 -0.890625 L 6.078125 -0.75 C 5.828125 -0.5625 5.640625 -0.484375 5.5625 -0.484375 C 5.5 -0.484375 5.4375 -0.5625 5.4375 -0.65625 C 5.4375 -0.75 5.453125 -0.828125 5.5 -1 L 6.15625 -3.5625 C 6.1875 -3.71875 6.21875 -3.859375 6.21875 -3.921875 C 6.21875 -4.078125 6.125 -4.171875 5.984375 -4.171875 C 5.734375 -4.171875 5.421875 -4.015625 4.875 -3.640625 C 4.34375 -3.25 4.03125 -2.9375 3.609375 -2.34375 L 3.875 -3.53125 C 3.90625 -3.703125 3.9375 -3.84375 3.9375 -3.890625 C 3.9375 -4.0625 3.84375 -4.171875 3.703125 -4.171875 C 3.453125 -4.171875 3.046875 -3.96875 2.578125 -3.609375 C 2.1875 -3.328125 2.03125 -3.140625 1.453125 -2.375 L 1.75 -3.53125 C 1.78125 -3.65625 1.796875 -3.796875 1.796875 -3.890625 C 1.796875 -4.0625 1.734375 -4.171875 1.59375 -4.171875 C 1.421875 -4.171875 1.09375 -3.984375 0.453125 -3.53125 L 0.203125 -3.359375 L 0.265625 -3.1875 L 0.546875 -3.359375 C 0.875 -3.578125 0.890625 -3.578125 0.953125 -3.578125 C 1.046875 -3.578125 1.109375 -3.484375 1.109375 -3.359375 C 1.109375 -2.90625 0.75 -1.265625 0.390625 -0.015625 L 0.421875 0.078125 L 1.015625 -0.046875 L 1.203125 -0.9375 C 1.40625 -1.890625 1.640625 -2.40625 2.109375 -2.921875 C 2.484375 -3.3125 2.875 -3.578125 3.109375 -3.578125 C 3.171875 -3.578125 3.203125 -3.515625 3.203125 -3.40625 C 3.203125 -3.078125 3.015625 -2.140625 2.65625 -0.59375 L 2.515625 -0.015625 L 2.5625 0.078125 L 3.15625 -0.046875 L 3.34375 -0.96875 C 3.484375 -1.671875 3.78125 -2.328125 4.15625 -2.75 C 4.625 -3.28125 5.0625 -3.578125 5.34375 -3.578125 C 5.421875 -3.578125 5.453125 -3.5 5.453125 -3.359375 C 5.453125 -3.140625 5.4375 -3.078125 5.234375 -2.28125 C 5.078125 -1.65625 4.96875 -1.25 4.859375 -0.921875 C 4.78125 -0.671875 4.75 -0.46875 4.75 -0.265625 C 4.75 -0.046875 4.84375 0.078125 5.015625 0.078125 C 5.234375 0.078125 5.515625 -0.09375 6.390625 -0.734375 Z M 6.3125 -0.890625 "/>
46 </symbol>
47 <symbol overflow="visible" id="glyph0-14">
48 <path style="stroke:none;" d="M 3.5 -3.28125 C 3.640625 -3.265625 3.71875 -3.265625 3.796875 -3.265625 C 3.9375 -3.265625 4.03125 -3.28125 4.21875 -3.296875 L 4.296875 -3.6875 L 4.28125 -3.734375 C 4.03125 -3.6875 3.890625 -3.65625 3.546875 -3.65625 L 3.390625 -3.65625 C 3.25 -3.890625 3.171875 -3.96875 2.953125 -4.046875 C 2.78125 -4.125 2.5625 -4.171875 2.375 -4.171875 C 2.015625 -4.171875 1.59375 -4 1.203125 -3.71875 C 0.71875 -3.359375 0.46875 -2.84375 0.46875 -2.234375 C 0.46875 -1.5625 0.859375 -1.171875 1.53125 -1.171875 C 1.59375 -1.171875 1.6875 -1.171875 1.78125 -1.1875 L 1.4375 -0.859375 C 1.28125 -0.71875 1.203125 -0.5625 1.203125 -0.453125 C 1.203125 -0.359375 1.265625 -0.265625 1.375 -0.171875 C 0.71875 0.046875 0.453125 0.1875 0.140625 0.453125 C -0.15625 0.6875 -0.3125 1.03125 -0.3125 1.375 C -0.3125 2 0.28125 2.390625 1.234375 2.390625 C 2.34375 2.390625 3.3125 1.765625 3.3125 1.046875 C 3.3125 0.734375 3.140625 0.421875 2.765625 0.125 L 2.25 -0.296875 C 1.953125 -0.546875 1.84375 -0.703125 1.84375 -0.859375 C 1.84375 -0.9375 1.890625 -1.03125 2.015625 -1.1875 C 2.046875 -1.234375 2.0625 -1.234375 2.078125 -1.265625 C 2.921875 -1.46875 3.53125 -2.1875 3.53125 -2.96875 C 3.53125 -3.046875 3.53125 -3.09375 3.515625 -3.234375 Z M 2.1875 0.5 C 2.578125 0.8125 2.75 1.046875 2.75 1.328125 C 2.75 1.78125 2.15625 2.140625 1.4375 2.140625 C 0.71875 2.140625 0.234375 1.78125 0.234375 1.25 C 0.234375 0.921875 0.375 0.625 0.671875 0.390625 C 0.890625 0.203125 1.078125 0.125 1.515625 -0.015625 Z M 2.171875 -3.875 C 2.671875 -3.875 2.90625 -3.5625 2.90625 -2.953125 C 2.90625 -2.0625 2.5 -1.453125 1.890625 -1.453125 C 1.359375 -1.453125 1.09375 -1.8125 1.09375 -2.484375 C 1.09375 -3.3125 1.515625 -3.875 2.171875 -3.875 Z M 2.171875 -3.875 "/>
49 </symbol>
50 <symbol overflow="visible" id="glyph0-15">
51 <path style="stroke:none;" d="M 0.171875 -1.921875 L 2.46875 -1.921875 L 2.625 -2.421875 L 0.328125 -2.421875 Z M 0.171875 -1.921875 "/>
52 </symbol>
53 <symbol overflow="visible" id="glyph0-16">
54 <path style="stroke:none;" d="M 2.875 -0.84375 C 2.8125 -0.625 2.78125 -0.40625 2.78125 -0.265625 C 2.78125 -0.046875 2.875 0.078125 3.046875 0.078125 C 3.25 0.078125 3.59375 -0.109375 4.421875 -0.734375 L 4.34375 -0.890625 L 4.109375 -0.75 C 3.890625 -0.609375 3.6875 -0.515625 3.578125 -0.515625 C 3.515625 -0.515625 3.46875 -0.5625 3.46875 -0.65625 C 3.46875 -0.71875 3.484375 -0.8125 3.515625 -0.953125 L 3.53125 -1 C 3.71875 -1.96875 3.984375 -3.078125 4.25 -4.09375 L 4.1875 -4.171875 L 3.609375 -4.015625 L 3.515625 -3.578125 C 3.390625 -2.90625 3.171875 -2.3125 2.90625 -1.90625 C 2.390625 -1.109375 1.734375 -0.515625 1.375 -0.515625 C 1.296875 -0.515625 1.265625 -0.59375 1.265625 -0.734375 C 1.265625 -0.859375 1.265625 -0.953125 1.328125 -1.1875 L 1.8125 -3.53125 C 1.84375 -3.65625 1.859375 -3.78125 1.859375 -3.890625 C 1.859375 -4.0625 1.78125 -4.171875 1.671875 -4.171875 C 1.484375 -4.171875 1.15625 -3.984375 0.515625 -3.53125 L 0.28125 -3.359375 L 0.34375 -3.1875 L 0.609375 -3.359375 C 0.859375 -3.515625 0.953125 -3.5625 1.03125 -3.5625 C 1.109375 -3.5625 1.171875 -3.484375 1.171875 -3.390625 C 1.171875 -3.34375 1.171875 -3.28125 1.15625 -3.234375 L 0.609375 -0.671875 C 0.59375 -0.578125 0.578125 -0.390625 0.578125 -0.265625 C 0.578125 -0.0625 0.703125 0.09375 0.875 0.09375 C 1.4375 0.09375 2.46875 -0.875 3.203125 -2.0625 Z M 2.875 -0.84375 "/>
55 </symbol>
56 <symbol overflow="visible" id="glyph0-17">
57 <path style="stroke:none;" d="M 2.171875 -6.234375 L 2.0625 -6.328125 C 1.609375 -6.109375 1.3125 -6.03125 0.6875 -5.96875 L 0.640625 -5.796875 L 1.0625 -5.796875 C 1.265625 -5.796875 1.359375 -5.734375 1.359375 -5.59375 C 1.359375 -5.5625 1.359375 -5.5625 1.328125 -5.375 L 1.3125 -5.1875 C 1.25 -4.703125 0.71875 -2.015625 0.59375 -1.59375 L 0.46875 -1.140625 C 0.359375 -0.703125 0.3125 -0.453125 0.3125 -0.265625 C 0.3125 -0.046875 0.40625 0.078125 0.5625 0.078125 C 0.796875 0.078125 1.109375 -0.109375 1.953125 -0.734375 L 1.859375 -0.890625 L 1.640625 -0.75 C 1.375 -0.5625 1.203125 -0.484375 1.109375 -0.484375 C 1.046875 -0.484375 1 -0.5625 1 -0.65625 C 1 -0.71875 1.015625 -0.765625 1.03125 -0.90625 L 1.046875 -0.96875 Z M 2.171875 -6.234375 "/>
58 </symbol>
59 <symbol overflow="visible" id="glyph0-18">
60 <path style="stroke:none;" d="M -0.0625 1.5625 C -0.0625 1.609375 -0.0625 1.671875 -0.0625 1.703125 C -0.0625 2.078125 0.25 2.390625 0.640625 2.390625 C 1.5625 2.390625 2.5 1.3125 3.015625 -0.28125 L 4.234375 -4.09375 L 4.140625 -4.171875 C 3.890625 -4.0625 3.6875 -4.015625 3.5 -4 L 3.203125 -2.859375 C 3.09375 -2.453125 2.796875 -1.828125 2.5 -1.40625 C 2.21875 -0.953125 1.78125 -0.578125 1.59375 -0.578125 C 1.5 -0.578125 1.421875 -0.75 1.421875 -1 L 1.421875 -1.109375 L 1.5625 -2.78125 C 1.578125 -3.046875 1.59375 -3.375 1.59375 -3.625 C 1.59375 -4.015625 1.53125 -4.171875 1.375 -4.171875 C 1.265625 -4.171875 1.15625 -4.109375 0.734375 -3.8125 L 0.03125 -3.328125 L 0.125 -3.1875 L 0.546875 -3.4375 C 0.71875 -3.546875 0.71875 -3.546875 0.765625 -3.546875 C 0.890625 -3.546875 0.953125 -3.390625 0.953125 -3.09375 C 0.953125 -3.078125 0.953125 -3.03125 0.953125 -2.96875 L 0.796875 -0.859375 L 0.796875 -0.515625 C 0.796875 -0.140625 0.9375 0.09375 1.171875 0.09375 C 1.484375 0.09375 2.21875 -0.640625 2.859375 -1.609375 L 2.4375 -0.140625 C 2 1.390625 1.5625 2.015625 0.953125 2.015625 C 0.65625 2.015625 0.421875 1.78125 0.421875 1.484375 C 0.421875 1.4375 0.4375 1.375 0.4375 1.296875 L 0.359375 1.265625 Z M -0.0625 1.5625 "/>
61 </symbol>
62 <symbol overflow="visible" id="glyph0-19">
63 <path style="stroke:none;" d="M 2.03125 -6.234375 L 1.921875 -6.328125 C 1.484375 -6.109375 1.171875 -6.03125 0.546875 -5.96875 L 0.515625 -5.796875 L 0.921875 -5.796875 C 1.125 -5.796875 1.21875 -5.734375 1.21875 -5.578125 C 1.21875 -5.515625 1.203125 -5.4375 1.203125 -5.375 L 0.328125 -0.609375 C 0.3125 -0.59375 0.3125 -0.546875 0.3125 -0.53125 C 0.3125 -0.1875 0.734375 0.09375 1.203125 0.09375 C 1.53125 0.09375 1.96875 -0.0625 2.34375 -0.34375 C 3.171875 -0.921875 3.734375 -2.109375 3.734375 -3.25 C 3.734375 -3.578125 3.65625 -3.921875 3.5625 -4.046875 C 3.5 -4.125 3.390625 -4.171875 3.25 -4.171875 C 3.046875 -4.171875 2.796875 -4.09375 2.5625 -3.96875 C 2.109375 -3.734375 1.8125 -3.484375 1.28125 -2.796875 Z M 2.78125 -3.65625 C 3.015625 -3.65625 3.125 -3.46875 3.125 -3.03125 C 3.125 -2.484375 2.953125 -1.75 2.671875 -1.1875 C 2.390625 -0.59375 2.046875 -0.3125 1.578125 -0.3125 C 1.1875 -0.3125 0.96875 -0.515625 0.96875 -0.875 C 0.96875 -1.09375 1 -1.328125 1.078125 -1.65625 C 1.25 -2.34375 1.453125 -2.765625 1.796875 -3.125 C 2.078125 -3.421875 2.53125 -3.65625 2.78125 -3.65625 Z M 2.78125 -3.65625 "/>
64 </symbol>
65 <symbol overflow="visible" id="glyph0-20">
66 <path style="stroke:none;" d="M 2.875 -3.65625 L 2.96875 -3.484375 C 3.046875 -3.546875 3.109375 -3.5625 3.203125 -3.5625 C 3.4375 -3.5625 3.5625 -3.375 3.5625 -3.03125 C 3.5625 -1.734375 2.734375 -0.34375 1.96875 -0.34375 C 1.546875 -0.34375 1.28125 -0.6875 1.28125 -1.265625 C 1.28125 -2.171875 1.609375 -2.953125 2.46875 -4.015625 L 2.375 -4.171875 C 2.21875 -4.09375 2.078125 -4.0625 1.859375 -4.0625 C 1.59375 -4.0625 1.265625 -4.078125 1 -4.109375 L 0.890625 -4.109375 C 0.84375 -4.125 0.796875 -4.125 0.78125 -4.125 C 0.6875 -4.125 0.609375 -4.109375 0.515625 -4.0625 C 0.390625 -3.828125 0.296875 -3.515625 0.1875 -3.046875 L 0.375 -3.046875 L 0.515625 -3.40625 C 0.578125 -3.546875 0.75 -3.640625 0.953125 -3.640625 C 0.984375 -3.640625 1.078125 -3.640625 1.1875 -3.640625 C 1.265625 -3.625 1.34375 -3.625 1.4375 -3.625 C 1.65625 -3.625 1.75 -3.640625 1.984375 -3.65625 C 1.015625 -2.625 0.65625 -1.90625 0.65625 -1.046875 C 0.65625 -0.375 1.046875 0.09375 1.609375 0.09375 C 1.96875 0.09375 2.296875 -0.0625 2.703125 -0.421875 C 3.109375 -0.78125 3.515625 -1.359375 3.78125 -1.96875 C 3.96875 -2.390625 4.125 -2.96875 4.125 -3.3125 C 4.125 -3.8125 3.90625 -4.171875 3.578125 -4.171875 C 3.46875 -4.171875 3.375 -4.125 3.296875 -4.0625 Z M 2.875 -3.65625 "/>
67 </symbol>
68 </g>
69 </defs>
70 <g id="surface1">
71 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(90.039062%,90.039062%,90.039062%);fill-opacity:1;" d="M 80.371094 20.757812 C 80.371094 23.539062 71.011719 25.796875 59.476562 25.796875 C 47.945312 25.796875 38.585938 23.539062 38.585938 20.757812 C 38.585938 17.976562 47.945312 15.71875 59.476562 15.71875 C 71.011719 15.71875 80.371094 17.976562 80.371094 20.757812 "/>
72 <path style="fill:none;stroke-width:4.45;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2353.710938 2472.421875 C 2353.710938 2444.609375 2260.117188 2422.03125 2144.765625 2422.03125 C 2029.453125 2422.03125 1935.859375 2444.609375 1935.859375 2472.421875 C 1935.859375 2500.234375 2029.453125 2522.8125 2144.765625 2522.8125 C 2260.117188 2522.8125 2353.710938 2500.234375 2353.710938 2472.421875 Z M 2353.710938 2472.421875 " transform="matrix(0.1,0,0,-0.1,-155,268)"/>
73 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(90.039062%,90.039062%,90.039062%);fill-opacity:1;" d="M 222.265625 135.949219 C 222.265625 141.117188 203.867188 145.308594 181.195312 145.308594 C 158.527344 145.308594 140.128906 141.117188 140.128906 135.949219 C 140.128906 130.785156 158.527344 126.589844 181.195312 126.589844 C 203.867188 126.589844 222.265625 130.785156 222.265625 135.949219 "/>
74 <path style="fill:none;stroke-width:4.45;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3772.65625 1320.507812 C 3772.65625 1268.828125 3588.671875 1226.914062 3361.953125 1226.914062 C 3135.273438 1226.914062 2951.289062 1268.828125 2951.289062 1320.507812 C 2951.289062 1372.148438 3135.273438 1414.101562 3361.953125 1414.101562 C 3588.671875 1414.101562 3772.65625 1372.148438 3772.65625 1320.507812 Z M 3772.65625 1320.507812 " transform="matrix(0.1,0,0,-0.1,-155,268)"/>
75 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(90.039062%,90.039062%,90.039062%);fill-opacity:1;" d="M 200.695312 16.4375 C 200.695312 20.015625 192.304688 22.917969 181.960938 22.917969 C 171.621094 22.917969 163.230469 20.015625 163.230469 16.4375 C 163.230469 12.863281 171.621094 9.960938 181.960938 9.960938 C 192.304688 9.960938 200.695312 12.863281 200.695312 16.4375 "/>
76 <path style="fill:none;stroke-width:4.45;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3556.953125 2515.625 C 3556.953125 2479.84375 3473.046875 2450.820312 3369.609375 2450.820312 C 3266.210938 2450.820312 3182.304688 2479.84375 3182.304688 2515.625 C 3182.304688 2551.367188 3266.210938 2580.390625 3369.609375 2580.390625 C 3473.046875 2580.390625 3556.953125 2551.367188 3556.953125 2515.625 Z M 3556.953125 2515.625 " transform="matrix(0.1,0,0,-0.1,-155,268)"/>
77 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(90.039062%,90.039062%,90.039062%);fill-opacity:1;" d="M 225.144531 34.941406 C 225.144531 38.121094 218.367188 40.699219 210.011719 40.699219 C 201.660156 40.699219 194.882812 38.121094 194.882812 34.941406 C 194.882812 31.761719 201.660156 29.179688 210.011719 29.179688 C 218.367188 29.179688 225.144531 31.761719 225.144531 34.941406 "/>
78 <path style="fill:none;stroke-width:4.45;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3801.445312 2330.585938 C 3801.445312 2298.789062 3733.671875 2273.007812 3650.117188 2273.007812 C 3566.601562 2273.007812 3498.828125 2298.789062 3498.828125 2330.585938 C 3498.828125 2362.382812 3566.601562 2388.203125 3650.117188 2388.203125 C 3733.671875 2388.203125 3801.445312 2362.382812 3801.445312 2330.585938 Z M 3801.445312 2330.585938 " transform="matrix(0.1,0,0,-0.1,-155,268)"/>
79 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(90.039062%,90.039062%,90.039062%);fill-opacity:1;" d="M 176.824219 34.484375 C 176.824219 37.664062 168.109375 40.246094 157.371094 40.246094 C 146.632812 40.246094 137.917969 37.664062 137.917969 34.484375 C 137.917969 31.308594 146.632812 28.726562 157.371094 28.726562 C 168.109375 28.726562 176.824219 31.308594 176.824219 34.484375 "/>
80 <path style="fill:none;stroke-width:4.45;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3318.242188 2335.15625 C 3318.242188 2303.359375 3231.09375 2277.539062 3123.710938 2277.539062 C 3016.328125 2277.539062 2929.179688 2303.359375 2929.179688 2335.15625 C 2929.179688 2366.914062 3016.328125 2392.734375 3123.710938 2392.734375 C 3231.09375 2392.734375 3318.242188 2366.914062 3318.242188 2335.15625 Z M 3318.242188 2335.15625 " transform="matrix(0.1,0,0,-0.1,-155,268)"/>
81 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(90.039062%,90.039062%,90.039062%);fill-opacity:1;" d="M 109.867188 38.039062 C 109.867188 40.820312 100.503906 43.078125 88.972656 43.078125 C 77.4375 43.078125 68.074219 40.820312 68.074219 38.039062 C 68.074219 35.257812 77.4375 32.996094 88.972656 32.996094 C 100.503906 32.996094 109.867188 35.257812 109.867188 38.039062 "/>
82 <path style="fill:none;stroke-width:4.45;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2648.671875 2299.609375 C 2648.671875 2271.796875 2555.039062 2249.21875 2439.726562 2249.21875 C 2324.375 2249.21875 2230.742188 2271.796875 2230.742188 2299.609375 C 2230.742188 2327.421875 2324.375 2350.039062 2439.726562 2350.039062 C 2555.039062 2350.039062 2648.671875 2327.421875 2648.671875 2299.609375 Z M 2648.671875 2299.609375 " transform="matrix(0.1,0,0,-0.1,-155,268)"/>
83 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(90.039062%,90.039062%,90.039062%);fill-opacity:1;" d="M 288.554688 71.25 C 288.554688 75.226562 270.152344 78.449219 247.484375 78.449219 C 224.8125 78.449219 206.414062 75.226562 206.414062 71.25 C 206.414062 67.277344 224.8125 64.050781 247.484375 64.050781 C 270.152344 64.050781 288.554688 67.277344 288.554688 71.25 "/>
84 <path style="fill:none;stroke-width:4.45;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4435.546875 1967.5 C 4435.546875 1927.734375 4251.523438 1895.507812 4024.84375 1895.507812 C 3798.125 1895.507812 3614.140625 1927.734375 3614.140625 1967.5 C 3614.140625 2007.226562 3798.125 2039.492188 4024.84375 2039.492188 C 4251.523438 2039.492188 4435.546875 2007.226562 4435.546875 1967.5 Z M 4435.546875 1967.5 " transform="matrix(0.1,0,0,-0.1,-155,268)"/>
85 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(90.039062%,90.039062%,90.039062%);fill-opacity:1;" d="M 351.957031 76.242188 C 351.957031 79.023438 342.597656 81.28125 331.0625 81.28125 C 319.53125 81.28125 310.167969 79.023438 310.167969 76.242188 C 310.167969 73.460938 319.53125 71.203125 331.0625 71.203125 C 342.597656 71.203125 351.957031 73.460938 351.957031 76.242188 "/>
86 <path style="fill:none;stroke-width:4.45;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5069.570312 1917.578125 C 5069.570312 1889.765625 4975.976562 1867.1875 4860.625 1867.1875 C 4745.3125 1867.1875 4651.679688 1889.765625 4651.679688 1917.578125 C 4651.679688 1945.390625 4745.3125 1967.96875 4860.625 1967.96875 C 4975.976562 1967.96875 5069.570312 1945.390625 5069.570312 1917.578125 Z M 5069.570312 1917.578125 " transform="matrix(0.1,0,0,-0.1,-155,268)"/>
87 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(90.039062%,90.039062%,90.039062%);fill-opacity:1;" d="M 324.246094 54.515625 C 324.246094 57.757812 314.367188 60.390625 302.199219 60.390625 C 290.027344 60.390625 280.152344 57.757812 280.152344 54.515625 C 280.152344 51.273438 290.027344 48.640625 302.199219 48.640625 C 314.367188 48.640625 324.246094 51.273438 324.246094 54.515625 "/>
88 <path style="fill:none;stroke-width:4.45;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4792.460938 2134.84375 C 4792.460938 2102.421875 4693.671875 2076.09375 4571.992188 2076.09375 C 4450.273438 2076.09375 4351.523438 2102.421875 4351.523438 2134.84375 C 4351.523438 2167.265625 4450.273438 2193.59375 4571.992188 2193.59375 C 4693.671875 2193.59375 4792.460938 2167.265625 4792.460938 2134.84375 Z M 4792.460938 2134.84375 " transform="matrix(0.1,0,0,-0.1,-155,268)"/>
89 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(90.039062%,90.039062%,90.039062%);fill-opacity:1;" d="M 52.945312 36.980469 C 52.945312 40.769531 41.972656 43.84375 28.449219 43.84375 C 14.925781 43.84375 3.949219 40.769531 3.949219 36.980469 C 3.949219 33.191406 14.925781 30.117188 28.449219 30.117188 C 41.972656 30.117188 52.945312 33.191406 52.945312 36.980469 "/>
90 <path style="fill:none;stroke-width:4.45;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2079.453125 2310.195312 C 2079.453125 2272.304688 1969.726562 2241.5625 1834.492188 2241.5625 C 1699.257812 2241.5625 1589.492188 2272.304688 1589.492188 2310.195312 C 1589.492188 2348.085938 1699.257812 2378.828125 1834.492188 2378.828125 C 1969.726562 2378.828125 2079.453125 2348.085938 2079.453125 2310.195312 Z M 2079.453125 2310.195312 " transform="matrix(0.1,0,0,-0.1,-155,268)"/>
91 <path style="fill-rule:nonzero;fill:rgb(84.959412%,84.959412%,84.959412%);fill-opacity:1;stroke-width:4.45;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1993.007812 1997.109375 L 2374.882812 1997.109375 L 2374.882812 2133.867188 L 1993.007812 2133.867188 Z M 1993.007812 1997.109375 " transform="matrix(0.1,0,0,-0.1,-155,268)"/>
92 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
93 <use xlink:href="#glyph0-1" x="52.308" y="63.379"/>
94 <use xlink:href="#glyph0-2" x="56.631069" y="63.379"/>
95 <use xlink:href="#glyph0-3" x="59.994417" y="63.379"/>
96 <use xlink:href="#glyph0-4" x="63.357765" y="63.379"/>
97 <use xlink:href="#glyph0-5" x="66.721113" y="63.379"/>
98 <use xlink:href="#glyph0-6" x="70.559999" y="63.379"/>
99 </g>
100 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(80.076599%,80.076599%,80.076599%);fill-opacity:1;" d="M 127.878906 53.171875 L 109.144531 61.09375 L 127.878906 69.730469 L 147.175781 61.179688 L 127.878906 53.171875 "/>
101 <path style="fill:none;stroke-width:4.45;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 2828.789062 2148.28125 L 2641.445312 2069.0625 L 2828.789062 1982.695312 L 3021.757812 2068.203125 Z M 2828.789062 2148.28125 " transform="matrix(0.1,0,0,-0.1,-155,268)"/>
102 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
103 <use xlink:href="#glyph0-5" x="118.978" y="63.379"/>
104 <use xlink:href="#glyph0-7" x="122.816886" y="63.379"/>
105 <use xlink:href="#glyph0-6" x="129.059398" y="63.379"/>
106 <use xlink:href="#glyph0-4" x="133.866651" y="63.379"/>
107 </g>
108 <path style="fill-rule:nonzero;fill:rgb(84.959412%,84.959412%,84.959412%);fill-opacity:1;stroke-width:4.45;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3174.648438 1997.109375 L 3556.484375 1997.109375 L 3556.484375 2133.867188 L 3174.648438 2133.867188 Z M 3174.648438 1997.109375 " transform="matrix(0.1,0,0,-0.1,-155,268)"/>
109 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
110 <use xlink:href="#glyph0-8" x="177.168" y="62.861"/>
111 <use xlink:href="#glyph0-9" x="180.686978" y="62.861"/>
112 <use xlink:href="#glyph0-3" x="184.525864" y="62.861"/>
113 </g>
114 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(80.076599%,80.076599%,80.076599%);fill-opacity:1;" d="M 221.988281 101.089844 L 183.066406 87.296875 L 145.136719 101.175781 L 182.878906 115.144531 L 221.988281 101.089844 "/>
115 <path style="fill:none;stroke-width:4.45;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3769.882812 1669.101562 L 3380.664062 1807.03125 L 3001.367188 1668.242188 L 3378.789062 1528.554688 Z M 3769.882812 1669.101562 " transform="matrix(0.1,0,0,-0.1,-155,268)"/>
116 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
117 <use xlink:href="#glyph0-1" x="162.542" y="103.4"/>
118 <use xlink:href="#glyph0-9" x="166.865069" y="103.4"/>
119 <use xlink:href="#glyph0-3" x="170.703955" y="103.4"/>
120 <use xlink:href="#glyph0-10" x="174.067303" y="103.4"/>
121 <use xlink:href="#glyph0-11" x="176.946467" y="103.4"/>
122 <use xlink:href="#glyph0-8" x="179.350094" y="103.4"/>
123 <use xlink:href="#glyph0-11" x="182.869072" y="103.4"/>
124 <use xlink:href="#glyph0-1" x="185.272699" y="103.4"/>
125 <use xlink:href="#glyph0-9" x="189.595768" y="103.4"/>
126 <use xlink:href="#glyph0-10" x="193.434654" y="103.4"/>
127 <use xlink:href="#glyph0-2" x="196.313818" y="103.4"/>
128 <use xlink:href="#glyph0-12" x="199.677166" y="103.4"/>
129 </g>
130 <path style="fill-rule:nonzero;fill:rgb(84.959412%,84.959412%,84.959412%);fill-opacity:1;stroke-width:4.45;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4053.671875 1579.53125 L 4464.375 1579.53125 L 4464.375 1723.515625 L 4053.671875 1723.515625 Z M 4053.671875 1579.53125 " transform="matrix(0.1,0,0,-0.1,-155,268)"/>
131 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
132 <use xlink:href="#glyph0-9" x="254.986" y="105.264"/>
133 <use xlink:href="#glyph0-8" x="258.824886" y="105.264"/>
134 <use xlink:href="#glyph0-8" x="262.343864" y="105.264"/>
135 <use xlink:href="#glyph0-11" x="265.862843" y="105.264"/>
136 <use xlink:href="#glyph0-12" x="268.266469" y="105.264"/>
137 <use xlink:href="#glyph0-2" x="272.589538" y="105.264"/>
138 <use xlink:href="#glyph0-6" x="275.952886" y="105.264"/>
139 <use xlink:href="#glyph0-10" x="280.76014" y="105.264"/>
140 </g>
141 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
142 <use xlink:href="#glyph0-9" x="45.972096" y="23.2992"/>
143 <use xlink:href="#glyph0-12" x="49.810982" y="23.2992"/>
144 <use xlink:href="#glyph0-12" x="54.134051" y="23.2992"/>
145 <use xlink:href="#glyph0-3" x="58.457121" y="23.2992"/>
146 </g>
147 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
148 <use xlink:href="#glyph0-2" x="61.664755" y="23.2992"/>
149 <use xlink:href="#glyph0-4" x="65.028103" y="23.2992"/>
150 <use xlink:href="#glyph0-4" x="68.391451" y="23.2992"/>
151 </g>
152 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
153 <use xlink:href="#glyph0-12" x="153.134618" y="138.3202"/>
154 <use xlink:href="#glyph0-9" x="157.457687" y="138.3202"/>
155 <use xlink:href="#glyph0-13" x="161.296573" y="138.3202"/>
156 <use xlink:href="#glyph0-9" x="168.023269" y="138.3202"/>
157 <use xlink:href="#glyph0-14" x="171.862154" y="138.3202"/>
158 <use xlink:href="#glyph0-2" x="176.185224" y="138.3202"/>
159 <use xlink:href="#glyph0-15" x="179.548572" y="138.3202"/>
160 <use xlink:href="#glyph0-9" x="182.427736" y="138.3202"/>
161 <use xlink:href="#glyph0-13" x="186.266621" y="138.3202"/>
162 <use xlink:href="#glyph0-5" x="192.993317" y="138.3202"/>
163 <use xlink:href="#glyph0-16" x="196.832203" y="138.3202"/>
164 <use xlink:href="#glyph0-6" x="201.639456" y="138.3202"/>
165 <use xlink:href="#glyph0-10" x="206.446709" y="138.3202"/>
166 </g>
167 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
168 <use xlink:href="#glyph0-13" x="171.619425" y="18.8702"/>
169 <use xlink:href="#glyph0-5" x="178.346121" y="18.8702"/>
170 <use xlink:href="#glyph0-12" x="182.185006" y="18.8702"/>
171 <use xlink:href="#glyph0-2" x="186.508076" y="18.8702"/>
172 <use xlink:href="#glyph0-17" x="189.871424" y="18.8702"/>
173 </g>
174 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
175 <use xlink:href="#glyph0-18" x="203.361764" y="36.8272"/>
176 <use xlink:href="#glyph0-2" x="207.684834" y="36.8272"/>
177 <use xlink:href="#glyph0-9" x="211.048182" y="36.8272"/>
178 <use xlink:href="#glyph0-3" x="214.887067" y="36.8272"/>
179 </g>
180 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
181 <use xlink:href="#glyph0-17" x="145.805305" y="36.741653"/>
182 <use xlink:href="#glyph0-11" x="148.208932" y="36.741653"/>
183 <use xlink:href="#glyph0-8" x="150.612559" y="36.741653"/>
184 <use xlink:href="#glyph0-2" x="154.131537" y="36.741653"/>
185 <use xlink:href="#glyph0-6" x="157.494885" y="36.741653"/>
186 <use xlink:href="#glyph0-4" x="162.302138" y="36.741653"/>
187 <use xlink:href="#glyph0-2" x="165.665486" y="36.741653"/>
188 </g>
189 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
190 <use xlink:href="#glyph0-6" x="80.280836" y="40.044383"/>
191 <use xlink:href="#glyph0-9" x="85.088089" y="40.044383"/>
192 <use xlink:href="#glyph0-13" x="88.926975" y="40.044383"/>
193 <use xlink:href="#glyph0-2" x="95.653671" y="40.044383"/>
194 </g>
195 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
196 <use xlink:href="#glyph0-3" x="220.502124" y="72.076783"/>
197 </g>
198 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
199 <use xlink:href="#glyph0-2" x="223.709953" y="72.076783"/>
200 <use xlink:href="#glyph0-1" x="227.073301" y="72.076783"/>
201 <use xlink:href="#glyph0-5" x="231.396371" y="72.076783"/>
202 <use xlink:href="#glyph0-3" x="235.235256" y="72.076783"/>
203 <use xlink:href="#glyph0-10" x="238.598604" y="72.076783"/>
204 <use xlink:href="#glyph0-15" x="241.477769" y="72.076783"/>
205 <use xlink:href="#glyph0-6" x="244.356933" y="72.076783"/>
206 <use xlink:href="#glyph0-16" x="249.164186" y="72.076783"/>
207 <use xlink:href="#glyph0-13" x="253.971439" y="72.076783"/>
208 <use xlink:href="#glyph0-19" x="260.698135" y="72.076783"/>
209 <use xlink:href="#glyph0-2" x="264.701297" y="72.076783"/>
210 <use xlink:href="#glyph0-3" x="268.064645" y="72.076783"/>
211 </g>
212 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
213 <use xlink:href="#glyph0-12" x="322.840886" y="78.963113"/>
214 <use xlink:href="#glyph0-9" x="327.163955" y="78.963113"/>
215 <use xlink:href="#glyph0-10" x="331.002841" y="78.963113"/>
216 <use xlink:href="#glyph0-2" x="333.882005" y="78.963113"/>
217 </g>
218 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
219 <use xlink:href="#glyph0-17" x="288.169663" y="57.195113"/>
220 <use xlink:href="#glyph0-5" x="290.57329" y="57.195113"/>
221 <use xlink:href="#glyph0-8" x="294.412175" y="57.195113"/>
222 <use xlink:href="#glyph0-9" x="297.931154" y="57.195113"/>
223 <use xlink:href="#glyph0-10" x="301.770039" y="57.195113"/>
224 <use xlink:href="#glyph0-11" x="304.649204" y="57.195113"/>
225 <use xlink:href="#glyph0-5" x="307.05283" y="57.195113"/>
226 <use xlink:href="#glyph0-6" x="310.891716" y="57.195113"/>
227 </g>
228 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
229 <use xlink:href="#glyph0-12" x="11.890333" y="38.892013"/>
230 <use xlink:href="#glyph0-3" x="16.213403" y="38.892013"/>
231 <use xlink:href="#glyph0-11" x="19.57675" y="38.892013"/>
232 <use xlink:href="#glyph0-20" x="21.980377" y="38.892013"/>
233 <use xlink:href="#glyph0-2" x="26.303446" y="38.892013"/>
234 <use xlink:href="#glyph0-3" x="29.666794" y="38.892013"/>
235 <use xlink:href="#glyph0-15" x="33.030142" y="38.892013"/>
236 <use xlink:href="#glyph0-11" x="35.909307" y="38.892013"/>
237 <use xlink:href="#glyph0-12" x="38.312933" y="38.892013"/>
238 </g>
239 <path style="fill:none;stroke-width:4.45;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 2648.671875 2069.0625 L 2374.882812 2069.0625 M 3020.664062 2068.398438 L 3174.648438 2068.398438 M 2432.5 2249.0625 L 2151.523438 2133.867188 M 2137.109375 2421.875 L 2144.296875 2133.867188 M 1820.078125 2241.875 L 2144.296875 2133.867188 M 4860.625 1867.5 L 4219.375 1723.515625 M 4241.015625 1723.515625 L 4571.484375 2075.976562 M 4248.203125 1730.703125 L 4015.703125 1896.757812 M 3381.914062 1806.484375 L 3381.914062 1997.109375 M 3769.882812 1667.695312 L 4053.671875 1667.695312 M 3001.367188 1668.242188 L 2197.1875 1997.578125 M 3379.140625 1529.453125 L 3379.140625 1413.945312 M 3116.992188 2277.851562 L 3369.179688 2133.867188 M 3369.609375 2450.820312 L 3369.179688 2133.867188 M 3623.398438 2273.125 L 3376.367188 2133.867188 M 1681.875 2285.78125 L 1981.367188 2285.78125 M 3008.90625 2299.453125 L 3234.960938 2299.453125 M 3750.898438 1926.953125 L 4260.898438 1926.953125 " transform="matrix(0.1,0,0,-0.1,-155,268)"/>
240 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
241 <use xlink:href="#glyph0-12" x="84.438" y="103.353"/>
242 <use xlink:href="#glyph0-3" x="88.761069" y="103.353"/>
243 <use xlink:href="#glyph0-11" x="92.124417" y="103.353"/>
244 <use xlink:href="#glyph0-20" x="94.528044" y="103.353"/>
245 <use xlink:href="#glyph0-2" x="98.851113" y="103.353"/>
246 <use xlink:href="#glyph0-3" x="102.214461" y="103.353"/>
247 </g>
248 </g>
249 </svg>
File notes/img/te.svg added (mode: 100644) (index 0000000..220ca27)
1 <?xml version="1.0" encoding="UTF-8"?>
2 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="372pt" height="302pt" viewBox="0 0 372 302" version="1.1">
3 <defs>
4 <g>
5 <symbol overflow="visible" id="glyph0-0">
6 <g transform="matrix(1,0,0,1,-1,-7)">
7 <rect x="3" y="1" width="1" height="1"/>
8 <rect x="4" y="1" width="1" height="1"/>
9 <rect x="3" y="2" width="1" height="1"/>
10 <rect x="4" y="2" width="1" height="1"/>
11 <rect x="2" y="3" width="1" height="1"/>
12 <rect x="5" y="3" width="1" height="1"/>
13 <rect x="2" y="4" width="1" height="1"/>
14 <rect x="3" y="4" width="1" height="1"/>
15 <rect x="4" y="4" width="1" height="1"/>
16 <rect x="5" y="4" width="1" height="1"/>
17 <rect x="2" y="5" width="1" height="1"/>
18 <rect x="5" y="5" width="1" height="1"/>
19 <rect x="1" y="6" width="1" height="1"/>
20 <rect x="6" y="6" width="1" height="1"/>
21 </g>
22 </symbol>
23 <symbol overflow="visible" id="glyph0-1">
24 <g transform="matrix(1,0,0,1,-1,-7)">
25 <rect x="4" y="0" width="1" height="1"/>
26 <rect x="5" y="0" width="1" height="1"/>
27 <rect x="2" y="1" width="1" height="1"/>
28 <rect x="6" y="1" width="1" height="1"/>
29 <rect x="2" y="2" width="1" height="1"/>
30 <rect x="2" y="4" width="1" height="1"/>
31 <rect x="2" y="5" width="1" height="1"/>
32 <rect x="6" y="5" width="1" height="1"/>
33 <rect x="3" y="6" width="1" height="1"/>
34 <rect x="4" y="6" width="1" height="1"/>
35 <rect x="5" y="6" width="1" height="1"/>
36 <rect x="6" y="6" width="1" height="1"/>
37 </g>
38 </symbol>
39 <symbol overflow="visible" id="glyph0-2">
40 <g transform="matrix(1,0,0,1,-1,-7)">
41 <rect x="3" y="1" width="1" height="1"/>
42 <rect x="3" y="2" width="1" height="1"/>
43 <rect x="3" y="3" width="1" height="1"/>
44 <rect x="3" y="4" width="1" height="1"/>
45 <rect x="3" y="5" width="1" height="1"/>
46 <rect x="3" y="6" width="1" height="1"/>
47 </g>
48 </symbol>
49 <symbol overflow="visible" id="glyph0-3">
50 <g transform="matrix(1,0,0,1,-1,-7)">
51 <rect x="2" y="1" width="1" height="1"/>
52 <rect x="6" y="1" width="1" height="1"/>
53 <rect x="2" y="2" width="1" height="1"/>
54 <rect x="7" y="2" width="1" height="1"/>
55 <rect x="7" y="3" width="1" height="1"/>
56 <rect x="2" y="4" width="1" height="1"/>
57 <rect x="7" y="4" width="1" height="1"/>
58 <rect x="2" y="5" width="1" height="1"/>
59 <rect x="7" y="5" width="1" height="1"/>
60 <rect x="3" y="6" width="1" height="1"/>
61 <rect x="4" y="6" width="1" height="1"/>
62 <rect x="5" y="6" width="1" height="1"/>
63 <rect x="6" y="6" width="1" height="1"/>
64 </g>
65 </symbol>
66 <symbol overflow="visible" id="glyph0-4">
67 <g transform="matrix(1,0,0,1,0,-7)">
68 <rect x="1" y="1" width="1" height="1"/>
69 <rect x="4" y="1" width="1" height="1"/>
70 <rect x="1" y="2" width="1" height="1"/>
71 <rect x="5" y="2" width="1" height="1"/>
72 <rect x="1" y="3" width="1" height="1"/>
73 <rect x="4" y="3" width="1" height="1"/>
74 <rect x="1" y="4" width="1" height="1"/>
75 <rect x="3" y="4" width="1" height="1"/>
76 <rect x="1" y="5" width="1" height="1"/>
77 <rect x="4" y="5" width="1" height="1"/>
78 <rect x="1" y="6" width="1" height="1"/>
79 <rect x="5" y="6" width="1" height="1"/>
80 </g>
81 </symbol>
82 <symbol overflow="visible" id="glyph0-5">
83 <g transform="matrix(1,0,0,1,0,-7)">
84 <rect x="1" y="1" width="1" height="1"/>
85 <rect x="5" y="1" width="1" height="1"/>
86 <rect x="6" y="1" width="1" height="1"/>
87 <rect x="5" y="2" width="1" height="1"/>
88 <rect x="6" y="2" width="1" height="1"/>
89 <rect x="2" y="3" width="1" height="1"/>
90 <rect x="6" y="3" width="1" height="1"/>
91 <rect x="2" y="4" width="1" height="1"/>
92 <rect x="4" y="4" width="1" height="1"/>
93 <rect x="6" y="4" width="1" height="1"/>
94 <rect x="3" y="5" width="1" height="1"/>
95 <rect x="4" y="5" width="1" height="1"/>
96 <rect x="6" y="5" width="1" height="1"/>
97 <rect x="3" y="6" width="1" height="1"/>
98 <rect x="6" y="6" width="1" height="1"/>
99 </g>
100 </symbol>
101 <symbol overflow="visible" id="glyph0-6">
102 <g transform="matrix(1,0,0,1,-1,-7)">
103 <rect x="1" y="1" width="1" height="1"/>
104 <rect x="5" y="1" width="1" height="1"/>
105 <rect x="2" y="2" width="1" height="1"/>
106 <rect x="5" y="2" width="1" height="1"/>
107 <rect x="2" y="3" width="1" height="1"/>
108 <rect x="2" y="4" width="1" height="1"/>
109 <rect x="4" y="4" width="1" height="1"/>
110 <rect x="3" y="5" width="1" height="1"/>
111 <rect x="4" y="5" width="1" height="1"/>
112 <rect x="3" y="6" width="1" height="1"/>
113 </g>
114 </symbol>
115 <symbol overflow="visible" id="glyph0-7">
116 <g transform="matrix(1,0,0,1,0,-7)">
117 <rect x="1" y="1" width="1" height="1"/>
118 <rect x="1" y="2" width="1" height="1"/>
119 <rect x="1" y="3" width="1" height="1"/>
120 <rect x="1" y="4" width="1" height="1"/>
121 <rect x="1" y="5" width="1" height="1"/>
122 <rect x="1" y="6" width="1" height="1"/>
123 </g>
124 </symbol>
125 <symbol overflow="visible" id="glyph0-8">
126 <g transform="matrix(1,0,0,1,0,-7)">
127 <rect x="1" y="1" width="1" height="1"/>
128 <rect x="1" y="2" width="1" height="1"/>
129 <rect x="1" y="3" width="1" height="1"/>
130 <rect x="2" y="3" width="1" height="1"/>
131 <rect x="3" y="3" width="1" height="1"/>
132 <rect x="4" y="3" width="1" height="1"/>
133 <rect x="1" y="4" width="1" height="1"/>
134 <rect x="1" y="5" width="1" height="1"/>
135 <rect x="1" y="6" width="1" height="1"/>
136 <rect x="2" y="6" width="1" height="1"/>
137 <rect x="3" y="6" width="1" height="1"/>
138 <rect x="4" y="6" width="1" height="1"/>
139 </g>
140 </symbol>
141 <symbol overflow="visible" id="glyph0-9">
142 <g transform="matrix(1,0,0,1,0,-7)">
143 <rect x="1" y="1" width="1" height="1"/>
144 <rect x="1" y="2" width="1" height="1"/>
145 <rect x="1" y="3" width="1" height="1"/>
146 <rect x="1" y="4" width="1" height="1"/>
147 <rect x="1" y="5" width="1" height="1"/>
148 <rect x="1" y="6" width="1" height="1"/>
149 <rect x="2" y="6" width="1" height="1"/>
150 <rect x="3" y="6" width="1" height="1"/>
151 <rect x="4" y="6" width="1" height="1"/>
152 </g>
153 </symbol>
154 <symbol overflow="visible" id="glyph0-10">
155 <g transform="matrix(1,0,0,1,0,-7)">
156 <rect x="1" y="1" width="1" height="1"/>
157 <rect x="4" y="1" width="1" height="1"/>
158 <rect x="1" y="2" width="1" height="1"/>
159 <rect x="5" y="2" width="1" height="1"/>
160 <rect x="1" y="3" width="1" height="1"/>
161 <rect x="5" y="3" width="1" height="1"/>
162 <rect x="1" y="4" width="1" height="1"/>
163 <rect x="5" y="4" width="1" height="1"/>
164 <rect x="1" y="5" width="1" height="1"/>
165 <rect x="5" y="5" width="1" height="1"/>
166 <rect x="1" y="6" width="1" height="1"/>
167 <rect x="2" y="6" width="1" height="1"/>
168 <rect x="3" y="6" width="1" height="1"/>
169 <rect x="4" y="6" width="1" height="1"/>
170 </g>
171 </symbol>
172 <symbol overflow="visible" id="glyph0-11">
173 <path style="stroke:none;" d=""/>
174 </symbol>
175 <symbol overflow="visible" id="glyph0-12">
176 <g transform="matrix(1,0,0,1,0,-7)">
177 <rect x="1" y="1" width="1" height="1"/>
178 <rect x="4" y="1" width="1" height="1"/>
179 <rect x="5" y="1" width="1" height="1"/>
180 <rect x="1" y="2" width="1" height="1"/>
181 <rect x="5" y="2" width="1" height="1"/>
182 <rect x="1" y="3" width="1" height="1"/>
183 <rect x="4" y="3" width="1" height="1"/>
184 <rect x="1" y="4" width="1" height="1"/>
185 <rect x="1" y="5" width="1" height="1"/>
186 <rect x="1" y="6" width="1" height="1"/>
187 </g>
188 </symbol>
189 <symbol overflow="visible" id="glyph0-13">
190 <g transform="matrix(1,0,0,1,0,-7)">
191 <rect x="1" y="1" width="1" height="1"/>
192 <rect x="1" y="2" width="1" height="1"/>
193 <rect x="1" y="3" width="1" height="1"/>
194 <rect x="2" y="3" width="1" height="1"/>
195 <rect x="3" y="3" width="1" height="1"/>
196 <rect x="4" y="3" width="1" height="1"/>
197 <rect x="1" y="4" width="1" height="1"/>
198 <rect x="1" y="5" width="1" height="1"/>
199 <rect x="1" y="6" width="1" height="1"/>
200 </g>
201 </symbol>
202 <symbol overflow="visible" id="glyph0-14">
203 <g transform="matrix(1,0,0,1,-1,-7)">
204 <rect x="3" y="0" width="1" height="1"/>
205 <rect x="4" y="0" width="1" height="1"/>
206 <rect x="2" y="1" width="1" height="1"/>
207 <rect x="5" y="1" width="1" height="1"/>
208 <rect x="2" y="2" width="1" height="1"/>
209 <rect x="2" y="3" width="1" height="1"/>
210 <rect x="3" y="3" width="1" height="1"/>
211 <rect x="4" y="3" width="1" height="1"/>
212 <rect x="5" y="4" width="1" height="1"/>
213 <rect x="6" y="4" width="1" height="1"/>
214 <rect x="1" y="5" width="1" height="1"/>
215 <rect x="6" y="5" width="1" height="1"/>
216 <rect x="2" y="6" width="1" height="1"/>
217 <rect x="3" y="6" width="1" height="1"/>
218 <rect x="4" y="6" width="1" height="1"/>
219 <rect x="5" y="6" width="1" height="1"/>
220 </g>
221 </symbol>
222 <symbol overflow="visible" id="glyph0-15">
223 <g transform="matrix(1,0,0,1,0,-7)">
224 <rect x="1" y="1" width="1" height="1"/>
225 <rect x="5" y="1" width="1" height="1"/>
226 <rect x="1" y="2" width="1" height="1"/>
227 <rect x="2" y="2" width="1" height="1"/>
228 <rect x="5" y="2" width="1" height="1"/>
229 <rect x="1" y="3" width="1" height="1"/>
230 <rect x="3" y="3" width="1" height="1"/>
231 <rect x="5" y="3" width="1" height="1"/>
232 <rect x="1" y="4" width="1" height="1"/>
233 <rect x="3" y="4" width="1" height="1"/>
234 <rect x="5" y="4" width="1" height="1"/>
235 <rect x="1" y="5" width="1" height="1"/>
236 <rect x="4" y="5" width="1" height="1"/>
237 <rect x="5" y="5" width="1" height="1"/>
238 <rect x="1" y="6" width="1" height="1"/>
239 <rect x="5" y="6" width="1" height="1"/>
240 </g>
241 </symbol>
242 <symbol overflow="visible" id="glyph0-16">
243 <g transform="matrix(1,0,0,1,0,-7)">
244 <rect x="1" y="1" width="1" height="1"/>
245 <rect x="5" y="1" width="1" height="1"/>
246 <rect x="1" y="2" width="1" height="1"/>
247 <rect x="5" y="2" width="1" height="1"/>
248 <rect x="1" y="3" width="1" height="1"/>
249 <rect x="5" y="3" width="1" height="1"/>
250 <rect x="1" y="4" width="1" height="1"/>
251 <rect x="5" y="4" width="1" height="1"/>
252 <rect x="1" y="5" width="1" height="1"/>
253 <rect x="5" y="5" width="1" height="1"/>
254 <rect x="1" y="6" width="1" height="1"/>
255 <rect x="2" y="6" width="1" height="1"/>
256 <rect x="3" y="6" width="1" height="1"/>
257 <rect x="4" y="6" width="1" height="1"/>
258 </g>
259 </symbol>
260 <symbol overflow="visible" id="glyph0-17">
261 <g transform="matrix(1,0,0,1,0,-7)">
262 <rect x="1" y="2" width="1" height="1"/>
263 <rect x="2" y="2" width="1" height="1"/>
264 </g>
265 </symbol>
266 <symbol overflow="visible" id="glyph0-18">
267 <g transform="matrix(1,0,0,1,0,-7)">
268 <rect x="1" y="1" width="1" height="1"/>
269 <rect x="3" y="1" width="1" height="1"/>
270 <rect x="1" y="2" width="1" height="1"/>
271 <rect x="4" y="2" width="1" height="1"/>
272 <rect x="3" y="4" width="1" height="1"/>
273 <rect x="2" y="5" width="1" height="1"/>
274 <rect x="1" y="6" width="1" height="1"/>
275 <rect x="2" y="6" width="1" height="1"/>
276 <rect x="3" y="6" width="1" height="1"/>
277 <rect x="4" y="6" width="1" height="1"/>
278 </g>
279 </symbol>
280 <symbol overflow="visible" id="glyph0-19">
281 <g transform="matrix(1,0,0,1,-1,-5)">
282 <rect x="4" y="1" width="1" height="1"/>
283 <rect x="1" y="2" width="1" height="1"/>
284 <rect x="2" y="4" width="1" height="1"/>
285 <rect x="4" y="4" width="1" height="1"/>
286 </g>
287 </symbol>
288 <symbol overflow="visible" id="glyph0-20">
289 <g transform="matrix(1,0,0,1,0,-5)">
290 <rect x="1" y="1" width="1" height="1"/>
291 </g>
292 </symbol>
293 <symbol overflow="visible" id="glyph0-21">
294 <g transform="matrix(1,0,0,1,0,-5)">
295 <rect x="3" y="1" width="1" height="1"/>
296 <rect x="2" y="2" width="1" height="1"/>
297 <rect x="3" y="2" width="1" height="1"/>
298 <rect x="3" y="3" width="1" height="1"/>
299 <rect x="1" y="4" width="1" height="1"/>
300 <rect x="2" y="4" width="1" height="1"/>
301 <rect x="3" y="4" width="1" height="1"/>
302 </g>
303 </symbol>
304 <symbol overflow="visible" id="glyph0-22">
305 <g transform="matrix(1,0,0,1,0,-7)">
306 <rect x="1" y="1" width="1" height="1"/>
307 <rect x="5" y="1" width="1" height="1"/>
308 <rect x="5" y="2" width="1" height="1"/>
309 <rect x="2" y="3" width="1" height="1"/>
310 <rect x="2" y="4" width="1" height="1"/>
311 <rect x="4" y="4" width="1" height="1"/>
312 <rect x="3" y="6" width="1" height="1"/>
313 </g>
314 </symbol>
315 <symbol overflow="visible" id="glyph0-23">
316 <g transform="matrix(1,0,0,1,0,-7)">
317 <rect x="3" y="0" width="1" height="1"/>
318 <rect x="1" y="1" width="1" height="1"/>
319 <rect x="5" y="1" width="1" height="1"/>
320 <rect x="5" y="2" width="1" height="1"/>
321 <rect x="5" y="3" width="1" height="1"/>
322 <rect x="5" y="4" width="1" height="1"/>
323 <rect x="1" y="5" width="1" height="1"/>
324 <rect x="5" y="5" width="1" height="1"/>
325 <rect x="2" y="6" width="1" height="1"/>
326 <rect x="4" y="6" width="1" height="1"/>
327 </g>
328 </symbol>
329 <symbol overflow="visible" id="glyph0-24">
330 <g transform="matrix(1,0,0,1,0,-7)">
331 <rect x="1" y="2" width="1" height="1"/>
332 <rect x="4" y="2" width="1" height="1"/>
333 <rect x="1" y="3" width="1" height="1"/>
334 <rect x="3" y="4" width="1" height="1"/>
335 <rect x="2" y="5" width="1" height="1"/>
336 <rect x="3" y="5" width="1" height="1"/>
337 <rect x="2" y="6" width="1" height="1"/>
338 </g>
339 </symbol>
340 <symbol overflow="visible" id="glyph0-25">
341 <path style="stroke:none;" d=""/>
342 </symbol>
343 <symbol overflow="visible" id="glyph0-26">
344 <g transform="matrix(1,0,0,1,0,-7)">
345 <rect x="1" y="3" width="1" height="1"/>
346 <rect x="2" y="3" width="1" height="1"/>
347 <rect x="3" y="3" width="1" height="1"/>
348 <rect x="4" y="3" width="1" height="1"/>
349 <rect x="1" y="6" width="1" height="1"/>
350 <rect x="2" y="6" width="1" height="1"/>
351 <rect x="3" y="6" width="1" height="1"/>
352 <rect x="4" y="6" width="1" height="1"/>
353 </g>
354 </symbol>
355 <symbol overflow="visible" id="glyph0-27">
356 <g transform="matrix(1,0,0,1,0,-7)">
357 <rect x="2" y="0" width="1" height="1"/>
358 <rect x="3" y="0" width="1" height="1"/>
359 <rect x="1" y="1" width="1" height="1"/>
360 <rect x="4" y="1" width="1" height="1"/>
361 <rect x="1" y="2" width="1" height="1"/>
362 <rect x="2" y="3" width="1" height="1"/>
363 <rect x="3" y="3" width="1" height="1"/>
364 <rect x="4" y="4" width="1" height="1"/>
365 <rect x="1" y="6" width="1" height="1"/>
366 <rect x="4" y="6" width="1" height="1"/>
367 </g>
368 </symbol>
369 <symbol overflow="visible" id="glyph0-28">
370 <g transform="matrix(1,0,0,1,0,-1)">
371 </g>
372 </symbol>
373 </g>
374 <clipPath id="clip1">
375 <path d="M 162 2.898438 L 251 2.898438 L 251 87 L 162 87 Z M 162 2.898438 "/>
376 </clipPath>
377 <clipPath id="clip2">
378 <path d="M 37 88 L 370.601562 88 L 370.601562 275 L 37 275 Z M 37 88 "/>
379 </clipPath>
380 <clipPath id="clip3">
381 <path d="M 240 242 L 319 242 L 319 301 L 240 301 Z M 240 242 "/>
382 </clipPath>
383 <clipPath id="clip4">
384 <path d="M 1.5 164 L 75 164 L 75 221 L 1.5 221 Z M 1.5 164 "/>
385 </clipPath>
386 <clipPath id="clip5">
387 <path d="M 1.5 161 L 79 161 L 79 225 L 1.5 225 Z M 1.5 161 "/>
388 </clipPath>
389 </defs>
390 <g id="surface1">
391 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 0 301 L 371 301 L 371 1.453125 L 0 1.453125 Z M 0 301 "/>
392 <path style="fill:none;stroke-width:6.67061;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.719177%,12.156677%,12.547302%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 2727.44438 2283.667027 L 2872.094153 2283.667027 L 2872.094153 1091.956708 M 1080.689506 2345.215268 L 1080.689506 2886.560018 L 2525.210086 2886.560018 L 2525.210086 2385.650014 M 2529.693982 2225.965552 L 2529.693982 1912.191923 L 2528.917244 1917.743504 L 1108.899213 1917.743504 L 1108.899213 2182.951725 M 1062.612698 2345.215268 L 1062.612698 2908.941197 L 2543.286895 2908.941197 L 2543.286895 1897.591701 L 2144.502617 1897.591701 " transform="matrix(0.110639,0,0,-0.0893608,0,302)"/>
393 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(94.53125%,94.53125%,94.921875%);fill-opacity:1;" d="M 166.132812 43.433594 L 206.257812 3.304688 L 246.382812 43.433594 L 206.261719 83.558594 L 166.132812 43.433594 "/>
394 <g clip-path="url(#clip1)" clip-rule="nonzero">
395 <path style="fill:none;stroke-width:6.67061;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.719177%,12.156677%,12.547302%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 1501.575507 2893.510423 L 1864.206168 3342.576527 L 2226.907442 2893.510423 L 1864.241475 2444.488033 Z M 1501.575507 2893.510423 " transform="matrix(0.110639,0,0,-0.0893608,0,302)"/>
396 </g>
397 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(90.234375%,90.625%,91.014099%);fill-opacity:1;" d="M 90.476562 106.703125 L 143.476562 106.703125 L 143.476562 92.703125 L 90.476562 92.703125 Z M 90.476562 106.703125 "/>
398 <path style="fill:none;stroke-width:6.67061;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.719177%,12.156677%,12.547302%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 817.763741 2185.487093 L 1296.763856 2185.487093 L 1296.763856 2342.155341 L 817.763741 2342.155341 Z M 817.763741 2185.487093 " transform="matrix(0.110639,0,0,-0.0893608,0,302)"/>
399 <path style="fill-rule:nonzero;fill:rgb(90.234375%,90.625%,91.014099%);fill-opacity:1;stroke-width:6.67061;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.719177%,12.156677%,12.547302%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 2281.20848 2224.654155 L 2746.686295 2224.654155 L 2746.686295 2448.465938 L 2281.20848 2448.465938 Z M 2281.20848 2224.654155 " transform="matrix(0.110639,0,0,-0.0893608,0,302)"/>
400 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
401 <use xlink:href="#glyph0-0" x="102.5" y="102.9"/>
402 </g>
403 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
404 <use xlink:href="#glyph0-1" x="108.100005" y="102.9"/>
405 </g>
406 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
407 <use xlink:href="#glyph0-2" x="114.700005" y="102.9"/>
408 </g>
409 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
410 <use xlink:href="#glyph0-3" x="119" y="102.9"/>
411 </g>
412 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
413 <use xlink:href="#glyph0-4" x="126.500002" y="102.9"/>
414 </g>
415 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
416 <use xlink:href="#glyph0-5" x="263.1" y="95.4"/>
417 </g>
418 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
419 <use xlink:href="#glyph0-3" x="270.59999" y="95.4"/>
420 </g>
421 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
422 <use xlink:href="#glyph0-6" x="277.69998" y="95.4"/>
423 </g>
424 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
425 <use xlink:href="#glyph0-7" x="283.09999" y="95.4"/>
426 </g>
427 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
428 <use xlink:href="#glyph0-8" x="285.59998" y="95.4"/>
429 </g>
430 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(94.53125%,94.53125%,94.921875%);fill-opacity:1;" d="M 170.40625 131.203125 L 206.691406 102.917969 L 242.972656 131.203125 L 206.691406 159.488281 L 170.40625 131.203125 "/>
431 <path style="fill:none;stroke-width:6.67061;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.719177%,12.156677%,12.547302%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 1540.200562 1911.317658 L 1868.16047 2227.845221 L 2196.085072 1911.317658 L 1868.16047 1594.790095 Z M 1540.200562 1911.317658 " transform="matrix(0.110639,0,0,-0.0893608,0,302)"/>
432 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
433 <use xlink:href="#glyph0-9" x="180.2" y="134.4"/>
434 </g>
435 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
436 <use xlink:href="#glyph0-8" x="184.899998" y="134.4"/>
437 </g>
438 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
439 <use xlink:href="#glyph0-0" x="190.299995" y="134.4"/>
440 </g>
441 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
442 <use xlink:href="#glyph0-10" x="196.1" y="134.4"/>
443 </g>
444 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
445 <use xlink:href="#glyph0-11" x="202.500005" y="134.4"/>
446 <use xlink:href="#glyph0-4" x="207.000005" y="134.4"/>
447 </g>
448 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
449 <use xlink:href="#glyph0-3" x="213.199995" y="134.4"/>
450 </g>
451 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
452 <use xlink:href="#glyph0-9" x="220.699985" y="134.4"/>
453 </g>
454 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
455 <use xlink:href="#glyph0-8" x="225.399995" y="134.4"/>
456 </g>
457 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
458 <use xlink:href="#glyph0-12" x="174.5" y="45.4"/>
459 </g>
460 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
461 <use xlink:href="#glyph0-8" x="180.399995" y="45.4"/>
462 </g>
463 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
464 <use xlink:href="#glyph0-4" x="186.199993" y="45.4"/>
465 </g>
466 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
467 <use xlink:href="#glyph0-13" x="192.499995" y="45.4"/>
468 </g>
469 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
470 <use xlink:href="#glyph0-3" x="197.49999" y="45.4"/>
471 </g>
472 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
473 <use xlink:href="#glyph0-4" x="204.99998" y="45.4"/>
474 </g>
475 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
476 <use xlink:href="#glyph0-5" x="211.29997" y="45.4"/>
477 </g>
478 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
479 <use xlink:href="#glyph0-14" x="218.79996" y="45.4"/>
480 </g>
481 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
482 <use xlink:href="#glyph0-11" x="224.89995" y="45.4"/>
483 </g>
484 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
485 <use xlink:href="#glyph0-7" x="229.29995" y="45.4"/>
486 </g>
487 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
488 <use xlink:href="#glyph0-15" x="231.69994" y="45.4"/>
489 </g>
490 <path style="fill:none;stroke-width:6.67061;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.719177%,12.156677%,12.547302%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 2745.521188 2306.048206 L 2890.170961 2306.048206 L 2890.170961 1108.786305 " transform="matrix(0.110639,0,0,-0.0893608,0,302)"/>
491 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(94.53125%,94.53125%,94.921875%);fill-opacity:1;" d="M 287.105469 223.390625 L 319.140625 198.421875 L 351.175781 223.390625 L 319.140625 248.363281 L 287.105469 223.390625 "/>
492 <path style="fill:none;stroke-width:6.67061;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.719177%,12.156677%,12.547302%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 2594.939962 879.68522 L 2884.486653 1159.100243 L 3174.033343 879.68522 L 2884.486653 600.18277 Z M 2594.939962 879.68522 " transform="matrix(0.110639,0,0,-0.0893608,0,302)"/>
493 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
494 <use xlink:href="#glyph0-10" x="299.6" y="226.9"/>
495 </g>
496 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
497 <use xlink:href="#glyph0-7" x="306.200005" y="226.9"/>
498 </g>
499 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
500 <use xlink:href="#glyph0-4" x="308.699995" y="226.9"/>
501 </g>
502 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
503 <use xlink:href="#glyph0-8" x="315.099985" y="226.9"/>
504 </g>
505 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
506 <use xlink:href="#glyph0-1" x="320.799995" y="226.9"/>
507 </g>
508 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
509 <use xlink:href="#glyph0-2" x="327.299995" y="226.9"/>
510 </g>
511 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
512 <use xlink:href="#glyph0-14" x="331.99999" y="226.9"/>
513 </g>
514 <path style="fill:none;stroke-width:6.67061;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.719177%,12.156677%,12.547302%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 1019.221296 2188.547019 L 1019.221296 879.248088 L 2594.939962 879.248088 " transform="matrix(0.110639,0,0,-0.0893608,0,302)"/>
515 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(90.234375%,90.625%,91.014099%);fill-opacity:1;" d="M 77.171875 230.125 L 146.789062 230.125 L 146.789062 216.125 L 77.171875 216.125 Z M 77.171875 230.125 "/>
516 <path style="fill:none;stroke-width:6.67061;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.719177%,12.156677%,12.547302%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 697.475291 804.323596 L 1326.738876 804.323596 L 1326.738876 960.991844 L 697.475291 960.991844 Z M 697.475291 804.323596 " transform="matrix(0.110639,0,0,-0.0893608,0,302)"/>
517 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
518 <use xlink:href="#glyph0-10" x="89.8" y="226.3"/>
519 </g>
520 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
521 <use xlink:href="#glyph0-7" x="96.299999" y="226.3"/>
522 </g>
523 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
524 <use xlink:href="#glyph0-4" x="98.900001" y="226.3"/>
525 </g>
526 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
527 <use xlink:href="#glyph0-8" x="105.300003" y="226.3"/>
528 </g>
529 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
530 <use xlink:href="#glyph0-1" x="110.900001" y="226.3"/>
531 </g>
532 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
533 <use xlink:href="#glyph0-2" x="117.500001" y="226.3"/>
534 </g>
535 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
536 <use xlink:href="#glyph0-3" x="121.799996" y="226.3"/>
537 </g>
538 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
539 <use xlink:href="#glyph0-4" x="129.299998" y="226.3"/>
540 </g>
541 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(94.53125%,94.53125%,94.921875%);fill-opacity:1;" d="M 76.90625 173.203125 L 113.191406 144.917969 L 149.472656 173.203125 L 113.191406 201.488281 L 76.90625 173.203125 "/>
542 <path style="fill:none;stroke-width:6.67061;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.719177%,12.156677%,12.547302%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 695.074465 1441.312913 L 1023.034373 1757.840476 L 1350.994281 1441.312913 L 1023.034373 1124.785351 Z M 695.074465 1441.312913 " transform="matrix(0.110639,0,0,-0.0893608,0,302)"/>
543 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
544 <use xlink:href="#glyph0-0" x="93.9" y="169.4"/>
545 </g>
546 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
547 <use xlink:href="#glyph0-9" x="99.699999" y="169.4"/>
548 </g>
549 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
550 <use xlink:href="#glyph0-14" x="104.199997" y="169.4"/>
551 </g>
552 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
553 <use xlink:href="#glyph0-3" x="110.399999" y="169.4"/>
554 </g>
555 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
556 <use xlink:href="#glyph0-11" x="117.700001" y="169.4"/>
557 <use xlink:href="#glyph0-0" x="122.200001" y="169.4"/>
558 </g>
559 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
560 <use xlink:href="#glyph0-11" x="128.100006" y="169.4"/>
561 </g>
562 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
563 <use xlink:href="#glyph0-10" x="90.4" y="180.4"/>
564 </g>
565 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
566 <use xlink:href="#glyph0-7" x="96.999999" y="180.4"/>
567 </g>
568 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
569 <use xlink:href="#glyph0-4" x="99.500001" y="180.4"/>
570 </g>
571 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
572 <use xlink:href="#glyph0-8" x="105.900003" y="180.4"/>
573 </g>
574 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
575 <use xlink:href="#glyph0-1" x="111.500001" y="180.4"/>
576 </g>
577 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
578 <use xlink:href="#glyph0-2" x="118.100001" y="180.4"/>
579 </g>
580 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
581 <use xlink:href="#glyph0-3" x="122.399996" y="180.4"/>
582 </g>
583 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
584 <use xlink:href="#glyph0-4" x="129.899998" y="180.4"/>
585 </g>
586 <g clip-path="url(#clip2)" clip-rule="nonzero">
587 <path style="fill:none;stroke-width:6.67061;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.719177%,12.156677%,12.547302%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 815.857202 2266.881144 L 345.895491 2266.881144 L 345.895491 314.123335 L 3346.575066 314.123335 L 3346.575066 2384.38233 L 2746.650989 2384.38233 M 2506.038784 336.504513 L 3328.533564 336.504513 L 3328.533564 2362.001152 L 2745.521188 2362.001152 " transform="matrix(0.110639,0,0,-0.0893608,0,302)"/>
588 </g>
589 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(94.53125%,94.53125%,94.921875%);fill-opacity:1;" d="M 244.105469 273.390625 L 279.34375 245.921875 L 314.585938 273.390625 L 279.34375 300.863281 L 244.105469 273.390625 "/>
590 <g clip-path="url(#clip3)" clip-rule="nonzero">
591 <path style="fill:none;stroke-width:6.67061;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.719177%,12.156677%,12.547302%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 2206.288583 320.155762 L 2524.786411 627.547258 L 2843.319546 320.155762 L 2524.786411 12.720553 Z M 2206.288583 320.155762 " transform="matrix(0.110639,0,0,-0.0893608,0,302)"/>
592 </g>
593 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
594 <use xlink:href="#glyph0-12" x="254.6" y="276.4"/>
595 </g>
596 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
597 <use xlink:href="#glyph0-4" x="260.499995" y="276.4"/>
598 </g>
599 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
600 <use xlink:href="#glyph0-3" x="266.699985" y="276.4"/>
601 </g>
602 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
603 <use xlink:href="#glyph0-10" x="274.099975" y="276.4"/>
604 </g>
605 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
606 <use xlink:href="#glyph0-16" x="280.69998" y="276.4"/>
607 </g>
608 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
609 <use xlink:href="#glyph0-1" x="287.19999" y="276.4"/>
610 </g>
611 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
612 <use xlink:href="#glyph0-8" x="294.09999" y="276.4"/>
613 </g>
614 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
615 <use xlink:href="#glyph0-14" x="299.8" y="276.4"/>
616 </g>
617 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(90.234375%,90.625%,91.014099%);fill-opacity:1;" d="M 77.171875 280.625 L 146.789062 280.625 L 146.789062 266.625 L 77.171875 266.625 Z M 77.171875 280.625 "/>
618 <path style="fill:none;stroke-width:6.67061;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.719177%,12.156677%,12.547302%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 697.475291 239.198843 L 1326.738876 239.198843 L 1326.738876 395.867092 L 697.475291 395.867092 Z M 697.475291 239.198843 " transform="matrix(0.110639,0,0,-0.0893608,0,302)"/>
619 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
620 <use xlink:href="#glyph0-12" x="86.8" y="276.8"/>
621 </g>
622 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
623 <use xlink:href="#glyph0-4" x="92.700001" y="276.8"/>
624 </g>
625 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
626 <use xlink:href="#glyph0-3" x="98.900003" y="276.8"/>
627 </g>
628 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
629 <use xlink:href="#glyph0-10" x="106.300005" y="276.8"/>
630 </g>
631 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
632 <use xlink:href="#glyph0-16" x="112.90001" y="276.8"/>
633 </g>
634 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
635 <use xlink:href="#glyph0-1" x="119.400008" y="276.8"/>
636 </g>
637 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
638 <use xlink:href="#glyph0-8" x="126.300008" y="276.8"/>
639 </g>
640 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
641 <use xlink:href="#glyph0-4" x="132.100006" y="276.8"/>
642 </g>
643 <g clip-path="url(#clip4)" clip-rule="nonzero">
644 <path style=" stroke:none;fill-rule:nonzero;fill:rgb(94.53125%,94.53125%,94.921875%);fill-opacity:1;" d="M 1.90625 192.703125 L 38.191406 164.421875 L 74.472656 192.703125 L 38.191406 220.988281 L 1.90625 192.703125 "/>
645 </g>
646 <g clip-path="url(#clip5)" clip-rule="nonzero">
647 <path style="fill:none;stroke-width:6.67061;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(13.719177%,12.156677%,12.547302%);stroke-opacity:1;stroke-miterlimit:3.864;" d="M 17.229458 1223.052712 L 345.15406 1539.580275 L 673.113967 1223.052712 L 345.15406 906.568862 Z M 17.229458 1223.052712 " transform="matrix(0.110639,0,0,-0.0893608,0,302)"/>
648 </g>
649 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
650 <use xlink:href="#glyph0-0" x="20.9" y="187.4"/>
651 </g>
652 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
653 <use xlink:href="#glyph0-1" x="26.599999" y="187.4"/>
654 </g>
655 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
656 <use xlink:href="#glyph0-2" x="33.199999" y="187.4"/>
657 </g>
658 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
659 <use xlink:href="#glyph0-3" x="37.5" y="187.4"/>
660 </g>
661 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
662 <use xlink:href="#glyph0-4" x="44.999999" y="187.4"/>
663 </g>
664 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
665 <use xlink:href="#glyph0-11" x="50.999998" y="187.4"/>
666 </g>
667 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
668 <use xlink:href="#glyph0-12" x="12.5" y="198.4"/>
669 </g>
670 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
671 <use xlink:href="#glyph0-4" x="18.4" y="198.4"/>
672 </g>
673 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
674 <use xlink:href="#glyph0-3" x="24.599999" y="198.4"/>
675 </g>
676 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
677 <use xlink:href="#glyph0-10" x="31.999998" y="198.4"/>
678 </g>
679 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
680 <use xlink:href="#glyph0-16" x="38.599997" y="198.4"/>
681 </g>
682 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
683 <use xlink:href="#glyph0-1" x="45.099998" y="198.4"/>
684 </g>
685 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
686 <use xlink:href="#glyph0-8" x="51.999998" y="198.4"/>
687 </g>
688 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
689 <use xlink:href="#glyph0-4" x="57.799996" y="198.4"/>
690 </g>
691 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
692 <use xlink:href="#glyph0-17" x="29.4" y="162.4"/>
693 </g>
694 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
695 <use xlink:href="#glyph0-17" x="104.9" y="141.3"/>
696 </g>
697 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
698 <use xlink:href="#glyph0-17" x="30.4" y="229.9"/>
699 </g>
700 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
701 <use xlink:href="#glyph0-17" x="104.9" y="208.9"/>
702 </g>
703 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
704 <use xlink:href="#glyph0-17" x="280.5" y="219.9"/>
705 </g>
706 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
707 <use xlink:href="#glyph0-5" x="158.5" y="37.8"/>
708 </g>
709 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
710 <use xlink:href="#glyph0-5" x="233.1" y="270.9"/>
711 </g>
712 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
713 <use xlink:href="#glyph0-18" x="162.5" y="141.4"/>
714 </g>
715 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
716 <use xlink:href="#glyph0-15" x="245" y="143.3"/>
717 </g>
718 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
719 <use xlink:href="#glyph0-15" x="322.5" y="193.4"/>
720 </g>
721 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
722 <use xlink:href="#glyph0-15" x="318.5" y="267.9"/>
723 </g>
724 <g style="fill:rgb(13.725281%,12.156677%,12.548828%);fill-opacity:1;">
725 <use xlink:href="#glyph0-15" x="251.5" y="38.3"/>
726 </g>
727 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
728 <use xlink:href="#glyph0-19" x="-0.8" y="20.8"/>
729 </g>
730 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
731 <use xlink:href="#glyph0-20" x="3.8" y="20.8"/>
732 </g>
733 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
734 <use xlink:href="#glyph0-21" x="9.3" y="20.8"/>
735 </g>
736 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
737 <use xlink:href="#glyph0-22" x="16.5" y="20.8"/>
738 </g>
739 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
740 <use xlink:href="#glyph0-23" x="23.8" y="20.8"/>
741 </g>
742 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
743 <use xlink:href="#glyph0-24" x="29.999999" y="20.8"/>
744 </g>
745 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
746 <use xlink:href="#glyph0-25" x="35.4" y="20.8"/>
747 </g>
748 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
749 <use xlink:href="#glyph0-26" x="37.899999" y="20.8"/>
750 </g>
751 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
752 <use xlink:href="#glyph0-27" x="43.299999" y="20.8"/>
753 </g>
754 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
755 <use xlink:href="#glyph0-28" x="2" y="31.8"/>
756 </g>
757 </g>
758 </svg>
File notes/latex/packages.sty changed (mode: 100644) (index 3cbb414..a27f5f7)
12 12
13 13 %\usepackage[a-1b]{pdfx} %\usepackage[a-1b]{pdfx}
14 14
15
16 15 %% Headers and footers %% Headers and footers
17 16 \usepackage[headsepline]{scrlayer-scrpage} \usepackage[headsepline]{scrlayer-scrpage}
18 17 \automark{chapter} \automark{chapter}
 
20 19 \clearpairofpagestyles \clearpairofpagestyles
21 20 \ihead{\headmark} \ihead{\headmark}
22 21 \ohead{\pagemark} \ohead{\pagemark}
22 \usepackage{geometry}
23 23
24 24 %%%% hyperref setup %%%% hyperref setup
25 25
 
28 28 pdfinfo={ pdfinfo={
29 29 pdfcopyright={Creative Commons Attribution 4.0 International License} pdfcopyright={Creative Commons Attribution 4.0 International License}
30 30 } }
31 }
32
33 %%% DRAWINGS
34
35
36 %%\usepackage{latex/tikz-er2}
37 % The tikz-er2 package.
38 % Ver. 1.0
39 % (c) Pável Caldo
40 % January 2009
41
42 \NeedsTeXFormat{LaTeX2e}
43 \ProvidesPackage{tikz-er2}[2009/01/31 Entity-relationship diagrams using the Tikz library]
44
45 \RequirePackage{tikz}
46 \RequirePackage[normalem]{ulem} % for the dashed underline
47
48 \usetikzlibrary{shapes.geometric}
49 \usetikzlibrary{arrows}
50 \usetikzlibrary{fit}
51
52 \tikzstyle{every entity} = []
53 \tikzstyle{every weak entity} = []
54 \tikzstyle{every attribute} = []
55 \tikzstyle{every relationship} = []
56 \tikzstyle{every link} = []
57 \tikzstyle{every isa} = []
58
59 \tikzstyle{link} = [>=triangle 60, draw, thick, every link]
60
61 \tikzstyle{total} = [link, double, double distance=3pt]
62
63 \tikzstyle{entity} = [rectangle, draw, black, very thick,
64 minimum width=6em, minimum height=3em,
65 every entity]
66
67 \tikzstyle{weak entity} = [entity, double, double distance=2pt,
68 every weak entity]
69
70 \tikzstyle{attribute} = [ellipse, draw, black, very thick,
71 minimum width=5em, minimum height=2em,
72 every attribute]
73
74 %\tikzstyle{key attribute} = [attribute, font=\bfseries]
75
76 \tikzstyle{multi attribute} = [attribute, double, double distance=2pt]
77
78 \tikzstyle{derived attribute} = [attribute, dashed]
79
80 %\tikzstyle{discriminator} = [attribute, font=\itshape]
81
82 \tikzstyle{relationship} = [diamond, draw, black, very thick,
83 minimum width=2em, aspect=1,
84 every relationship]
85
86 \tikzstyle{ident relationship} = [relationship, double, double distance=2pt]
87
88 \tikzstyle{isa} = [isosceles triangle, isosceles triangle apex angle=60,
89 shape border rotate=-90,
90 draw, black, very thick, minimum size=3em,
91 every isa]
92
93 % for text un key attributes
94 \newcommand{\key}[1]{\underline{#1}}
95 \newcommand{\pkey}[1]{\dashuline{#1}}
96
97 % for text in discriminator attributes
98 \def\discriminator{\bgroup
99 \ifdim\ULdepth=\maxdimen % Set depth based on font, if not set already
100 \settodepth\ULdepth{(j}\advance\ULdepth.4pt\fi
101 \markoverwith{\kern.15em
102 \vtop{\kern\ULdepth \hrule width .3em}%
103 \kern.15em}\ULon}
104
105 %%
106
107 \usetikzlibrary{positioning}
108 \usetikzlibrary{shapes,calc}
109 \usetikzlibrary{arrows.meta}
110 \definecolor{MediumPurple1}{rgb}{0.58, 0.44, 0.86}
111 \definecolor{Chartreuse2}{rgb}{0.5, 1.0, 0.0}
112 \tikzset{every entity/.style={draw=orange, fill=orange!20}}
113 \tikzset{every attribute/.style={draw=MediumPurple1, fill=MediumPurple1!20}}
114 \tikzset{every relationship/.style={draw=Chartreuse2, fill=Chartreuse2!20}}
115 % Example of code: https://tex.stackexchange.com/a/82600/34551
116 %\begin{tikzpicture}[node distance=7em]
117 %\node[entity] (person) {Person};
118 %\node[attribute] (pid) [left of=person] {\key{ID}} edge (person);
119 %\node[attribute] (name) [above left of=person] {Name} edge (person);
120 %\node[multi attribute] (phone) [above of=person] {Phone} edge (person);
121 %\node[attribute] (address) [above right of=person] {Address} edge (person);
122 %\node[attribute] (street) [above right of=address] {Street} edge (address);
123 %\node[attribute] (city) [right of=address] {City} edge (address);
124 %\node[derived attribute] (age) [right of=person] {Age} edge (person);
125 %
126 %\node[relationship] (uses) [below of=person] {Uses} edge (person);
127 %\node[entity] (tool) [below of=uses] {Tool} edge[total] (uses);
128 %\node[attribute] (tid) [left of=tool] {\key{ID}} edge (tool);
129 %\node[attribute] (tname) [right of =tool] {Name} edge (tool);
130 %\end{tikzpicture}
131
132
133 %%%% UML Class Diagrams
134
135 \usetikzlibrary{arrows}
31 }
File notes/lectures_notes.md changed (mode: 100644) (index 2a5e49e..bedffa0)
... ... subtitle: Lecture Notes (Draft)
5 5 author: Clément Aubert author: Clément Aubert
6 6 institute: Augusta University institute: Augusta University
7 7 papersize: letter papersize: letter
8 geometry: "vmargin=2cm"
8 9 bibliography: [ bib/bib.bib ] bibliography: [ bib/bib.bib ]
9 10 link-citations: true link-citations: true
10 11 lang: en lang: en
 
... ... Problem (Select queries for the COMPUTER table) +.#
2830 2831
2831 2832 Consider the following `SQL` code: Consider the following `SQL` code:
2832 2833
2833 ~~~{.sqlmysql .numberLines}
2834 CREATE TABLE COMPUTER(
2835 Id VARCHAR(20) PRIMARY KEY,
2836 Model VARCHAR(20)
2837 );
2838
2839 CREATE TABLE PRINTER(
2840 Id VARCHAR(20) PRIMARY KEY,
2841 Model VARCHAR(20)
2842 );
2843
2844 CREATE TABLE CONNEXION(
2845 Computer VARCHAR(20),
2846 Printer VARCHAR(20),
2847 PRIMARY KEY(Computer, Printer),
2848 FOREIGN KEY (Computer) REFERENCES COMPUTER(Id),
2849 FOREIGN KEY (Printer) REFERENCES PRINTER(Id)
2850 );
2851
2852 INSERT INTO COMPUTER VALUES
2853 ('A', 'DELL A'),
2854 ('B', 'HP X'),
2855 ('C', 'ZEPTO D'),
2856 ('D', 'MAC Y');
2857
2858 INSERT INTO PRINTER VALUES
2859 ('12', 'HP-140'),
2860 ('13', 'HP-139'),
2861 ('14', 'HP-140'),
2862 ('15', 'HP-139');
2863
2864 INSERT INTO CONNEXION VALUES
2865 ('A', '12'),
2866 ('A', '13'),
2867 ('B', '13'),
2868 ('C', '14');
2869 ~~~
2834 ```{.sqlmysql .numberLines include=code/sql/COMPUTER.sql}
2835 ```
2870 2836
2871 2837 Write a query that returns … (in parenthesis, the values returned *in this set-up*, but you have to be general) Write a query that returns … (in parenthesis, the values returned *in this set-up*, but you have to be general)
2872 2838
 
... ... Solution to [%D %n (%T)](#problem:address)
3090 3056 --- ---
3091 3057
3092 3058 Solution to [%D %n (%T)](#problem:repetition) Solution to [%D %n (%T)](#problem:repetition)
3093 ~ As a preamble, we create our own table:
3059 ~
3060 As a preamble, we create our own table:
3094 3061
3095 3062 ~~~{.sqlmysql} ~~~{.sqlmysql}
3096 3063 CREATE SCHEMA HW_REPETITION; CREATE SCHEMA HW_REPETITION;
 
... ... Solution to [%D %n (%T)](#problem:repetition)
3102 3069 ~~~ ~~~
3103 3070
3104 3071 @problem:repetition -- Solution to Q. -.# @problem:repetition -- Solution to Q. -.#
3105 ~ \
3106
3072 ~
3073 The command is
3074
3107 3075 ~~~{.sqlmysql} ~~~{.sqlmysql}
3108 3076 INSERT INTO EXAMPLE VALUES('Train', 4); INSERT INTO EXAMPLE VALUES('Train', 4);
3109 3077 ~~~ ~~~
 
... ... Solution to [%D %n (%T)](#problem:repetition)
3128 3096 This is an illustration of the fact that a table in sql is *not* a set, as opposed to a relation in the relation model. This is an illustration of the fact that a table in sql is *not* a set, as opposed to a relation in the relation model.
3129 3097
3130 3098 @problem:repetition -- Solution to Q. -.# @problem:repetition -- Solution to Q. -.#
3131 ~ \
3099 ~
3100
3101 The command
3132 3102
3133 3103 ~~~{.sqlmysql} ~~~{.sqlmysql}
3134 3104 ALTER TABLE EXAMPLE ADD PRIMARY KEY (X); ALTER TABLE EXAMPLE ADD PRIMARY KEY (X);
 
... ... Solution to [%D %n (%T)](#problem:repetition)
3143 3113 We tried to declare that `X` was a primary key, but SQL disagreed, since two rows have the same value for that attribute. We tried to declare that `X` was a primary key, but SQL disagreed, since two rows have the same value for that attribute.
3144 3114
3145 3115 @problem:repetition -- Solution to Q. -.# @problem:repetition -- Solution to Q. -.#
3146 ~ Once the table is empty, `X` indeed is a primary key, so SQL stops complaining and let us make it a primary key.
3116 : Once the table is empty, `X` indeed is a primary key, so SQL stops complaining and let us make it a primary key.
3147 3117
3148 3118 @problem:repetition -- Solution to Q. -.# @problem:repetition -- Solution to Q. -.#
3149 ~ We can't introduce the same value twice:
3119 ~
3120 We can't introduce the same value twice:
3150 3121
3151 3122 ~~~{.sqlmysql} ~~~{.sqlmysql}
3152 3123 INSERT INTO EXAMPLE VALUES('Train', 4); INSERT INTO EXAMPLE VALUES('Train', 4);
 
... ... Solution to [%D %n (%T)](#problem:coffee)
3198 3169
3199 3170 Solution to [%D %n (%T)](#problem:roleplaying) Solution to [%D %n (%T)](#problem:roleplaying)
3200 3171 ~ ~
3201 The following solves all the mentionned issues. As quests only rarely provides a special item, we added a relation to avoid having a `Special-item` in the `QUEST` table that would be too often `NULL`.
3172
3173 The following solves all the mentionned issues.
3174 As quests only rarely provides a special item, we added a relation to avoid having a `Special-item` in the `QUEST` table that would be too often `NULL`{.sqlmysql}.
3202 3175
3203 3176 ![ ![
3204 3177 CLASS(Name (PK), Bonus, Element) CLASS(Name (PK), Bonus, Element)
 
... ... Remember that in relational models, relations were representing entities (`Stude
3252 3225 Remember that a model is supposed to be DBMS independant, and that computer science is at the border between humans and computers. Remember that a model is supposed to be DBMS independant, and that computer science is at the border between humans and computers.
3253 3226 Cf. [@Textbook6, Figure 7.1] or [@Textbook7, Figure 3.1] for the "parrallel journey" of operations: Cf. [@Textbook6, Figure 7.1] or [@Textbook7, Figure 3.1] for the "parrallel journey" of operations:
3254 3227
3255 ![](img/db_design.pdf)
3228 ![](img/db_design)
3256 3229 \ \
3257 3230
3258 3231 Introduce topics to come. Introduce topics to come.
 
... ... Choice between two representation: if pet is involved in other relationships!
3458 3431
3459 3432 ![](img/Entity_Alt_notation02.jpeg) ![](img/Entity_Alt_notation02.jpeg)
3460 3433
3461
3462 3434 Crow's foot notation: Crow's foot notation:
3463 3435
3464 3436 ![](img/ERD-Notation.PNG) ![](img/ERD-Notation.PNG)
 
... ... Extended (or Enhanced) E.R. Models (E.E.R.) have additionaly:
3476 3448 - Subtype / Subclass: "every professor is an employee". There is a class / subclass relationship (you can proceed by specialization or generalization). - Subtype / Subclass: "every professor is an employee". There is a class / subclass relationship (you can proceed by specialization or generalization).
3477 3449 - Category (to represent UNION): an OWNER entity that can be either a PERSON, a BANK, or a COMPANY entity type. - Category (to represent UNION): an OWNER entity that can be either a PERSON, a BANK, or a COMPANY entity type.
3478 3450
3479 Closer to OO programming.
3451 Closer to object-oriented programming.
3480 3452
3481 3453 ### Reverse Engineering ### Reverse Engineering
3482 3454
 
... ... From relational models to E.R. models (sometimes needed)
3484 3456
3485 3457 ![](img/Reverse_Eng1.jpeg) ![](img/Reverse_Eng1.jpeg)
3486 3458
3487 ![](img/Reverse_Eng2.jpeg)
3459 ![](fig/rel_mod/PROF_DEPARTMENT_EXTENDED)
3488 3460
3489 3461 ![](img/Reverse_Eng3.jpeg) ![](img/Reverse_Eng3.jpeg)
3490 3462
 
... ... Because it avoids redundancy.
4390 4362
4391 4363 Problem (Design for your Professor) +.#designforprof Problem (Design for your Professor) +.#designforprof
4392 4364 ~ ~
4365
4393 4366 Your professor designed the following relational model at some point in his career, to help him organizing his exams and the students grades: Your professor designed the following relational model at some point in his career, to help him organizing his exams and the students grades:
4394 4367
4395 4368 <!-- bug with table --> <!-- bug with table -->
 
... ... Problem (Reading the MOVIES database ER schema) +.#movie
4417 4390
4418 4391 Consider the ER schema for the MOVIES database ([@Textbook6, Figure 7.24]): Consider the ER schema for the MOVIES database ([@Textbook6, Figure 7.24]):
4419 4392
4420 \begin{tikzpicture}
4421 \node (a) at (0,0) {\includegraphics[page=1,width=1\textwidth]{img/te.pdf}};
4422 \fill[white] (-8.3, 6.5) rectangle (-3.5, 4);
4423 \end{tikzpicture}
4393 ![](img/te)
4424 4394
4425 4395 Assume that MOVIES is a populated database. Assume that MOVIES is a populated database.
4426 4396 ACTOR is used as a gender-netral term. ACTOR is used as a gender-netral term.
 
... ... Apply the ER-to-Relation mapping to your ER diagram from the previous problem.
4464 4434 --- ---
4465 4435
4466 4436 Problem (ER-to-Relation mapping for Country) + .# Problem (ER-to-Relation mapping for Country) + .#
4467 ~
4437 ~
4468 4438
4469 4439 Consider the following E.R. schema: Consider the following E.R. schema:
4470 4440
 
... ... Problem (From E.R. to Relational Schema and UML class diagram -- CAR\_INFO) +.#c
4681 4651 --- ---
4682 4652
4683 4653 Problem (Discovering MySQL Workbench) +.#mysqlw Problem (Discovering MySQL Workbench) +.#mysqlw
4684 ~
4654 ~
4685 4655
4686 4656 In this exercise, we will install and explore the basic functionalities of MySQL Workbench, which is a cross-platform, open-source, and free graphical interface for database design. In this exercise, we will install and explore the basic functionalities of MySQL Workbench, which is a cross-platform, open-source, and free graphical interface for database design.
4687 4657
 
... ... Solution to [%D %n (%T)](#problem:movie)
4761 4731 Solution to [%D %n (%T)](#problem:car-insurance) Solution to [%D %n (%T)](#problem:car-insurance)
4762 4732 ~ ~
4763 4733
4764 \includegraphics[page=1,width=1\textwidth]{img/p.pdf}
4765
4734 ![](img/p)
4735
4766 4736 OR OR
4767 4737
4768 4738 ![](fig/er/Accident) ![](fig/er/Accident)
 
... ... Solution to [%D %n (%T)](#problem:reverseeng)
4866 4836
4867 4837 ## Resources {-} ## Resources {-}
4868 4838
4869 [@Textbook6, Ch. 13], [@Textbook7 , Chapter 10]
4870 <http://spots.augusta.edu/caubert/teaching/general/java/>
4871
4839 - <http://spots.augusta.edu/caubert/teaching/general/java/>
4840 - If you experience troubles, <https://www.ntu.edu.sg/home/ehchua/programming/howto/ErrorMessages.html#JDBCErrors> might be a good read.
4841 - [@Textbook6, 13.3.2] or [@Textbook7 , Chapter 10] is a condensed, but good read.
4842 - Many textbook on Java includes a part on Databases, cf. for instance [Gaddis2014, Chapter 16].
4872 4843
4873 4844 ## Overview ## Overview
4874 4845
 
... ... Solution +.#
5284 5255
5285 5256 ## Problems ## Problems
5286 5257
5287 - If you experience troubles, <https://www.ntu.edu.sg/home/ehchua/programming/howto/ErrorMessages.html#JDBCErrors> might be a good read.
5288 - [@Textbook6, 13.3.2] is a condensed, but good read. Many textbook on Java includes a part on Databases, cf. for instance [Gaddis2014, Chapter 16].
5289
5290
5291 5258 Problem (MySQL's batch mode and HW_EBOOKSHOP.sql) +.#mysql_batch Problem (MySQL's batch mode and HW_EBOOKSHOP.sql) +.#mysql_batch
5292 5259 ~ ~
5293 5260
 
... ... Problem (MySQL's batch mode and HW_EBOOKSHOP.sql) +.#mysql_batch
5311 5278
5312 5279 --- ---
5313 5280
5314 Problem +.#
5281 Problem +.# (Fist Database Application)
5315 5282 ~ ~
5316 5283
5317 5284 This exercise supposes you successfully completed @problem:mysql_batch. This exercise supposes you successfully completed @problem:mysql_batch.
 
... ... Solution +.#
5354 5321 at FirstProg.main(FirstProg.java:9) at FirstProg.main(FirstProg.java:9)
5355 5322 ~~~ ~~~
5356 5323
5357 Problem +.#
5324 Problem +.# (Advanced Java Programming)
5358 5325 ~ ~
5359 5326
5360 5327 Read, execute, break, edit, compile, patch, hack and (most importantly) understand the following program: Read, execute, break, edit, compile, patch, hack and (most importantly) understand the following program:
 
... ... Multi-model | Support multiple data models | [Apache Ignite](https://ignite.apa
5558 5525
5559 5526 ## MongoDB ## MongoDB
5560 5527
5528 ### Ressources
5529
5530 - <https://oss.sonatype.org/content/repositories/releases/org/mongodb/mongo-java-driver/3.7.0-rc0/>
5531 - <https://jsonlint.com/>
5532 - <https://zanon.io/posts/nosql-injection-in-mongodb>
5533 - <https://mongodb.github.io/mongo-java-driver/3.4/driver/getting-started/quick-start/>
5534 - <https://www.mongodb.com/blog/post/getting-started-with-mongodb-and-java-part-i>
5535 - <https://docs.mongodb.com/manual/administration/security-checklist/>
5536 - <https://docs.mongodb.com/getting-started/shell/>
5537 - <https://university.mongodb.com>
5538 - <https://en.wikipedia.org/wiki/MongoDB>
5539 - <https://en.wikipedia.org/wiki/Document-oriented_database>
5540 - <https://db-engines.com/en/ranking/document+store>
5541 - <http://cs.ulb.ac.be/public/_media/teaching/infoh415/student_projects/couchdb.pdf>
5542 - <https://www.w3schools.com/xml/schema_example.asp>
5543 - <https://www.w3schools.com/nodejs/nodejs_mongodb_join.asp>
5544 - <http://api.mongodb.com/>
5545 - NoSQL for mere mortal, ch. 6
5546 - NoSQL distilled, ch. 9.
5547
5561 5548 ### Introduction ### Introduction
5562 5549
5563 5550 MongoDB is MongoDB is
 
... ... Example: table for phone number, for employee, for emergency contact. You can du
5818 5805 Less join (resources expensive), but need more storage, more functions, to substitute. Less join (resources expensive), but need more storage, more functions, to substitute.
5819 5806 - NoSQL injection: your application should accept only strings from your users (never allow objects by design) and sanitize the inputs before using them (mongo-sanitize is a good module for this). - NoSQL injection: your application should accept only strings from your users (never allow objects by design) and sanitize the inputs before using them (mongo-sanitize is a good module for this).
5820 5807
5821 Sources:
5822
5823 - <https://oss.sonatype.org/content/repositories/releases/org/mongodb/mongo-java-driver/3.7.0-rc0/>
5824 - <https://jsonlint.com/>
5825 - <https://zanon.io/posts/nosql-injection-in-mongodb>
5826 - <https://mongodb.github.io/mongo-java-driver/3.4/driver/getting-started/quick-start/>
5827 - <https://www.mongodb.com/blog/post/getting-started-with-mongodb-and-java-part-i>
5828 - <https://docs.mongodb.com/manual/administration/security-checklist/>
5829 - <https://docs.mongodb.com/getting-started/shell/>
5830 - <https://university.mongodb.com>
5831 - <https://en.wikipedia.org/wiki/MongoDB>
5832 - <https://en.wikipedia.org/wiki/Document-oriented_database>
5833 - <https://db-engines.com/en/ranking/document+store>
5834 - <http://cs.ulb.ac.be/public/_media/teaching/infoh415/student_projects/couchdb.pdf>
5835 - <https://www.w3schools.com/xml/schema_example.asp>
5836 - <https://www.w3schools.com/nodejs/nodejs_mongodb_join.asp>
5837 - <http://api.mongodb.com/>
5838 - NoSQL for mere mortal, ch. 6
5839 - NoSQL distilled, ch. 9.
5840 5808
5841 5809 ## Exercises {-} ## Exercises {-}
5842 5810
File notes/temp.md changed (mode: 100644) (index bac3743..14e49c8)
... ... subtitle: Lecture Notes (Draft)
5 5 author: Clément Aubert author: Clément Aubert
6 6 institute: Augusta University institute: Augusta University
7 7 papersize: letter papersize: letter
8 margins: 1em
8 geometry: "vmargin=2cm"
9 9 bibliography: [ bib/bib.bib ] bibliography: [ bib/bib.bib ]
10 10 link-citations: true link-citations: true
11 11 lang: en lang: en
12 12 numbersections: true numbersections: true
13 mainfont: Linux Libertine O
13 14 keywords: keywords:
14 15 - Computer Science - Computer Science
15 16 - Database - Database
 
... ... pandoc-numbering:
30 31
31 32 ${A}$ ${A}$
32 33 $\{A\}$ $\{A\}$
34 [Test](http://train.test)
33 35
34 36 <!-- <!--
35 37
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/caubert/CSCI_3410

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/caubert/CSCI_3410

Clone this repository using git:
git clone git://git.rocketgit.com/user/caubert/CSCI_3410

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main