mahoujin 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. checksums.yaml +7 -0
  2. data/.codeclimate.yml +8 -0
  3. data/.gitignore +9 -0
  4. data/.rspec +1 -0
  5. data/.rubocop.yml +51 -0
  6. data/.travis.yml +7 -0
  7. data/Gemfile +3 -0
  8. data/LICENSE.txt +21 -0
  9. data/README.md +78 -0
  10. data/Rakefile +9 -0
  11. data/bin/console +7 -0
  12. data/bin/rake +10 -0
  13. data/bin/rspec +10 -0
  14. data/bin/rubocop +10 -0
  15. data/bin/setup +7 -0
  16. data/exe/mahoujin +22 -0
  17. data/lib/mahoujin.rb +15 -0
  18. data/lib/mahoujin/atoms.rb +32 -0
  19. data/lib/mahoujin/atoms/choice.rb +12 -0
  20. data/lib/mahoujin/atoms/concatenation.rb +12 -0
  21. data/lib/mahoujin/atoms/exception.rb +11 -0
  22. data/lib/mahoujin/atoms/grouping.rb +11 -0
  23. data/lib/mahoujin/atoms/non_terminal.rb +11 -0
  24. data/lib/mahoujin/atoms/optional.rb +11 -0
  25. data/lib/mahoujin/atoms/prose.rb +11 -0
  26. data/lib/mahoujin/atoms/rule.rb +11 -0
  27. data/lib/mahoujin/atoms/rule_name.rb +11 -0
  28. data/lib/mahoujin/atoms/specific_repetition.rb +11 -0
  29. data/lib/mahoujin/atoms/syntax.rb +11 -0
  30. data/lib/mahoujin/atoms/terminal.rb +11 -0
  31. data/lib/mahoujin/atoms/zero_or_more_repetition.rb +11 -0
  32. data/lib/mahoujin/graphics/layout.rb +203 -0
  33. data/lib/mahoujin/graphics/renderer.rb +337 -0
  34. data/lib/mahoujin/graphics/stringify.rb +67 -0
  35. data/lib/mahoujin/graphics/styles/basic.rb +48 -0
  36. data/lib/mahoujin/graphics/styles/json.rb +48 -0
  37. data/lib/mahoujin/graphics/utilities/rectangle.rb +58 -0
  38. data/lib/mahoujin/parser.rb +62 -0
  39. data/lib/mahoujin/transform.rb +39 -0
  40. data/lib/mahoujin/version.rb +3 -0
  41. data/mahoujin.gemspec +29 -0
  42. data/samples/ebnf/syntax.ebnfspec +20 -0
  43. data/samples/ebnf/syntax.svg +1558 -0
  44. data/samples/ipv4/syntax.ebnfspec +6 -0
  45. data/samples/ipv4/syntax.svg +344 -0
  46. data/samples/json/syntax.ebnfspec +8 -0
  47. data/samples/json/syntax.svg +1169 -0
  48. metadata +202 -0
@@ -0,0 +1,67 @@
1
+ module Mahoujin
2
+ module Graphics
3
+ class Stringify
4
+ def stringify(atom)
5
+ stringify_atom(atom)
6
+ end
7
+
8
+ private
9
+
10
+ def stringify_atom(atom)
11
+ send "stringify_#{atom.class.underscore_name}", atom
12
+ end
13
+
14
+ def stringify_syntax(atom)
15
+ atom.atoms.map(&->(a) { stringify_atom(a) }).join("\n")
16
+ end
17
+
18
+ def stringify_rule(atom)
19
+ "#{stringify_atom(atom.rule_name_atom)} = #{stringify_atom(atom.atom)};"
20
+ end
21
+
22
+ def stringify_rule_name(atom)
23
+ atom.content
24
+ end
25
+
26
+ def stringify_choice(atom)
27
+ atom.atoms.map(&->(a) { stringify_atom(a) }).join(' | ')
28
+ end
29
+
30
+ def stringify_concatenation(atom)
31
+ atom.atoms.map(&->(a) { stringify_atom(a) }).join(', ')
32
+ end
33
+
34
+ def stringify_specific_repetition(atom)
35
+ "#{atom.number} * #{stringify_atom(atom.atom)}"
36
+ end
37
+
38
+ def stringify_optional(atom)
39
+ "[ #{stringify_atom(atom.atom)} ]"
40
+ end
41
+
42
+ def stringify_zero_or_more_repetition(atom)
43
+ "{ #{stringify_atom(atom.atom)} }"
44
+ end
45
+
46
+ def stringify_grouping(atom)
47
+ "( #{stringify_atom(atom.atom)} )"
48
+ end
49
+
50
+ def stringify_prose(atom)
51
+ "? #{atom.content} ?"
52
+ end
53
+
54
+ def stringify_exception(atom)
55
+ atom.content
56
+ end
57
+
58
+ def stringify_non_terminal(atom)
59
+ atom.content
60
+ end
61
+
62
+ def stringify_terminal(atom)
63
+ atom.content.include?("'") ? "\"#{atom.content}\"" : "'#{atom.content}'"
64
+ end
65
+ end
66
+ end
67
+ end
@@ -0,0 +1,48 @@
1
+ module Mahoujin
2
+ module Graphics
3
+ module Styles
4
+ class Basic
5
+ attr_reader :basic
6
+
7
+ def initialize
8
+ initialize_basic
9
+ initialize_atoms
10
+ end
11
+
12
+ def query(atom, attribute)
13
+ @atoms.fetch(atom).fetch(attribute)
14
+ end
15
+
16
+ private
17
+
18
+ def initialize_basic
19
+ @basic = {}
20
+ @basic[:font] = { family: 'serif', size: 12 }.freeze
21
+ @basic[:line] = { width: 1 }.freeze
22
+
23
+ @basic[:unit] = nil
24
+ @basic[:corner] = { radius: 0.618 }.freeze
25
+ end
26
+
27
+ def initialize_atoms
28
+ @atoms = {}
29
+
30
+ @atoms[Atoms::Terminal] = { bsize: { width: 2 * 0.618, height: 1 + 2 * 0.618 }.freeze, font: { }.freeze, background: '#FFFFFF' }
31
+ @atoms[Atoms::NonTerminal] = { bsize: { width: 2 * 0.618, height: 1 + 2 * 0.618 }.freeze, font: { bold: true }.freeze, background: '#FFFFFF' }
32
+ @atoms[Atoms::Prose] = { bsize: { width: 2 * 0.618, height: 1 + 2 * 0.618 }.freeze, font: { italic: true }.freeze, background: '#FFFFFF' }
33
+ @atoms[Atoms::Exception] = { bsize: { width: 2 * 0.618, height: 1 + 2 * 0.618 }.freeze, font: { italic: true }.freeze, background: '#FFFFFF' }
34
+ @atoms[Atoms::RuleName] = { bsize: { width: 0 , height: 1 }.freeze, font: { bold: true }.freeze }
35
+
36
+ @atoms[Atoms::ZeroOrMoreRepetition] = { padding: { top: 2, bottom: 2, left: 2, right: 2 }.freeze }
37
+ @atoms[Atoms::Optional] = { padding: { bottom: 2, left: 2, right: 2 }.freeze }
38
+ @atoms[Atoms::SpecificRepetition] = { padding: { top: 2, left: 2, right: 2 }.freeze }
39
+
40
+ @atoms[Atoms::Concatenation] = { space: 1 }
41
+ @atoms[Atoms::Choice] = { space: 1, padding: { left: 2, right: 2 }.freeze }
42
+ @atoms[Atoms::Rule] = { space: 2, padding: { left: 2, right: 2 }.freeze }
43
+ @atoms[Atoms::Syntax] = { space: 4, padding: { top: 2, bottom: 2, left: 2, right: 2 }.freeze }
44
+ end
45
+ end
46
+ end
47
+ end
48
+ end
@@ -0,0 +1,48 @@
1
+ module Mahoujin
2
+ module Graphics
3
+ module Styles
4
+ class Json
5
+ attr_reader :basic
6
+
7
+ def initialize
8
+ initialize_basic
9
+ initialize_atoms
10
+ end
11
+
12
+ def query(atom, attribute)
13
+ @atoms.fetch(atom).fetch(attribute)
14
+ end
15
+
16
+ private
17
+
18
+ def initialize_basic
19
+ @basic = {}
20
+ @basic[:font] = { family: 'serif', size: 12 }.freeze
21
+ @basic[:line] = { width: 3 }.freeze
22
+
23
+ @basic[:unit] = nil
24
+ @basic[:corner] = { radius: 0.618 }.freeze
25
+ end
26
+
27
+ def initialize_atoms
28
+ @atoms = {}
29
+
30
+ @atoms[Atoms::Terminal] = { bsize: { width: 2 * 0.618, height: 1 + 2 * 0.618 }.freeze, font: { }.freeze, background: '#CEFFCE' }
31
+ @atoms[Atoms::NonTerminal] = { bsize: { width: 2 * 0.618, height: 1 + 2 * 0.618 }.freeze, font: { bold: true, italic: true }.freeze, background: '#CEFFCE' }
32
+ @atoms[Atoms::Prose] = { bsize: { width: 2 * 0.618, height: 1 + 2 * 0.618 }.freeze, font: { italic: true }.freeze, background: '#CEFFCE' }
33
+ @atoms[Atoms::Exception] = { bsize: { width: 2 * 0.618, height: 1 + 2 * 0.618 }.freeze, font: { italic: true }.freeze, background: '#CEFFCE' }
34
+ @atoms[Atoms::RuleName] = { bsize: { width: 0 , height: 1 }.freeze, font: { bold: true, italic: true }.freeze }
35
+
36
+ @atoms[Atoms::ZeroOrMoreRepetition] = { padding: { top: 1.5, bottom: 1.5, left: 3, right: 3 }.freeze }
37
+ @atoms[Atoms::Optional] = { padding: { bottom: 1.5, left: 3, right: 3 }.freeze }
38
+ @atoms[Atoms::SpecificRepetition] = { padding: { top: 1.5, left: 3, right: 3 }.freeze }
39
+
40
+ @atoms[Atoms::Concatenation] = { space: 1.5 }
41
+ @atoms[Atoms::Choice] = { space: 1, padding: { left: 3, right: 3 }.freeze }
42
+ @atoms[Atoms::Rule] = { space: 2, padding: { left: 2, right: 2 }.freeze }
43
+ @atoms[Atoms::Syntax] = { space: 4, padding: { top: 2, bottom: 2, left: 2, right: 2 }.freeze }
44
+ end
45
+ end
46
+ end
47
+ end
48
+ end
@@ -0,0 +1,58 @@
1
+ module Mahoujin
2
+ module Graphics
3
+ module Utilities
4
+ class Rectangle
5
+ attr_accessor :left, :top, :right, :bottom, :centerline
6
+
7
+ def initialize(left = 0, top = 0, right = 0, bottom = 0)
8
+ @left, @top, @right, @bottom = left, top, right, bottom
9
+ @centerline = @top + (@bottom - @top).fdiv(2)
10
+ end
11
+
12
+ def sync_with(rectangle)
13
+ @left, @top, @right, @bottom = rectangle.left, rectangle.top, rectangle.right, rectangle.bottom
14
+ @centerline = rectangle.centerline
15
+ end
16
+
17
+ def width
18
+ @right - @left
19
+ end
20
+
21
+ def width=(width)
22
+ @right = @left + width
23
+ end
24
+
25
+ def height
26
+ @bottom - @top
27
+ end
28
+
29
+ def height=(height)
30
+ @centerline = @top + height * (@centerline - @top).fdiv(@bottom - @top)
31
+ @bottom = @top + height
32
+ end
33
+
34
+ def move_left(left)
35
+ @right = left + (@right - @left)
36
+ @left = left
37
+ end
38
+
39
+ def move_right(right)
40
+ @left = right + (@left - @right)
41
+ @right = right
42
+ end
43
+
44
+ def move_top(top)
45
+ @centerline = top + (@centerline - @top)
46
+ @bottom = top + (@bottom - @top)
47
+ @top = top
48
+ end
49
+
50
+ def move_bottom(bottom)
51
+ @centerline = bottom + (@centerline - @bottom)
52
+ @top = bottom + (@top - @bottom)
53
+ @bottom = bottom
54
+ end
55
+ end
56
+ end
57
+ end
58
+ end
@@ -0,0 +1,62 @@
1
+ module Mahoujin
2
+ class Parser < Parslet::Parser
3
+ root(:_start_)
4
+ rule(:_start_) { syntax.as(:syntax) }
5
+
6
+ rule(:syntax) do
7
+ space? >> syntax_rule.as(:syntax_rule) >>
8
+ (space? >> syntax_rule.as(:syntax_rule)).repeat >> space?
9
+ end
10
+
11
+ rule(:syntax_rule) do
12
+ meta_identifier.as(:meta_identifier) >> space? >> str('=') >>
13
+ space? >> definitions_list.as(:definitions_list) >> space? >> str(';')
14
+ end
15
+
16
+ rule(:definitions_list) do
17
+ single_definition.as(:single_definition) >>
18
+ (space? >> str('|') >> space? >> single_definition.as(:single_definition)).repeat
19
+ end
20
+
21
+ rule(:single_definition) do
22
+ term.as(:term) >>
23
+ (space? >> str(',') >> space? >> term.as(:term)).repeat
24
+ end
25
+
26
+ rule(:term) do
27
+ factor.as(:factor) >>
28
+ (space? >> str('-') >> space? >> exception.as(:exception)).maybe
29
+ end
30
+
31
+ rule(:exception) do
32
+ factor
33
+ end
34
+
35
+ rule(:factor) do
36
+ (integer.as(:number_of_repetition) >> space? >> str('*') >> space?).maybe >>
37
+ primary.as(:primary)
38
+ end
39
+
40
+ rule(:primary) do
41
+ optional_sequence.as(:optional_sequence) |
42
+ repeated_sequence.as(:repeated_sequence) |
43
+ grouped_sequence.as(:grouped_sequence) |
44
+ special_sequence.as(:special_sequence) |
45
+ meta_identifier.as(:meta_identifier) |
46
+ terminal_string.as(:terminal_string)
47
+ end
48
+
49
+ rule(:optional_sequence) { str('[') >> space? >> definitions_list.as(:definitions_list) >> space? >> str(']') }
50
+ rule(:repeated_sequence) { str('{') >> space? >> definitions_list.as(:definitions_list) >> space? >> str('}') }
51
+ rule(:grouped_sequence) { str('(') >> space? >> definitions_list.as(:definitions_list) >> space? >> str(')') }
52
+ rule(:special_sequence) { str('?') >> match('[^?]').repeat >> str('?') }
53
+ rule(:meta_identifier) { match('[a-zA-Z]') >> match('[a-zA-Z0-9 ]').repeat }
54
+ rule(:terminal_string) { single_quote_string | double_quote_string }
55
+ rule(:single_quote_string) { str("'") >> match("[^']").repeat(1) >> str("'") }
56
+ rule(:double_quote_string) { str('"') >> match('[^"]').repeat(1) >> str('"') }
57
+ rule(:integer) { match('[0-9]').repeat(1) }
58
+ rule(:space?) { (whitespace | comment).repeat }
59
+ rule(:whitespace) { match('\s') }
60
+ rule(:comment) { str('(*') >> (str('*)').absent? >> any).repeat >> str('*)') }
61
+ end
62
+ end
@@ -0,0 +1,39 @@
1
+ module Mahoujin
2
+ class Transform < Parslet::Transform
3
+ rule( terminal_string: simple(:token)) { Atoms::Terminal.new(token.to_s[1...-1]) }
4
+ rule( meta_identifier: simple(:token)) { Atoms::NonTerminal.new(token.to_s.rstrip) }
5
+ rule( special_sequence: simple(:token)) { Atoms::Prose.new(token.to_s[1...-1].strip) }
6
+ rule( grouped_sequence: simple(:atom)) { Atoms::Grouping.new(atom) }
7
+ rule(repeated_sequence: simple(:atom)) { Atoms::ZeroOrMoreRepetition.new(atom) }
8
+ rule(optional_sequence: simple(:atom)) { Atoms::Optional.new(atom) }
9
+
10
+ rule(primary: simple(:atom)) { atom }
11
+ rule(number_of_repetition: simple(:token), primary: simple(:atom)) do
12
+ Atoms::SpecificRepetition.new(atom, token.to_i)
13
+ end
14
+
15
+ rule(factor: simple(:atom)) { atom }
16
+ rule(factor: simple(:atom), exception: simple(:atom_ex)) do
17
+ Atoms::Exception.new("#{Transform.stringify(atom)} - #{Transform.stringify(atom_ex)}")
18
+ end
19
+
20
+ rule(term: simple(:atom)) { atom }
21
+ rule(single_definition: simple(:atom)) { atom }
22
+ rule(single_definition: sequence(:array)) { Atoms::Concatenation.new(array) }
23
+
24
+ rule(definitions_list: simple(:atom)) { atom }
25
+ rule(definitions_list: sequence(:array)) { Atoms::Choice.new(array) }
26
+
27
+ rule(meta_identifier: simple(:token), definitions_list: simple(:atom)) { Atoms::Rule.new(Atoms::RuleName.new(token.to_s.rstrip), atom) }
28
+ rule(meta_identifier: simple(:token), definitions_list: sequence(:array)) { Atoms::Rule.new(Atoms::RuleName.new(token.to_s.rstrip), Atoms::Choice.new(array)) }
29
+
30
+ rule(syntax_rule: simple(:atom)) { atom }
31
+ rule(syntax: simple(:atom)) { Atoms::Syntax.new(Array(atom)) }
32
+ rule(syntax: sequence(:array)) { Atoms::Syntax.new(array) }
33
+
34
+ def self.stringify(atom)
35
+ @stringify ||= Graphics::Stringify.new
36
+ @stringify.stringify(atom)
37
+ end
38
+ end
39
+ end
@@ -0,0 +1,3 @@
1
+ module Mahoujin
2
+ VERSION = '2.0.0'.freeze
3
+ end
@@ -0,0 +1,29 @@
1
+ lib = File.expand_path('../lib', __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require 'mahoujin/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'mahoujin'
7
+ spec.version = Mahoujin::VERSION
8
+ spec.author = 'Sou.K'
9
+ spec.email = 'souk.0x01f7@gmail.com'
10
+ spec.license = 'MIT'
11
+
12
+ spec.summary = 'Generate syntax diagram(aka railroad diagram) from EBNF specification'
13
+ spec.homepage = 'https://github.com/0x01f7/mahoujin'
14
+
15
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
16
+ spec.bindir = 'exe'
17
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
18
+ spec.require_paths = ['lib']
19
+
20
+ spec.add_runtime_dependency 'cairo', '~> 1.14.0'
21
+ spec.add_runtime_dependency 'parslet', '~> 1.7.0'
22
+
23
+ spec.add_development_dependency 'bundler', '~> 1.11.0'
24
+ spec.add_development_dependency 'rake', '~> 10.4.0'
25
+ spec.add_development_dependency 'rspec', '~> 3.3.0'
26
+ spec.add_development_dependency 'rubocop', '~> 0.35.0'
27
+ spec.add_development_dependency 'rubocop-rspec', '~> 1.3.0'
28
+ spec.add_development_dependency 'codeclimate-test-reporter', '~> 0.4.8'
29
+ end
@@ -0,0 +1,20 @@
1
+ syntax = syntax rule, {syntax rule};
2
+ syntax rule = meta identifier, '=', definitions list, ';';
3
+ definitions list = single definition, {'|', single definition};
4
+ single definition = term, {',', term};
5
+ term = factor, ['-', exception];
6
+ exception = factor;
7
+ factor = [integer, '*'], primary;
8
+ primary = optional sequence | repeated sequence
9
+ | grouped sequence | special sequence
10
+ | meta identifier | terminal string;
11
+ optional sequence = '[', definitions list, ']';
12
+ repeated sequence = '{', definitions list, '}';
13
+ grouped sequence = '(', definitions list, ')';
14
+ special sequence = '?', {character - '?'}, '?';
15
+ meta identifier = letter, {letter | decimal digit | ? ASCII space character ?};
16
+ terminal string = "'", character - "'", {character - "'"}, "'"
17
+ | '"', character - '"', {character - '"'}, '"';
18
+ integer = decimal digit, {decimal digit};
19
+ character = ? any character in ASCII alphabet characters ?;
20
+ decimal digit = ? any character in ASCII number characters ?;
@@ -0,0 +1,1558 @@
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="499.835812pt" height="2518.8pt" viewBox="0 0 499.835812 2518.8" version="1.1">
3
+ <defs>
4
+ <g>
5
+ <symbol overflow="visible" id="glyph0-0">
6
+ <path style="stroke:none;" d="M 1.671875 0 L 1.671875 -7.5 L 7.671875 -7.5 L 7.671875 0 Z M 1.859375 -0.1875 L 7.484375 -0.1875 L 7.484375 -7.3125 L 1.859375 -7.3125 Z M 1.859375 -0.1875 "/>
7
+ </symbol>
8
+ <symbol overflow="visible" id="glyph0-1">
9
+ <path style="stroke:none;" d="M 4.46875 -6 L 4.203125 -4.21875 L 3.984375 -4.21875 C 3.953125 -4.664062 3.804688 -5.015625 3.546875 -5.265625 C 3.296875 -5.523438 3.023438 -5.65625 2.734375 -5.65625 C 2.554688 -5.65625 2.40625 -5.597656 2.28125 -5.484375 C 2.164062 -5.378906 2.109375 -5.242188 2.109375 -5.078125 C 2.109375 -4.953125 2.132812 -4.828125 2.1875 -4.703125 C 2.238281 -4.585938 2.351562 -4.429688 2.53125 -4.234375 C 3.144531 -3.523438 3.519531 -3.035156 3.65625 -2.765625 C 3.789062 -2.503906 3.859375 -2.222656 3.859375 -1.921875 C 3.859375 -1.585938 3.78125 -1.273438 3.625 -0.984375 C 3.46875 -0.691406 3.234375 -0.453125 2.921875 -0.265625 C 2.609375 -0.0859375 2.285156 0 1.953125 0 C 1.722656 0 1.441406 0 1.109375 0 C 0.890625 0 0.726562 0 0.625 0 C 0.519531 0 0.441406 0 0.390625 0 C 0.335938 0 0.28125 0 0.21875 0 L 0 0 L 0.28125 -2.171875 L 0.46875 -2.171875 C 0.601562 -1.648438 0.726562 -1.273438 0.84375 -1.046875 C 0.96875 -0.828125 1.128906 -0.648438 1.328125 -0.515625 C 1.523438 -0.378906 1.71875 -0.3125 1.90625 -0.3125 C 2.125 -0.3125 2.300781 -0.382812 2.4375 -0.53125 C 2.582031 -0.675781 2.65625 -0.847656 2.65625 -1.046875 C 2.65625 -1.242188 2.609375 -1.4375 2.515625 -1.625 C 2.421875 -1.8125 2.207031 -2.09375 1.875 -2.46875 C 1.414062 -3.007812 1.113281 -3.421875 0.96875 -3.703125 C 0.875 -3.910156 0.828125 -4.144531 0.828125 -4.40625 C 0.828125 -4.863281 0.976562 -5.242188 1.28125 -5.546875 C 1.582031 -5.847656 2.015625 -6 2.578125 -6 C 2.816406 -6 3.113281 -6 3.46875 -6 C 3.644531 -6 3.785156 -6 3.890625 -6 C 4.035156 -6 4.15625 -6 4.25 -6 Z M 4.46875 -6 "/>
10
+ </symbol>
11
+ <symbol overflow="visible" id="glyph0-2">
12
+ <path style="stroke:none;" d="M 0.3125 -5.390625 L 2.109375 -6 C 2.253906 -5.800781 2.359375 -5.609375 2.421875 -5.421875 C 2.523438 -5.109375 2.597656 -4.675781 2.640625 -4.125 C 2.722656 -3.039062 2.78125 -1.882812 2.8125 -0.65625 C 3.226562 -1.28125 3.707031 -2.101562 4.25 -3.125 C 4.40625 -3.4375 4.484375 -3.722656 4.484375 -3.984375 C 4.484375 -4.160156 4.390625 -4.320312 4.203125 -4.46875 C 4.015625 -4.625 3.894531 -4.742188 3.84375 -4.828125 C 3.800781 -4.921875 3.78125 -5.035156 3.78125 -5.171875 C 3.78125 -5.390625 3.847656 -5.582031 3.984375 -5.75 C 4.128906 -5.914062 4.304688 -6 4.515625 -6 C 4.722656 -6 4.90625 -5.90625 5.0625 -5.71875 C 5.226562 -5.53125 5.3125 -5.3125 5.3125 -5.0625 C 5.3125 -4.78125 5.238281 -4.441406 5.09375 -4.046875 C 4.945312 -3.648438 4.601562 -2.984375 4.0625 -2.046875 C 3.375 -0.847656 2.695312 0.191406 2.03125 1.078125 C 1.601562 1.640625 1.257812 2.039062 1 2.28125 C 0.738281 2.53125 0.46875 2.726562 0.1875 2.875 C 0.0078125 2.957031 -0.15625 3 -0.3125 3 C -0.539062 3 -0.734375 2.910156 -0.890625 2.734375 C -1.046875 2.566406 -1.125 2.363281 -1.125 2.125 C -1.125 1.882812 -1.050781 1.679688 -0.90625 1.515625 C -0.769531 1.359375 -0.601562 1.28125 -0.40625 1.28125 C -0.164062 1.28125 0.0507812 1.414062 0.25 1.6875 C 0.382812 1.875 0.492188 1.96875 0.578125 1.96875 C 0.660156 1.96875 0.75 1.941406 0.84375 1.890625 C 0.957031 1.816406 1.117188 1.65625 1.328125 1.40625 C 1.347656 0.851562 1.359375 0.441406 1.359375 0.171875 C 1.359375 -0.210938 1.34375 -0.742188 1.3125 -1.421875 L 1.21875 -3.9375 C 1.1875 -4.394531 1.097656 -4.726562 0.953125 -4.9375 C 0.847656 -5.082031 0.707031 -5.15625 0.53125 -5.15625 C 0.457031 -5.15625 0.382812 -5.148438 0.3125 -5.140625 Z M 0.3125 -5.390625 "/>
13
+ </symbol>
14
+ <symbol overflow="visible" id="glyph0-3">
15
+ <path style="stroke:none;" d="M 3.203125 -6 L 2.484375 -3.21875 C 2.972656 -4.03125 3.335938 -4.582031 3.578125 -4.875 C 3.929688 -5.3125 4.234375 -5.609375 4.484375 -5.765625 C 4.742188 -5.921875 4.988281 -6 5.21875 -6 C 5.425781 -6 5.597656 -5.914062 5.734375 -5.75 C 5.878906 -5.582031 5.953125 -5.363281 5.953125 -5.09375 C 5.953125 -4.851562 5.90625 -4.5625 5.8125 -4.21875 L 5.0625 -1.453125 C 5 -1.210938 4.96875 -1.054688 4.96875 -0.984375 C 4.96875 -0.941406 4.984375 -0.898438 5.015625 -0.859375 C 5.046875 -0.828125 5.078125 -0.8125 5.109375 -0.8125 C 5.148438 -0.8125 5.191406 -0.828125 5.234375 -0.859375 C 5.367188 -0.984375 5.507812 -1.160156 5.65625 -1.390625 C 5.6875 -1.453125 5.738281 -1.546875 5.8125 -1.671875 L 6.046875 -1.515625 C 5.472656 -0.503906 4.867188 0 4.234375 0 C 3.992188 0 3.800781 -0.0664062 3.65625 -0.203125 C 3.519531 -0.347656 3.453125 -0.515625 3.453125 -0.703125 C 3.453125 -0.890625 3.5 -1.15625 3.59375 -1.5 L 4.328125 -4.21875 C 4.378906 -4.394531 4.40625 -4.523438 4.40625 -4.609375 C 4.40625 -4.660156 4.382812 -4.703125 4.34375 -4.734375 C 4.3125 -4.773438 4.273438 -4.796875 4.234375 -4.796875 C 4.085938 -4.796875 3.90625 -4.6875 3.6875 -4.46875 C 3.15625 -3.894531 2.632812 -3.046875 2.125 -1.921875 L 1.640625 0 L 0.15625 0 L 1.25 -4.140625 C 1.351562 -4.546875 1.40625 -4.835938 1.40625 -5.015625 C 1.40625 -5.085938 1.390625 -5.148438 1.359375 -5.203125 C 1.328125 -5.253906 1.273438 -5.289062 1.203125 -5.3125 C 1.140625 -5.34375 1.007812 -5.359375 0.8125 -5.359375 L 0.875 -5.609375 L 2.84375 -6 Z M 3.203125 -6 "/>
16
+ </symbol>
17
+ <symbol overflow="visible" id="glyph0-4">
18
+ <path style="stroke:none;" d="M 3.4375 -8 L 2.96875 -6 L 3.734375 -6 L 3.53125 -5.25 L 2.78125 -5.25 L 1.796875 -1.5 C 1.734375 -1.269531 1.703125 -1.09375 1.703125 -0.96875 C 1.703125 -0.914062 1.71875 -0.867188 1.75 -0.828125 C 1.789062 -0.785156 1.832031 -0.765625 1.875 -0.765625 C 1.9375 -0.765625 2.003906 -0.796875 2.078125 -0.859375 C 2.253906 -1.015625 2.460938 -1.273438 2.703125 -1.640625 L 2.90625 -1.5 C 2.644531 -0.988281 2.347656 -0.609375 2.015625 -0.359375 C 1.691406 -0.117188 1.375 0 1.0625 0 C 0.800781 0 0.597656 -0.0703125 0.453125 -0.21875 C 0.304688 -0.375 0.234375 -0.566406 0.234375 -0.796875 C 0.234375 -1.046875 0.28125 -1.367188 0.375 -1.765625 L 1.3125 -5.25 L 0.515625 -5.25 L 0.625 -5.78125 C 1.125 -6 1.546875 -6.257812 1.890625 -6.5625 C 2.234375 -6.863281 2.648438 -7.34375 3.140625 -8 Z M 3.4375 -8 "/>
19
+ </symbol>
20
+ <symbol overflow="visible" id="glyph0-5">
21
+ <path style="stroke:none;" d="M 5.75 -6 L 4.609375 -1.75 L 4.5 -1.234375 C 4.488281 -1.171875 4.484375 -1.125 4.484375 -1.09375 C 4.484375 -1.039062 4.5 -0.992188 4.53125 -0.953125 C 4.5625 -0.921875 4.59375 -0.90625 4.625 -0.90625 C 4.707031 -0.90625 4.820312 -0.96875 4.96875 -1.09375 C 5.03125 -1.144531 5.171875 -1.335938 5.390625 -1.671875 L 5.59375 -1.5625 C 5.320312 -1.03125 5.023438 -0.632812 4.703125 -0.375 C 4.390625 -0.125 4.050781 0 3.6875 0 C 3.46875 0 3.296875 -0.0625 3.171875 -0.1875 C 3.054688 -0.3125 3 -0.460938 3 -0.640625 C 3 -0.816406 3.0625 -1.117188 3.1875 -1.546875 L 3.328125 -2.0625 C 2.878906 -1.238281 2.445312 -0.648438 2.03125 -0.296875 C 1.789062 -0.0976562 1.53125 0 1.25 0 C 0.894531 0 0.632812 -0.15625 0.46875 -0.46875 C 0.3125 -0.789062 0.234375 -1.148438 0.234375 -1.546875 C 0.234375 -2.140625 0.398438 -2.816406 0.734375 -3.578125 C 1.078125 -4.347656 1.519531 -4.960938 2.0625 -5.421875 C 2.507812 -5.804688 2.929688 -6 3.328125 -6 C 3.546875 -6 3.722656 -5.925781 3.859375 -5.78125 C 3.992188 -5.644531 4.09375 -5.394531 4.15625 -5.03125 L 4.359375 -6 Z M 3.875 -4.703125 C 3.875 -5.046875 3.828125 -5.289062 3.734375 -5.4375 C 3.660156 -5.539062 3.5625 -5.59375 3.4375 -5.59375 C 3.320312 -5.59375 3.195312 -5.53125 3.0625 -5.40625 C 2.800781 -5.144531 2.519531 -4.617188 2.21875 -3.828125 C 1.914062 -3.035156 1.765625 -2.351562 1.765625 -1.78125 C 1.765625 -1.550781 1.796875 -1.390625 1.859375 -1.296875 C 1.929688 -1.203125 2.007812 -1.15625 2.09375 -1.15625 C 2.269531 -1.15625 2.445312 -1.257812 2.625 -1.46875 C 2.882812 -1.78125 3.117188 -2.160156 3.328125 -2.609375 C 3.691406 -3.398438 3.875 -4.097656 3.875 -4.703125 Z M 3.875 -4.703125 "/>
22
+ </symbol>
23
+ <symbol overflow="visible" id="glyph0-6">
24
+ <path style="stroke:none;" d="M 0.546875 -5.609375 L 2.59375 -6 C 2.957031 -5.363281 3.21875 -4.671875 3.375 -3.921875 C 3.757812 -4.535156 4.050781 -4.960938 4.25 -5.203125 C 4.507812 -5.523438 4.722656 -5.738281 4.890625 -5.84375 C 5.054688 -5.945312 5.238281 -6 5.4375 -6 C 5.644531 -6 5.804688 -5.929688 5.921875 -5.796875 C 6.035156 -5.671875 6.09375 -5.5 6.09375 -5.28125 C 6.09375 -5.070312 6.035156 -4.898438 5.921875 -4.765625 C 5.804688 -4.640625 5.664062 -4.578125 5.5 -4.578125 C 5.375 -4.578125 5.226562 -4.597656 5.0625 -4.640625 C 4.90625 -4.691406 4.796875 -4.71875 4.734375 -4.71875 C 4.566406 -4.71875 4.410156 -4.660156 4.265625 -4.546875 C 4.054688 -4.378906 3.804688 -4.019531 3.515625 -3.46875 C 3.847656 -2.226562 4.113281 -1.472656 4.3125 -1.203125 C 4.425781 -1.046875 4.546875 -0.96875 4.671875 -0.96875 C 4.765625 -0.96875 4.847656 -0.992188 4.921875 -1.046875 C 5.035156 -1.140625 5.210938 -1.363281 5.453125 -1.71875 L 5.65625 -1.59375 C 5.3125 -0.976562 4.976562 -0.546875 4.65625 -0.296875 C 4.40625 -0.0976562 4.160156 0 3.921875 0 C 3.671875 0 3.460938 -0.0625 3.296875 -0.1875 C 3.128906 -0.3125 2.976562 -0.507812 2.84375 -0.78125 C 2.71875 -1.050781 2.566406 -1.488281 2.390625 -2.09375 C 1.929688 -1.457031 1.570312 -0.992188 1.3125 -0.703125 C 1.050781 -0.421875 0.832031 -0.234375 0.65625 -0.140625 C 0.488281 -0.046875 0.3125 0 0.125 0 C -0.0820312 0 -0.242188 -0.0625 -0.359375 -0.1875 C -0.484375 -0.320312 -0.546875 -0.492188 -0.546875 -0.703125 C -0.546875 -0.921875 -0.476562 -1.101562 -0.34375 -1.25 C -0.21875 -1.394531 -0.0546875 -1.46875 0.140625 -1.46875 C 0.242188 -1.46875 0.363281 -1.429688 0.5 -1.359375 C 0.695312 -1.253906 0.835938 -1.203125 0.921875 -1.203125 C 1.035156 -1.203125 1.132812 -1.226562 1.21875 -1.28125 C 1.34375 -1.34375 1.492188 -1.476562 1.671875 -1.6875 C 1.773438 -1.8125 1.976562 -2.082031 2.28125 -2.5 C 1.90625 -3.96875 1.609375 -4.847656 1.390625 -5.140625 C 1.265625 -5.316406 1.097656 -5.40625 0.890625 -5.40625 C 0.785156 -5.40625 0.65625 -5.390625 0.5 -5.359375 Z M 0.546875 -5.609375 "/>
25
+ </symbol>
26
+ <symbol overflow="visible" id="glyph0-7">
27
+ <path style="stroke:none;" d=""/>
28
+ </symbol>
29
+ <symbol overflow="visible" id="glyph0-8">
30
+ <path style="stroke:none;" d="M 2.84375 -6 L 1.953125 -2.359375 C 2.679688 -4.128906 3.226562 -5.21875 3.59375 -5.625 C 3.8125 -5.875 4.039062 -6 4.28125 -6 C 4.445312 -6 4.578125 -5.929688 4.671875 -5.796875 C 4.773438 -5.660156 4.828125 -5.472656 4.828125 -5.234375 C 4.828125 -4.816406 4.734375 -4.46875 4.546875 -4.1875 C 4.429688 -4 4.300781 -3.90625 4.15625 -3.90625 C 4 -3.90625 3.878906 -3.984375 3.796875 -4.140625 C 3.722656 -4.304688 3.671875 -4.398438 3.640625 -4.421875 C 3.609375 -4.453125 3.578125 -4.46875 3.546875 -4.46875 C 3.503906 -4.46875 3.460938 -4.457031 3.421875 -4.4375 C 3.335938 -4.382812 3.222656 -4.253906 3.078125 -4.046875 C 2.941406 -3.847656 2.769531 -3.515625 2.5625 -3.046875 C 2.363281 -2.578125 2.207031 -2.179688 2.09375 -1.859375 C 1.976562 -1.535156 1.820312 -0.914062 1.625 0 L 0.203125 0 L 1.171875 -4.28125 C 1.242188 -4.601562 1.28125 -4.816406 1.28125 -4.921875 C 1.28125 -5.035156 1.257812 -5.125 1.21875 -5.1875 C 1.1875 -5.25 1.132812 -5.296875 1.0625 -5.328125 C 1 -5.359375 0.867188 -5.375 0.671875 -5.375 L 0.71875 -5.5625 L 2.484375 -6 Z M 2.84375 -6 "/>
31
+ </symbol>
32
+ <symbol overflow="visible" id="glyph0-9">
33
+ <path style="stroke:none;" d="M 3.1875 -6 L 2.046875 -1.765625 C 1.992188 -1.566406 1.96875 -1.429688 1.96875 -1.359375 C 1.96875 -1.328125 1.984375 -1.300781 2.015625 -1.28125 C 2.046875 -1.238281 2.082031 -1.21875 2.125 -1.21875 C 2.300781 -1.21875 2.539062 -1.394531 2.84375 -1.75 C 3.269531 -2.269531 3.722656 -3.019531 4.203125 -4 L 4.734375 -6 L 6.21875 -6 L 5.09375 -1.734375 C 5 -1.367188 4.953125 -1.160156 4.953125 -1.109375 C 4.953125 -1.078125 4.960938 -1.039062 4.984375 -1 C 5.015625 -0.96875 5.046875 -0.953125 5.078125 -0.953125 C 5.128906 -0.953125 5.179688 -0.976562 5.234375 -1.03125 C 5.378906 -1.15625 5.566406 -1.40625 5.796875 -1.78125 L 6 -1.625 C 5.457031 -0.539062 4.859375 0 4.203125 0 C 3.960938 0 3.769531 -0.0664062 3.625 -0.203125 C 3.488281 -0.335938 3.421875 -0.519531 3.421875 -0.75 C 3.421875 -0.976562 3.46875 -1.273438 3.5625 -1.640625 L 3.859375 -2.734375 C 3.347656 -1.921875 2.976562 -1.367188 2.75 -1.078125 C 2.394531 -0.648438 2.097656 -0.363281 1.859375 -0.21875 C 1.617188 -0.0703125 1.390625 0 1.171875 0 C 0.960938 0 0.78125 -0.0820312 0.625 -0.25 C 0.476562 -0.425781 0.40625 -0.644531 0.40625 -0.90625 C 0.40625 -1.125 0.457031 -1.421875 0.5625 -1.796875 L 1.21875 -4.40625 C 1.332031 -4.820312 1.390625 -5.101562 1.390625 -5.25 C 1.390625 -5.320312 1.375 -5.378906 1.34375 -5.421875 C 1.3125 -5.472656 1.257812 -5.507812 1.1875 -5.53125 C 1.113281 -5.5625 0.976562 -5.578125 0.78125 -5.578125 L 0.84375 -5.75 L 2.84375 -6 Z M 3.1875 -6 "/>
34
+ </symbol>
35
+ <symbol overflow="visible" id="glyph0-10">
36
+ <path style="stroke:none;" d="M 3.796875 -9 L 1.859375 -1.84375 C 1.742188 -1.425781 1.6875 -1.160156 1.6875 -1.046875 C 1.6875 -0.992188 1.703125 -0.945312 1.734375 -0.90625 C 1.765625 -0.863281 1.800781 -0.84375 1.84375 -0.84375 C 1.914062 -0.84375 1.984375 -0.875 2.046875 -0.9375 C 2.234375 -1.09375 2.441406 -1.367188 2.671875 -1.765625 L 2.90625 -1.65625 C 2.53125 -1.019531 2.164062 -0.566406 1.8125 -0.296875 C 1.5625 -0.0976562 1.296875 0 1.015625 0 C 0.765625 0 0.5625 -0.0703125 0.40625 -0.21875 C 0.25 -0.375 0.171875 -0.554688 0.171875 -0.765625 C 0.171875 -0.929688 0.21875 -1.1875 0.3125 -1.53125 L 1.90625 -7.375 C 1.988281 -7.707031 2.03125 -7.921875 2.03125 -8.015625 C 2.03125 -8.117188 1.988281 -8.203125 1.90625 -8.265625 C 1.789062 -8.347656 1.625 -8.390625 1.40625 -8.390625 L 1.46875 -8.640625 L 3.453125 -9 Z M 3.796875 -9 "/>
37
+ </symbol>
38
+ <symbol overflow="visible" id="glyph0-11">
39
+ <path style="stroke:none;" d="M 1.875 -2.546875 C 1.84375 -2.273438 1.828125 -2.054688 1.828125 -1.890625 C 1.828125 -1.578125 1.910156 -1.328125 2.078125 -1.140625 C 2.242188 -0.953125 2.472656 -0.859375 2.765625 -0.859375 C 3.035156 -0.859375 3.304688 -0.925781 3.578125 -1.0625 C 3.859375 -1.207031 4.179688 -1.457031 4.546875 -1.8125 L 4.71875 -1.640625 C 4.269531 -1.046875 3.832031 -0.625 3.40625 -0.375 C 2.976562 -0.125 2.507812 0 2 0 C 1.34375 0 0.890625 -0.164062 0.640625 -0.5 C 0.390625 -0.84375 0.265625 -1.234375 0.265625 -1.671875 C 0.265625 -2.359375 0.453125 -3.039062 0.828125 -3.71875 C 1.203125 -4.40625 1.707031 -4.957031 2.34375 -5.375 C 2.988281 -5.789062 3.632812 -6 4.28125 -6 C 4.613281 -6 4.863281 -5.910156 5.03125 -5.734375 C 5.195312 -5.566406 5.28125 -5.359375 5.28125 -5.109375 C 5.28125 -4.804688 5.195312 -4.507812 5.03125 -4.21875 C 4.800781 -3.832031 4.515625 -3.519531 4.171875 -3.28125 C 3.828125 -3.039062 3.445312 -2.863281 3.03125 -2.75 C 2.738281 -2.65625 2.351562 -2.585938 1.875 -2.546875 Z M 1.921875 -2.765625 C 2.265625 -2.816406 2.53125 -2.890625 2.71875 -2.984375 C 2.914062 -3.085938 3.101562 -3.242188 3.28125 -3.453125 C 3.46875 -3.671875 3.625 -3.941406 3.75 -4.265625 C 3.882812 -4.585938 3.953125 -4.890625 3.953125 -5.171875 C 3.953125 -5.296875 3.921875 -5.390625 3.859375 -5.453125 C 3.804688 -5.523438 3.734375 -5.5625 3.640625 -5.5625 C 3.453125 -5.5625 3.238281 -5.421875 3 -5.140625 C 2.570312 -4.609375 2.210938 -3.816406 1.921875 -2.765625 Z M 1.921875 -2.765625 "/>
40
+ </symbol>
41
+ <symbol overflow="visible" id="glyph0-12">
42
+ <path style="stroke:none;" d="M 3.1875 -6 L 2.4375 -3.21875 C 2.9375 -4.070312 3.304688 -4.644531 3.546875 -4.9375 C 3.878906 -5.375 4.15625 -5.660156 4.375 -5.796875 C 4.601562 -5.929688 4.828125 -6 5.046875 -6 C 5.296875 -6 5.476562 -5.910156 5.59375 -5.734375 C 5.707031 -5.566406 5.765625 -5.382812 5.765625 -5.1875 C 5.765625 -4.976562 5.710938 -4.664062 5.609375 -4.25 L 5.34375 -3.21875 C 5.851562 -4.070312 6.21875 -4.644531 6.4375 -4.9375 C 6.78125 -5.375 7.082031 -5.671875 7.34375 -5.828125 C 7.507812 -5.941406 7.695312 -6 7.90625 -6 C 8.101562 -6 8.269531 -5.921875 8.40625 -5.765625 C 8.550781 -5.609375 8.625 -5.410156 8.625 -5.171875 C 8.625 -4.890625 8.566406 -4.53125 8.453125 -4.09375 L 7.796875 -1.6875 C 7.703125 -1.320312 7.65625 -1.085938 7.65625 -0.984375 C 7.65625 -0.953125 7.664062 -0.921875 7.6875 -0.890625 C 7.71875 -0.859375 7.75 -0.84375 7.78125 -0.84375 C 7.820312 -0.84375 7.859375 -0.859375 7.890625 -0.890625 C 8.023438 -1.015625 8.171875 -1.195312 8.328125 -1.4375 C 8.367188 -1.488281 8.421875 -1.570312 8.484375 -1.6875 L 8.6875 -1.53125 C 8.414062 -1.007812 8.117188 -0.625 7.796875 -0.375 C 7.472656 -0.125 7.175781 0 6.90625 0 C 6.664062 0 6.472656 -0.0703125 6.328125 -0.21875 C 6.191406 -0.363281 6.125 -0.53125 6.125 -0.71875 C 6.125 -0.90625 6.171875 -1.179688 6.265625 -1.546875 L 6.921875 -4.03125 C 7.015625 -4.363281 7.0625 -4.578125 7.0625 -4.671875 C 7.0625 -4.703125 7.046875 -4.726562 7.015625 -4.75 C 6.992188 -4.78125 6.96875 -4.796875 6.9375 -4.796875 C 6.882812 -4.796875 6.832031 -4.785156 6.78125 -4.765625 C 6.707031 -4.710938 6.59375 -4.597656 6.4375 -4.421875 C 6.289062 -4.242188 6.070312 -3.921875 5.78125 -3.453125 C 5.488281 -2.984375 5.285156 -2.613281 5.171875 -2.34375 C 5.066406 -2.082031 4.957031 -1.742188 4.84375 -1.328125 L 4.484375 0 L 3 0 L 4.109375 -4.21875 C 4.160156 -4.445312 4.1875 -4.601562 4.1875 -4.6875 C 4.1875 -4.71875 4.171875 -4.742188 4.140625 -4.765625 C 4.117188 -4.785156 4.097656 -4.796875 4.078125 -4.796875 C 3.929688 -4.796875 3.703125 -4.585938 3.390625 -4.171875 C 2.910156 -3.523438 2.476562 -2.753906 2.09375 -1.859375 L 1.609375 0 L 0.125 0 L 1.21875 -4.15625 C 1.332031 -4.5625 1.390625 -4.851562 1.390625 -5.03125 C 1.390625 -5.101562 1.375 -5.160156 1.34375 -5.203125 C 1.3125 -5.253906 1.257812 -5.289062 1.1875 -5.3125 C 1.113281 -5.34375 0.976562 -5.359375 0.78125 -5.359375 L 0.84375 -5.609375 L 2.84375 -6 Z M 3.1875 -6 "/>
43
+ </symbol>
44
+ <symbol overflow="visible" id="glyph0-13">
45
+ <path style="stroke:none;" d="M 2.703125 -9 C 2.941406 -9 3.144531 -8.90625 3.3125 -8.71875 C 3.476562 -8.53125 3.5625 -8.304688 3.5625 -8.046875 C 3.5625 -7.785156 3.472656 -7.5625 3.296875 -7.375 C 3.128906 -7.1875 2.929688 -7.09375 2.703125 -7.09375 C 2.460938 -7.09375 2.257812 -7.1875 2.09375 -7.375 C 1.925781 -7.5625 1.84375 -7.785156 1.84375 -8.046875 C 1.84375 -8.304688 1.925781 -8.53125 2.09375 -8.71875 C 2.257812 -8.90625 2.460938 -9 2.703125 -9 Z M 3.0625 -6 L 1.859375 -1.546875 C 1.796875 -1.296875 1.765625 -1.132812 1.765625 -1.0625 C 1.765625 -1.019531 1.78125 -0.976562 1.8125 -0.9375 C 1.84375 -0.894531 1.878906 -0.875 1.921875 -0.875 C 1.984375 -0.875 2.050781 -0.90625 2.125 -0.96875 C 2.300781 -1.113281 2.507812 -1.390625 2.75 -1.796875 L 2.953125 -1.671875 C 2.359375 -0.554688 1.734375 0 1.078125 0 C 0.816406 0 0.609375 -0.078125 0.453125 -0.234375 C 0.304688 -0.390625 0.234375 -0.582031 0.234375 -0.8125 C 0.234375 -0.96875 0.269531 -1.164062 0.34375 -1.40625 L 1.15625 -4.375 C 1.226562 -4.664062 1.265625 -4.890625 1.265625 -5.046875 C 1.265625 -5.128906 1.226562 -5.207031 1.15625 -5.28125 C 1.082031 -5.351562 0.984375 -5.390625 0.859375 -5.390625 C 0.796875 -5.390625 0.722656 -5.390625 0.640625 -5.390625 L 0.71875 -5.65625 L 2.703125 -6 Z M 3.0625 -6 "/>
46
+ </symbol>
47
+ <symbol overflow="visible" id="glyph0-14">
48
+ <path style="stroke:none;" d="M 6.546875 -9 L 4.640625 -1.90625 C 4.515625 -1.457031 4.453125 -1.1875 4.453125 -1.09375 C 4.453125 -1.050781 4.46875 -1.007812 4.5 -0.96875 C 4.53125 -0.9375 4.566406 -0.921875 4.609375 -0.921875 C 4.671875 -0.921875 4.742188 -0.957031 4.828125 -1.03125 C 4.972656 -1.144531 5.148438 -1.363281 5.359375 -1.6875 L 5.578125 -1.5625 C 5.023438 -0.519531 4.414062 0 3.75 0 C 3.519531 0 3.34375 -0.0625 3.21875 -0.1875 C 3.09375 -0.320312 3.03125 -0.5 3.03125 -0.71875 C 3.03125 -0.914062 3.078125 -1.195312 3.171875 -1.5625 L 3.359375 -2.203125 C 2.867188 -1.273438 2.441406 -0.660156 2.078125 -0.359375 C 1.804688 -0.117188 1.539062 0 1.28125 0 C 0.988281 0 0.738281 -0.125 0.53125 -0.375 C 0.332031 -0.632812 0.234375 -1.007812 0.234375 -1.5 C 0.234375 -2.125 0.363281 -2.738281 0.625 -3.34375 C 0.882812 -3.945312 1.179688 -4.453125 1.515625 -4.859375 C 1.859375 -5.265625 2.179688 -5.554688 2.484375 -5.734375 C 2.796875 -5.910156 3.097656 -6 3.390625 -6 C 3.546875 -6 3.679688 -5.960938 3.796875 -5.890625 C 3.921875 -5.816406 4.054688 -5.6875 4.203125 -5.5 L 4.640625 -7.125 C 4.742188 -7.53125 4.796875 -7.820312 4.796875 -8 C 4.796875 -8.101562 4.757812 -8.191406 4.6875 -8.265625 C 4.625 -8.335938 4.53125 -8.375 4.40625 -8.375 C 4.351562 -8.375 4.285156 -8.367188 4.203125 -8.359375 L 4.265625 -8.609375 L 6.1875 -9 Z M 3.96875 -4.90625 C 3.96875 -5.15625 3.921875 -5.335938 3.828125 -5.453125 C 3.734375 -5.566406 3.625 -5.625 3.5 -5.625 C 3.375 -5.625 3.238281 -5.554688 3.09375 -5.421875 C 2.8125 -5.148438 2.519531 -4.613281 2.21875 -3.8125 C 1.914062 -3.007812 1.765625 -2.335938 1.765625 -1.796875 C 1.765625 -1.585938 1.796875 -1.4375 1.859375 -1.34375 C 1.929688 -1.25 2.007812 -1.203125 2.09375 -1.203125 C 2.226562 -1.203125 2.363281 -1.269531 2.5 -1.40625 C 2.832031 -1.71875 3.160156 -2.257812 3.484375 -3.03125 C 3.804688 -3.800781 3.96875 -4.425781 3.96875 -4.90625 Z M 3.96875 -4.90625 "/>
49
+ </symbol>
50
+ <symbol overflow="visible" id="glyph0-15">
51
+ <path style="stroke:none;" d="M 3.140625 -5.25 L 2.453125 -2.125 C 2.128906 -0.65625 1.816406 0.40625 1.515625 1.0625 C 1.210938 1.726562 0.851562 2.21875 0.4375 2.53125 C 0.03125 2.84375 -0.429688 3 -0.953125 3 C -1.285156 3 -1.53125 2.925781 -1.6875 2.78125 C -1.84375 2.644531 -1.921875 2.484375 -1.921875 2.296875 C -1.921875 2.117188 -1.851562 1.960938 -1.71875 1.828125 C -1.59375 1.703125 -1.425781 1.640625 -1.21875 1.640625 C -1.039062 1.640625 -0.90625 1.6875 -0.8125 1.78125 C -0.71875 1.882812 -0.671875 2.015625 -0.671875 2.171875 C -0.671875 2.304688 -0.695312 2.40625 -0.75 2.46875 C -0.8125 2.539062 -0.84375 2.585938 -0.84375 2.609375 L -0.828125 2.65625 C -0.796875 2.675781 -0.765625 2.6875 -0.734375 2.6875 C -0.617188 2.6875 -0.519531 2.644531 -0.4375 2.5625 C -0.226562 2.34375 -0.0703125 2.085938 0.03125 1.796875 C 0.09375 1.585938 0.222656 1.035156 0.421875 0.140625 L 1.625 -5.25 L 0.8125 -5.25 L 1 -6 C 1.289062 -6 1.503906 -6.035156 1.640625 -6.109375 C 1.773438 -6.191406 1.914062 -6.378906 2.0625 -6.671875 C 2.488281 -7.503906 2.941406 -8.097656 3.421875 -8.453125 C 3.898438 -8.816406 4.429688 -9 5.015625 -9 C 5.390625 -9 5.660156 -8.921875 5.828125 -8.765625 C 6.003906 -8.617188 6.09375 -8.425781 6.09375 -8.1875 C 6.09375 -7.96875 6.035156 -7.796875 5.921875 -7.671875 C 5.804688 -7.546875 5.664062 -7.484375 5.5 -7.484375 C 5.34375 -7.484375 5.210938 -7.535156 5.109375 -7.640625 C 5.003906 -7.742188 4.953125 -7.863281 4.953125 -8 C 4.953125 -8.101562 4.984375 -8.210938 5.046875 -8.328125 C 5.117188 -8.441406 5.15625 -8.519531 5.15625 -8.5625 C 5.15625 -8.601562 5.140625 -8.632812 5.109375 -8.65625 C 5.078125 -8.6875 5.039062 -8.703125 5 -8.703125 C 4.757812 -8.703125 4.519531 -8.554688 4.28125 -8.265625 C 3.882812 -7.785156 3.566406 -7.03125 3.328125 -6 L 4.171875 -6 L 3.96875 -5.25 Z M 3.140625 -5.25 "/>
52
+ </symbol>
53
+ <symbol overflow="visible" id="glyph0-16">
54
+ <path style="stroke:none;" d="M 3.9375 -6 C 4.25 -6 4.539062 -5.921875 4.8125 -5.765625 C 5.082031 -5.609375 5.285156 -5.394531 5.421875 -5.125 C 5.566406 -4.863281 5.640625 -4.566406 5.640625 -4.234375 C 5.640625 -3.554688 5.460938 -2.878906 5.109375 -2.203125 C 4.753906 -1.523438 4.285156 -0.988281 3.703125 -0.59375 C 3.128906 -0.195312 2.550781 0 1.96875 0 C 1.4375 0 1.023438 -0.164062 0.734375 -0.5 C 0.441406 -0.84375 0.296875 -1.257812 0.296875 -1.75 C 0.296875 -2.332031 0.398438 -2.878906 0.609375 -3.390625 C 0.828125 -3.898438 1.101562 -4.34375 1.4375 -4.71875 C 1.78125 -5.09375 2.164062 -5.398438 2.59375 -5.640625 C 3.03125 -5.878906 3.476562 -6 3.9375 -6 Z M 3.703125 -5.65625 C 3.492188 -5.65625 3.320312 -5.585938 3.1875 -5.453125 C 2.914062 -5.191406 2.609375 -4.578125 2.265625 -3.609375 C 1.921875 -2.648438 1.75 -1.785156 1.75 -1.015625 C 1.75 -0.816406 1.800781 -0.65625 1.90625 -0.53125 C 2.019531 -0.40625 2.148438 -0.34375 2.296875 -0.34375 C 2.453125 -0.34375 2.585938 -0.394531 2.703125 -0.5 C 2.867188 -0.644531 3.078125 -0.976562 3.328125 -1.5 C 3.578125 -2.03125 3.78125 -2.609375 3.9375 -3.234375 C 4.101562 -3.859375 4.1875 -4.441406 4.1875 -4.984375 C 4.1875 -5.191406 4.132812 -5.351562 4.03125 -5.46875 C 3.9375 -5.59375 3.828125 -5.65625 3.703125 -5.65625 Z M 3.703125 -5.65625 "/>
55
+ </symbol>
56
+ <symbol overflow="visible" id="glyph0-17">
57
+ <path style="stroke:none;" d="M 4.640625 -5.84375 L 6.203125 -5.84375 L 6.015625 -5.15625 L 5.203125 -5.15625 C 5.328125 -4.90625 5.390625 -4.671875 5.390625 -4.453125 C 5.390625 -4.078125 5.289062 -3.726562 5.09375 -3.40625 C 4.90625 -3.082031 4.625 -2.820312 4.25 -2.625 C 3.875 -2.4375 3.453125 -2.34375 2.984375 -2.34375 C 2.867188 -2.34375 2.738281 -2.351562 2.59375 -2.375 C 2.445312 -2.394531 2.285156 -2.421875 2.109375 -2.453125 C 1.847656 -2.296875 1.6875 -2.171875 1.625 -2.078125 C 1.570312 -2.015625 1.546875 -1.945312 1.546875 -1.875 C 1.546875 -1.78125 1.578125 -1.707031 1.640625 -1.65625 C 1.742188 -1.539062 1.894531 -1.457031 2.09375 -1.40625 C 2.882812 -1.207031 3.410156 -1.035156 3.671875 -0.890625 C 4.015625 -0.722656 4.273438 -0.5 4.453125 -0.21875 C 4.628906 0.0507812 4.71875 0.382812 4.71875 0.78125 C 4.71875 1.375 4.492188 1.890625 4.046875 2.328125 C 3.597656 2.773438 2.90625 3 1.96875 3 C 1.019531 3 0.316406 2.8125 -0.140625 2.4375 C -0.460938 2.15625 -0.625 1.828125 -0.625 1.453125 C -0.625 1.160156 -0.515625 0.890625 -0.296875 0.640625 C -0.0859375 0.398438 0.363281 0.1875 1.0625 0 C 0.820312 -0.15625 0.664062 -0.300781 0.59375 -0.4375 C 0.476562 -0.625 0.421875 -0.804688 0.421875 -0.984375 C 0.421875 -1.304688 0.523438 -1.585938 0.734375 -1.828125 C 0.941406 -2.066406 1.289062 -2.304688 1.78125 -2.546875 C 1.394531 -2.703125 1.117188 -2.898438 0.953125 -3.140625 C 0.785156 -3.378906 0.703125 -3.660156 0.703125 -3.984375 C 0.703125 -4.328125 0.800781 -4.648438 1 -4.953125 C 1.207031 -5.265625 1.507812 -5.515625 1.90625 -5.703125 C 2.3125 -5.898438 2.773438 -6 3.296875 -6 C 3.628906 -6 3.921875 -5.984375 4.171875 -5.953125 C 4.304688 -5.929688 4.460938 -5.894531 4.640625 -5.84375 Z M 3.421875 -5.671875 C 3.222656 -5.671875 3.0625 -5.609375 2.9375 -5.484375 C 2.71875 -5.296875 2.53125 -4.976562 2.375 -4.53125 C 2.21875 -4.09375 2.140625 -3.671875 2.140625 -3.265625 C 2.140625 -3.085938 2.191406 -2.941406 2.296875 -2.828125 C 2.410156 -2.710938 2.550781 -2.65625 2.71875 -2.65625 C 2.875 -2.65625 3.015625 -2.710938 3.140625 -2.828125 C 3.359375 -3.035156 3.550781 -3.367188 3.71875 -3.828125 C 3.882812 -4.296875 3.96875 -4.722656 3.96875 -5.109375 C 3.96875 -5.273438 3.910156 -5.410156 3.796875 -5.515625 C 3.691406 -5.617188 3.566406 -5.671875 3.421875 -5.671875 Z M 1.390625 0.40625 C 1.023438 0.570312 0.773438 0.742188 0.640625 0.921875 C 0.503906 1.109375 0.4375 1.3125 0.4375 1.53125 C 0.4375 1.8125 0.566406 2.0625 0.828125 2.28125 C 1.097656 2.507812 1.523438 2.625 2.109375 2.625 C 2.597656 2.625 2.953125 2.523438 3.171875 2.328125 C 3.390625 2.140625 3.5 1.910156 3.5 1.640625 C 3.5 1.410156 3.398438 1.222656 3.203125 1.078125 C 3.003906 0.929688 2.617188 0.78125 2.046875 0.625 C 1.773438 0.539062 1.554688 0.46875 1.390625 0.40625 Z M 1.390625 0.40625 "/>
58
+ </symbol>
59
+ <symbol overflow="visible" id="glyph0-18">
60
+ <path style="stroke:none;" d="M 4.5 -1.71875 L 4.6875 -1.546875 C 4.300781 -1.054688 3.925781 -0.691406 3.5625 -0.453125 C 3.070312 -0.148438 2.566406 0 2.046875 0 C 1.691406 0 1.378906 -0.078125 1.109375 -0.234375 C 0.835938 -0.398438 0.632812 -0.628906 0.5 -0.921875 C 0.375 -1.210938 0.3125 -1.507812 0.3125 -1.8125 C 0.3125 -2.5 0.484375 -3.171875 0.828125 -3.828125 C 1.179688 -4.492188 1.644531 -5.019531 2.21875 -5.40625 C 2.789062 -5.800781 3.347656 -6 3.890625 -6 C 4.335938 -6 4.671875 -5.894531 4.890625 -5.6875 C 5.117188 -5.476562 5.234375 -5.222656 5.234375 -4.921875 C 5.234375 -4.640625 5.144531 -4.398438 4.96875 -4.203125 C 4.800781 -4.003906 4.613281 -3.90625 4.40625 -3.90625 C 4.226562 -3.90625 4.078125 -3.96875 3.953125 -4.09375 C 3.835938 -4.21875 3.78125 -4.363281 3.78125 -4.53125 C 3.78125 -4.75 3.890625 -4.945312 4.109375 -5.125 C 4.242188 -5.226562 4.3125 -5.328125 4.3125 -5.421875 C 4.3125 -5.492188 4.285156 -5.550781 4.234375 -5.59375 C 4.148438 -5.664062 4.046875 -5.703125 3.921875 -5.703125 C 3.597656 -5.703125 3.289062 -5.554688 3 -5.265625 C 2.613281 -4.890625 2.316406 -4.414062 2.109375 -3.84375 C 1.910156 -3.28125 1.8125 -2.742188 1.8125 -2.234375 C 1.8125 -1.816406 1.914062 -1.488281 2.125 -1.25 C 2.332031 -1.007812 2.578125 -0.890625 2.859375 -0.890625 C 3.109375 -0.890625 3.378906 -0.957031 3.671875 -1.09375 C 3.960938 -1.226562 4.238281 -1.4375 4.5 -1.71875 Z M 4.5 -1.71875 "/>
61
+ </symbol>
62
+ <symbol overflow="visible" id="glyph0-19">
63
+ <path style="stroke:none;" d="M 0.734375 -5.640625 L 2.671875 -6 L 3.015625 -6 L 2.75 -4.984375 C 3.164062 -5.378906 3.503906 -5.644531 3.765625 -5.78125 C 4.023438 -5.925781 4.285156 -6 4.546875 -6 C 4.910156 -6 5.191406 -5.847656 5.390625 -5.546875 C 5.585938 -5.242188 5.6875 -4.867188 5.6875 -4.421875 C 5.6875 -3.222656 5.300781 -2.164062 4.53125 -1.25 C 3.84375 -0.414062 3.09375 0 2.28125 0 C 2.132812 0 2.007812 -0.015625 1.90625 -0.046875 C 1.800781 -0.078125 1.660156 -0.144531 1.484375 -0.25 L 1.171875 1.0625 C 1.066406 1.550781 1.015625 1.914062 1.015625 2.15625 C 1.015625 2.3125 1.054688 2.4375 1.140625 2.53125 C 1.222656 2.625 1.421875 2.703125 1.734375 2.765625 L 1.6875 3 L -1.46875 3 L -1.40625 2.765625 C -1.15625 2.765625 -0.945312 2.675781 -0.78125 2.5 C -0.613281 2.332031 -0.457031 1.960938 -0.3125 1.390625 L 1.109375 -4.203125 C 1.210938 -4.617188 1.265625 -4.914062 1.265625 -5.09375 C 1.265625 -5.164062 1.25 -5.222656 1.21875 -5.265625 C 1.1875 -5.304688 1.140625 -5.335938 1.078125 -5.359375 C 1.015625 -5.378906 0.875 -5.390625 0.65625 -5.390625 Z M 1.640625 -0.84375 C 1.753906 -0.632812 1.859375 -0.492188 1.953125 -0.421875 C 2.046875 -0.359375 2.15625 -0.328125 2.28125 -0.328125 C 2.40625 -0.328125 2.523438 -0.363281 2.640625 -0.4375 C 2.765625 -0.507812 2.914062 -0.65625 3.09375 -0.875 C 3.269531 -1.09375 3.4375 -1.375 3.59375 -1.71875 C 3.757812 -2.070312 3.890625 -2.46875 3.984375 -2.90625 C 4.085938 -3.34375 4.140625 -3.765625 4.140625 -4.171875 C 4.140625 -4.492188 4.082031 -4.726562 3.96875 -4.875 C 3.863281 -5.019531 3.738281 -5.09375 3.59375 -5.09375 C 3.445312 -5.09375 3.316406 -5.050781 3.203125 -4.96875 C 3.023438 -4.863281 2.816406 -4.664062 2.578125 -4.375 Z M 1.640625 -0.84375 "/>
64
+ </symbol>
65
+ <symbol overflow="visible" id="glyph0-20">
66
+ <path style="stroke:none;" d="M 5.796875 -6 L 4.078125 0.78125 C 3.953125 1.25 3.878906 1.546875 3.859375 1.671875 C 3.828125 1.867188 3.8125 2.035156 3.8125 2.171875 C 3.8125 2.304688 3.859375 2.414062 3.953125 2.5 C 4.085938 2.625 4.289062 2.703125 4.5625 2.734375 L 4.5 3 L 1.40625 3 L 1.453125 2.75 C 1.691406 2.707031 1.863281 2.644531 1.96875 2.5625 C 2.082031 2.476562 2.179688 2.335938 2.265625 2.140625 C 2.347656 1.941406 2.445312 1.601562 2.5625 1.125 L 3.34375 -1.984375 C 2.90625 -1.179688 2.5 -0.632812 2.125 -0.34375 C 1.832031 -0.113281 1.546875 0 1.265625 0 C 0.972656 0 0.742188 -0.113281 0.578125 -0.34375 C 0.347656 -0.644531 0.234375 -1.050781 0.234375 -1.5625 C 0.234375 -2.101562 0.347656 -2.671875 0.578125 -3.265625 C 0.804688 -3.859375 1.109375 -4.378906 1.484375 -4.828125 C 1.867188 -5.285156 2.257812 -5.617188 2.65625 -5.828125 C 2.84375 -5.941406 3.0625 -6 3.3125 -6 C 3.550781 -6 3.742188 -5.921875 3.890625 -5.765625 C 4.046875 -5.609375 4.15625 -5.359375 4.21875 -5.015625 L 4.4375 -6 Z M 3.453125 -5.578125 C 3.316406 -5.578125 3.175781 -5.503906 3.03125 -5.359375 C 2.769531 -5.117188 2.507812 -4.632812 2.25 -3.90625 C 1.925781 -3.007812 1.765625 -2.3125 1.765625 -1.8125 C 1.765625 -1.582031 1.804688 -1.410156 1.890625 -1.296875 C 1.953125 -1.203125 2.035156 -1.15625 2.140625 -1.15625 C 2.273438 -1.15625 2.410156 -1.226562 2.546875 -1.375 C 2.867188 -1.6875 3.1875 -2.203125 3.5 -2.921875 C 3.820312 -3.648438 3.984375 -4.25 3.984375 -4.71875 C 3.984375 -5 3.925781 -5.210938 3.8125 -5.359375 C 3.707031 -5.503906 3.585938 -5.578125 3.453125 -5.578125 Z M 3.453125 -5.578125 "/>
67
+ </symbol>
68
+ <symbol overflow="visible" id="glyph0-21">
69
+ <path style="stroke:none;" d="M 3.9375 -9 L 2.421875 -3.140625 C 2.953125 -3.992188 3.332031 -4.570312 3.5625 -4.875 C 3.925781 -5.3125 4.234375 -5.609375 4.484375 -5.765625 C 4.742188 -5.921875 4.988281 -6 5.21875 -6 C 5.414062 -6 5.585938 -5.914062 5.734375 -5.75 C 5.878906 -5.582031 5.953125 -5.359375 5.953125 -5.078125 C 5.953125 -4.847656 5.90625 -4.554688 5.8125 -4.203125 L 5.0625 -1.453125 C 5 -1.210938 4.96875 -1.050781 4.96875 -0.96875 C 4.96875 -0.925781 4.976562 -0.890625 5 -0.859375 C 5.03125 -0.828125 5.0625 -0.8125 5.09375 -0.8125 C 5.144531 -0.8125 5.191406 -0.832031 5.234375 -0.875 C 5.359375 -0.988281 5.492188 -1.160156 5.640625 -1.390625 C 5.671875 -1.453125 5.726562 -1.546875 5.8125 -1.671875 L 6.03125 -1.515625 C 5.695312 -0.929688 5.378906 -0.53125 5.078125 -0.3125 C 4.773438 -0.101562 4.488281 0 4.21875 0 C 3.976562 0 3.789062 -0.0664062 3.65625 -0.203125 C 3.519531 -0.335938 3.453125 -0.503906 3.453125 -0.703125 C 3.453125 -0.898438 3.5 -1.164062 3.59375 -1.5 L 4.3125 -4.203125 C 4.363281 -4.390625 4.390625 -4.523438 4.390625 -4.609375 C 4.390625 -4.648438 4.375 -4.691406 4.34375 -4.734375 C 4.3125 -4.773438 4.269531 -4.796875 4.21875 -4.796875 C 4.082031 -4.796875 3.890625 -4.671875 3.640625 -4.421875 C 3.140625 -3.890625 2.632812 -3.054688 2.125 -1.921875 L 1.59375 0 L 0.140625 0 L 2.0625 -7.328125 C 2.144531 -7.628906 2.1875 -7.847656 2.1875 -7.984375 C 2.1875 -8.097656 2.144531 -8.179688 2.0625 -8.234375 C 1.96875 -8.316406 1.8125 -8.359375 1.59375 -8.359375 L 1.640625 -8.625 L 3.59375 -9 Z M 3.9375 -9 "/>
70
+ </symbol>
71
+ <symbol overflow="visible" id="glyph1-0">
72
+ <path style="stroke:none;" d="M 1.671875 0 L 1.671875 -7.5 L 7.671875 -7.5 L 7.671875 0 Z M 1.859375 -0.1875 L 7.484375 -0.1875 L 7.484375 -7.3125 L 1.859375 -7.3125 Z M 1.859375 -0.1875 "/>
73
+ </symbol>
74
+ <symbol overflow="visible" id="glyph1-1">
75
+ <path style="stroke:none;" d="M 0.21875 -5.75 L 6.546875 -5.75 L 6.546875 -5.25 L 0.21875 -5.25 Z M 0.21875 -3.765625 L 6.546875 -3.765625 L 6.546875 -3.234375 L 0.21875 -3.234375 Z M 0.21875 -3.765625 "/>
76
+ </symbol>
77
+ <symbol overflow="visible" id="glyph1-2">
78
+ <path style="stroke:none;" d="M 1.65625 -6 C 1.832031 -6 1.984375 -5.929688 2.109375 -5.796875 C 2.234375 -5.660156 2.296875 -5.5 2.296875 -5.3125 C 2.296875 -5.113281 2.234375 -4.945312 2.109375 -4.8125 C 1.984375 -4.675781 1.832031 -4.609375 1.65625 -4.609375 C 1.476562 -4.609375 1.320312 -4.675781 1.1875 -4.8125 C 1.0625 -4.945312 1 -5.113281 1 -5.3125 C 1 -5.5 1.0625 -5.660156 1.1875 -5.796875 C 1.320312 -5.929688 1.476562 -6 1.65625 -6 Z M 0.828125 2 L 0.828125 1.71875 C 1.234375 1.570312 1.546875 1.347656 1.765625 1.046875 C 1.984375 0.742188 2.09375 0.421875 2.09375 0.078125 C 2.09375 0.00390625 2.078125 -0.0664062 2.046875 -0.140625 C 2.015625 -0.171875 1.988281 -0.1875 1.96875 -0.1875 C 1.925781 -0.1875 1.832031 -0.140625 1.6875 -0.046875 C 1.613281 -0.015625 1.535156 0 1.453125 0 C 1.265625 0 1.113281 -0.0546875 1 -0.171875 C 0.882812 -0.296875 0.828125 -0.46875 0.828125 -0.6875 C 0.828125 -0.894531 0.898438 -1.070312 1.046875 -1.21875 C 1.191406 -1.363281 1.375 -1.4375 1.59375 -1.4375 C 1.84375 -1.4375 2.066406 -1.316406 2.265625 -1.078125 C 2.472656 -0.835938 2.578125 -0.515625 2.578125 -0.109375 C 2.578125 0.328125 2.4375 0.734375 2.15625 1.109375 C 1.875 1.484375 1.429688 1.78125 0.828125 2 Z M 0.828125 2 "/>
79
+ </symbol>
80
+ <symbol overflow="visible" id="glyph1-3">
81
+ <path style="stroke:none;" d="M 1.4375 -9 L 1.4375 3 L 0.9375 3 L 0.9375 -9 Z M 1.4375 -9 "/>
82
+ </symbol>
83
+ <symbol overflow="visible" id="glyph1-4">
84
+ <path style="stroke:none;" d="M 0.640625 2 L 0.640625 1.71875 C 1.046875 1.570312 1.359375 1.347656 1.578125 1.046875 C 1.796875 0.742188 1.90625 0.421875 1.90625 0.078125 C 1.90625 0.00390625 1.890625 -0.0664062 1.859375 -0.140625 C 1.828125 -0.171875 1.800781 -0.1875 1.78125 -0.1875 C 1.738281 -0.1875 1.644531 -0.140625 1.5 -0.046875 C 1.425781 -0.015625 1.347656 0 1.265625 0 C 1.078125 0 0.925781 -0.0546875 0.8125 -0.171875 C 0.695312 -0.296875 0.640625 -0.46875 0.640625 -0.6875 C 0.640625 -0.894531 0.710938 -1.070312 0.859375 -1.21875 C 1.003906 -1.363281 1.1875 -1.4375 1.40625 -1.4375 C 1.65625 -1.4375 1.878906 -1.316406 2.078125 -1.078125 C 2.285156 -0.835938 2.390625 -0.515625 2.390625 -0.109375 C 2.390625 0.328125 2.25 0.734375 1.96875 1.109375 C 1.6875 1.484375 1.242188 1.78125 0.640625 2 Z M 0.640625 2 "/>
85
+ </symbol>
86
+ <symbol overflow="visible" id="glyph1-5">
87
+ <path style="stroke:none;" d="M 0.484375 -2.984375 L 3.515625 -2.984375 L 3.515625 -2.015625 L 0.484375 -2.015625 Z M 0.484375 -2.984375 "/>
88
+ </symbol>
89
+ <symbol overflow="visible" id="glyph1-6">
90
+ <path style="stroke:none;" d="M 2.890625 -6.71875 C 2.878906 -7 2.828125 -7.269531 2.734375 -7.53125 C 2.597656 -7.9375 2.53125 -8.210938 2.53125 -8.359375 C 2.53125 -8.566406 2.578125 -8.722656 2.671875 -8.828125 C 2.765625 -8.941406 2.882812 -9 3.03125 -9 C 3.15625 -9 3.257812 -8.941406 3.34375 -8.828125 C 3.4375 -8.722656 3.484375 -8.570312 3.484375 -8.375 C 3.484375 -8.195312 3.429688 -7.941406 3.328125 -7.609375 C 3.222656 -7.285156 3.160156 -6.988281 3.140625 -6.71875 C 3.347656 -6.863281 3.539062 -7.039062 3.71875 -7.25 C 3.976562 -7.582031 4.171875 -7.789062 4.296875 -7.875 C 4.429688 -7.957031 4.566406 -8 4.703125 -8 C 4.828125 -8 4.929688 -7.953125 5.015625 -7.859375 C 5.109375 -7.765625 5.15625 -7.648438 5.15625 -7.515625 C 5.15625 -7.359375 5.085938 -7.21875 4.953125 -7.09375 C 4.828125 -6.96875 4.507812 -6.84375 4 -6.71875 C 3.695312 -6.65625 3.445312 -6.578125 3.25 -6.484375 C 3.445312 -6.367188 3.691406 -6.28125 3.984375 -6.21875 C 4.460938 -6.125 4.773438 -6.003906 4.921875 -5.859375 C 5.066406 -5.722656 5.140625 -5.570312 5.140625 -5.40625 C 5.140625 -5.28125 5.09375 -5.171875 5 -5.078125 C 4.914062 -4.984375 4.816406 -4.9375 4.703125 -4.9375 C 4.585938 -4.9375 4.457031 -4.976562 4.3125 -5.0625 C 4.164062 -5.15625 3.972656 -5.359375 3.734375 -5.671875 C 3.578125 -5.878906 3.378906 -6.070312 3.140625 -6.25 C 3.140625 -5.976562 3.179688 -5.679688 3.265625 -5.359375 C 3.410156 -4.785156 3.484375 -4.390625 3.484375 -4.171875 C 3.484375 -3.984375 3.4375 -3.820312 3.34375 -3.6875 C 3.25 -3.5625 3.148438 -3.5 3.046875 -3.5 C 2.898438 -3.5 2.769531 -3.570312 2.65625 -3.71875 C 2.570312 -3.8125 2.53125 -3.972656 2.53125 -4.203125 C 2.53125 -4.421875 2.570312 -4.691406 2.65625 -5.015625 C 2.75 -5.347656 2.804688 -5.578125 2.828125 -5.703125 C 2.847656 -5.828125 2.867188 -6.007812 2.890625 -6.25 C 2.660156 -6.09375 2.460938 -5.910156 2.296875 -5.703125 C 2.003906 -5.359375 1.785156 -5.140625 1.640625 -5.046875 C 1.546875 -4.972656 1.441406 -4.9375 1.328125 -4.9375 C 1.191406 -4.9375 1.078125 -4.984375 0.984375 -5.078125 C 0.890625 -5.179688 0.84375 -5.289062 0.84375 -5.40625 C 0.84375 -5.507812 0.882812 -5.617188 0.96875 -5.734375 C 1.050781 -5.859375 1.171875 -5.957031 1.328125 -6.03125 C 1.429688 -6.082031 1.671875 -6.148438 2.046875 -6.234375 C 2.296875 -6.285156 2.535156 -6.367188 2.765625 -6.484375 C 2.546875 -6.597656 2.289062 -6.6875 2 -6.75 C 1.519531 -6.851562 1.222656 -6.953125 1.109375 -7.046875 C 0.929688 -7.171875 0.84375 -7.332031 0.84375 -7.53125 C 0.84375 -7.644531 0.882812 -7.75 0.96875 -7.84375 C 1.0625 -7.945312 1.171875 -8 1.296875 -8 C 1.421875 -8 1.554688 -7.953125 1.703125 -7.859375 C 1.847656 -7.773438 2.023438 -7.597656 2.234375 -7.328125 C 2.453125 -7.066406 2.671875 -6.863281 2.890625 -6.71875 Z M 2.890625 -6.71875 "/>
91
+ </symbol>
92
+ <symbol overflow="visible" id="glyph1-7">
93
+ <path style="stroke:none;" d="M 3.5625 3 L 0.984375 3 L 0.984375 -9 L 3.5625 -9 L 3.5625 -8.5 L 1.859375 -8.5 L 1.859375 2.5 L 3.5625 2.5 Z M 3.5625 3 "/>
94
+ </symbol>
95
+ <symbol overflow="visible" id="glyph1-8">
96
+ <path style="stroke:none;" d="M 0.4375 -9 L 3.015625 -9 L 3.015625 3 L 0.4375 3 L 0.4375 2.484375 L 2.140625 2.484375 L 2.140625 -8.5 L 0.4375 -8.5 Z M 0.4375 -9 "/>
97
+ </symbol>
98
+ <symbol overflow="visible" id="glyph1-9">
99
+ <path style="stroke:none;" d="M 4.921875 2.59375 L 4.921875 2.8125 C 4.273438 2.707031 3.742188 2.414062 3.328125 1.9375 C 2.921875 1.46875 2.71875 0.941406 2.71875 0.359375 C 2.71875 0.0546875 2.765625 -0.296875 2.859375 -0.703125 C 2.953125 -1.109375 3 -1.421875 3 -1.640625 C 3 -1.953125 2.878906 -2.238281 2.640625 -2.5 C 2.398438 -2.757812 2.070312 -2.921875 1.65625 -2.984375 L 1.65625 -3.25 C 2.070312 -3.3125 2.398438 -3.472656 2.640625 -3.734375 C 2.878906 -3.992188 3 -4.28125 3 -4.59375 C 3 -4.8125 2.953125 -5.125 2.859375 -5.53125 C 2.765625 -5.9375 2.71875 -6.289062 2.71875 -6.59375 C 2.71875 -7.175781 2.921875 -7.703125 3.328125 -8.171875 C 3.742188 -8.648438 4.273438 -8.9375 4.921875 -9.03125 L 4.921875 -8.8125 C 4.472656 -8.695312 4.140625 -8.503906 3.921875 -8.234375 C 3.710938 -7.960938 3.609375 -7.664062 3.609375 -7.34375 C 3.609375 -7.09375 3.648438 -6.765625 3.734375 -6.359375 C 3.828125 -5.953125 3.875 -5.601562 3.875 -5.3125 C 3.875 -4.882812 3.726562 -4.46875 3.4375 -4.0625 C 3.144531 -3.664062 2.710938 -3.359375 2.140625 -3.140625 C 2.703125 -2.910156 3.128906 -2.585938 3.421875 -2.171875 C 3.722656 -1.765625 3.875 -1.347656 3.875 -0.921875 C 3.875 -0.628906 3.828125 -0.28125 3.734375 0.125 C 3.648438 0.53125 3.609375 0.859375 3.609375 1.109375 C 3.609375 1.429688 3.710938 1.726562 3.921875 2 C 4.140625 2.269531 4.472656 2.46875 4.921875 2.59375 Z M 4.921875 2.59375 "/>
100
+ </symbol>
101
+ <symbol overflow="visible" id="glyph1-10">
102
+ <path style="stroke:none;" d="M 1.03125 -8.8125 L 1.03125 -9.03125 C 1.6875 -8.9375 2.21875 -8.648438 2.625 -8.171875 C 3.03125 -7.703125 3.234375 -7.175781 3.234375 -6.59375 C 3.234375 -6.289062 3.1875 -5.9375 3.09375 -5.53125 C 3.007812 -5.125 2.96875 -4.8125 2.96875 -4.59375 C 2.96875 -4.28125 3.085938 -3.992188 3.328125 -3.734375 C 3.566406 -3.472656 3.894531 -3.3125 4.3125 -3.25 L 4.3125 -2.984375 C 3.894531 -2.921875 3.566406 -2.757812 3.328125 -2.5 C 3.085938 -2.238281 2.96875 -1.953125 2.96875 -1.640625 C 2.96875 -1.421875 3.007812 -1.109375 3.09375 -0.703125 C 3.1875 -0.296875 3.234375 0.0546875 3.234375 0.359375 C 3.234375 0.941406 3.03125 1.46875 2.625 1.9375 C 2.21875 2.414062 1.6875 2.707031 1.03125 2.8125 L 1.03125 2.59375 C 1.488281 2.46875 1.820312 2.269531 2.03125 2 C 2.25 1.738281 2.359375 1.441406 2.359375 1.109375 C 2.359375 0.859375 2.3125 0.53125 2.21875 0.125 C 2.132812 -0.28125 2.09375 -0.628906 2.09375 -0.921875 C 2.09375 -1.347656 2.238281 -1.757812 2.53125 -2.15625 C 2.820312 -2.5625 3.253906 -2.878906 3.828125 -3.109375 C 3.265625 -3.328125 2.832031 -3.640625 2.53125 -4.046875 C 2.238281 -4.460938 2.09375 -4.882812 2.09375 -5.3125 C 2.09375 -5.601562 2.132812 -5.953125 2.21875 -6.359375 C 2.3125 -6.765625 2.359375 -7.09375 2.359375 -7.34375 C 2.359375 -7.664062 2.25 -7.960938 2.03125 -8.234375 C 1.820312 -8.503906 1.488281 -8.695312 1.03125 -8.8125 Z M 1.03125 -8.8125 "/>
103
+ </symbol>
104
+ <symbol overflow="visible" id="glyph1-11">
105
+ <path style="stroke:none;" d="M 3.734375 2.546875 L 3.734375 2.78125 C 3.140625 2.457031 2.644531 2.082031 2.25 1.65625 C 1.6875 1.039062 1.253906 0.316406 0.953125 -0.515625 C 0.648438 -1.347656 0.5 -2.21875 0.5 -3.125 C 0.5 -4.4375 0.796875 -5.632812 1.390625 -6.71875 C 1.984375 -7.800781 2.765625 -8.570312 3.734375 -9.03125 L 3.734375 -8.765625 C 3.242188 -8.484375 2.84375 -8.09375 2.53125 -7.59375 C 2.226562 -7.09375 2 -6.457031 1.84375 -5.6875 C 1.695312 -4.914062 1.625 -4.113281 1.625 -3.28125 C 1.625 -2.375 1.6875 -1.550781 1.8125 -0.8125 C 1.914062 -0.226562 2.039062 0.238281 2.1875 0.59375 C 2.332031 0.945312 2.523438 1.285156 2.765625 1.609375 C 3.015625 1.941406 3.335938 2.253906 3.734375 2.546875 Z M 3.734375 2.546875 "/>
106
+ </symbol>
107
+ <symbol overflow="visible" id="glyph1-12">
108
+ <path style="stroke:none;" d="M 0.265625 -8.765625 L 0.265625 -9.03125 C 0.859375 -8.71875 1.351562 -8.34375 1.75 -7.90625 C 2.3125 -7.289062 2.742188 -6.566406 3.046875 -5.734375 C 3.347656 -4.898438 3.5 -4.035156 3.5 -3.140625 C 3.5 -1.816406 3.203125 -0.617188 2.609375 0.453125 C 2.015625 1.535156 1.234375 2.3125 0.265625 2.78125 L 0.265625 2.546875 C 0.742188 2.253906 1.140625 1.859375 1.453125 1.359375 C 1.765625 0.859375 1.992188 0.226562 2.140625 -0.53125 C 2.296875 -1.300781 2.375 -2.101562 2.375 -2.9375 C 2.375 -3.84375 2.3125 -4.671875 2.1875 -5.421875 C 2.082031 -6.003906 1.957031 -6.46875 1.8125 -6.8125 C 1.664062 -7.164062 1.472656 -7.503906 1.234375 -7.828125 C 0.992188 -8.160156 0.671875 -8.472656 0.265625 -8.765625 Z M 0.265625 -8.765625 "/>
109
+ </symbol>
110
+ <symbol overflow="visible" id="glyph1-13">
111
+ <path style="stroke:none;" d="M 2.65625 -2.203125 L 2.421875 -2.203125 C 2.453125 -2.734375 2.515625 -3.175781 2.609375 -3.53125 C 2.703125 -3.882812 2.898438 -4.367188 3.203125 -4.984375 C 3.429688 -5.472656 3.582031 -5.847656 3.65625 -6.109375 C 3.726562 -6.367188 3.765625 -6.628906 3.765625 -6.890625 C 3.765625 -7.421875 3.628906 -7.84375 3.359375 -8.15625 C 3.097656 -8.476562 2.773438 -8.640625 2.390625 -8.640625 C 2.054688 -8.640625 1.789062 -8.550781 1.59375 -8.375 C 1.394531 -8.207031 1.296875 -8.023438 1.296875 -7.828125 C 1.296875 -7.660156 1.351562 -7.460938 1.46875 -7.234375 C 1.59375 -7.015625 1.65625 -6.84375 1.65625 -6.71875 C 1.65625 -6.570312 1.609375 -6.445312 1.515625 -6.34375 C 1.429688 -6.238281 1.320312 -6.1875 1.1875 -6.1875 C 1.019531 -6.1875 0.867188 -6.269531 0.734375 -6.4375 C 0.609375 -6.613281 0.546875 -6.859375 0.546875 -7.171875 C 0.546875 -7.648438 0.734375 -8.070312 1.109375 -8.4375 C 1.484375 -8.8125 2 -9 2.65625 -9 C 3.457031 -9 4.046875 -8.742188 4.421875 -8.234375 C 4.703125 -7.867188 4.84375 -7.457031 4.84375 -7 C 4.84375 -6.6875 4.78125 -6.363281 4.65625 -6.03125 C 4.53125 -5.707031 4.289062 -5.320312 3.9375 -4.875 C 3.363281 -4.1875 3.015625 -3.695312 2.890625 -3.40625 C 2.765625 -3.113281 2.6875 -2.710938 2.65625 -2.203125 Z M 2.578125 -1.421875 C 2.765625 -1.421875 2.921875 -1.347656 3.046875 -1.203125 C 3.171875 -1.066406 3.234375 -0.898438 3.234375 -0.703125 C 3.234375 -0.503906 3.164062 -0.335938 3.03125 -0.203125 C 2.90625 -0.0664062 2.753906 0 2.578125 0 C 2.398438 0 2.242188 -0.0664062 2.109375 -0.203125 C 1.984375 -0.335938 1.921875 -0.503906 1.921875 -0.703125 C 1.921875 -0.898438 1.984375 -1.066406 2.109375 -1.203125 C 2.242188 -1.347656 2.398438 -1.421875 2.578125 -1.421875 Z M 2.578125 -1.421875 "/>
112
+ </symbol>
113
+ <symbol overflow="visible" id="glyph1-14">
114
+ <path style="stroke:none;" d="M 0.921875 -5.296875 L 0.609375 -7.171875 C 0.515625 -7.691406 0.46875 -8.046875 0.46875 -8.234375 C 0.46875 -8.503906 0.519531 -8.695312 0.625 -8.8125 C 0.726562 -8.9375 0.867188 -9 1.046875 -9 C 1.222656 -9 1.367188 -8.9375 1.484375 -8.8125 C 1.597656 -8.6875 1.65625 -8.523438 1.65625 -8.328125 C 1.65625 -8.171875 1.601562 -7.785156 1.5 -7.171875 L 1.1875 -5.296875 Z M 0.921875 -5.296875 "/>
115
+ </symbol>
116
+ <symbol overflow="visible" id="glyph1-15">
117
+ <path style="stroke:none;" d="M 3.375 -5.296875 L 3.0625 -7.140625 L 2.9375 -7.921875 C 2.925781 -8.023438 2.921875 -8.128906 2.921875 -8.234375 C 2.921875 -8.503906 2.972656 -8.695312 3.078125 -8.8125 C 3.191406 -8.9375 3.335938 -9 3.515625 -9 C 3.679688 -9 3.820312 -8.9375 3.9375 -8.8125 C 4.050781 -8.695312 4.109375 -8.535156 4.109375 -8.328125 C 4.109375 -7.960938 4.066406 -7.570312 3.984375 -7.15625 L 3.65625 -5.296875 Z M 1.234375 -5.296875 L 0.90625 -7.171875 C 0.820312 -7.691406 0.78125 -8.046875 0.78125 -8.234375 C 0.78125 -8.503906 0.832031 -8.695312 0.9375 -8.8125 C 1.039062 -8.9375 1.179688 -9 1.359375 -9 C 1.523438 -9 1.664062 -8.9375 1.78125 -8.8125 C 1.894531 -8.6875 1.953125 -8.519531 1.953125 -8.3125 C 1.953125 -8.144531 1.898438 -7.765625 1.796875 -7.171875 L 1.484375 -5.296875 Z M 1.234375 -5.296875 "/>
118
+ </symbol>
119
+ <symbol overflow="visible" id="glyph2-0">
120
+ <path style="stroke:none;" d="M 1.671875 0 L 1.671875 -7.5 L 7.671875 -7.5 L 7.671875 0 Z M 1.859375 -0.1875 L 7.484375 -0.1875 L 7.484375 -7.3125 L 1.859375 -7.3125 Z M 1.859375 -0.1875 "/>
121
+ </symbol>
122
+ <symbol overflow="visible" id="glyph2-1">
123
+ <path style="stroke:none;" d="M 4.640625 -1.328125 C 4.234375 -0.867188 3.820312 -0.53125 3.40625 -0.3125 C 2.988281 -0.101562 2.550781 0 2.09375 0 C 1.539062 0 1.109375 -0.140625 0.796875 -0.421875 C 0.484375 -0.710938 0.328125 -1.097656 0.328125 -1.578125 C 0.328125 -2.128906 0.492188 -2.671875 0.828125 -3.203125 C 1.160156 -3.742188 1.609375 -4.175781 2.171875 -4.5 C 2.742188 -4.832031 3.300781 -5 3.84375 -5 C 4.269531 -5 4.585938 -4.914062 4.796875 -4.75 C 5.003906 -4.59375 5.109375 -4.398438 5.109375 -4.171875 C 5.109375 -3.941406 5.035156 -3.75 4.890625 -3.59375 C 4.773438 -3.46875 4.640625 -3.40625 4.484375 -3.40625 C 4.359375 -3.40625 4.253906 -3.4375 4.171875 -3.5 C 4.097656 -3.570312 4.0625 -3.664062 4.0625 -3.78125 C 4.0625 -3.851562 4.078125 -3.914062 4.109375 -3.96875 C 4.140625 -4.019531 4.195312 -4.085938 4.28125 -4.171875 C 4.375 -4.253906 4.429688 -4.3125 4.453125 -4.34375 C 4.472656 -4.382812 4.484375 -4.425781 4.484375 -4.46875 C 4.484375 -4.53125 4.445312 -4.585938 4.375 -4.640625 C 4.257812 -4.710938 4.097656 -4.75 3.890625 -4.75 C 3.503906 -4.75 3.125 -4.625 2.75 -4.375 C 2.375 -4.132812 2.054688 -3.789062 1.796875 -3.34375 C 1.472656 -2.78125 1.3125 -2.226562 1.3125 -1.6875 C 1.3125 -1.3125 1.425781 -1.015625 1.65625 -0.796875 C 1.882812 -0.585938 2.191406 -0.484375 2.578125 -0.484375 C 2.878906 -0.484375 3.175781 -0.554688 3.46875 -0.703125 C 3.769531 -0.847656 4.101562 -1.101562 4.46875 -1.46875 Z M 4.640625 -1.328125 "/>
124
+ </symbol>
125
+ <symbol overflow="visible" id="glyph2-2">
126
+ <path style="stroke:none;" d="M 3.515625 -7.984375 L 1.875 -2.5 C 2.582031 -3.507812 3.132812 -4.175781 3.53125 -4.5 C 3.9375 -4.832031 4.320312 -5 4.6875 -5 C 4.875 -5 5.03125 -4.9375 5.15625 -4.8125 C 5.28125 -4.695312 5.34375 -4.539062 5.34375 -4.34375 C 5.34375 -4.09375 5.285156 -3.796875 5.171875 -3.453125 L 4.453125 -1.140625 C 4.367188 -0.859375 4.328125 -0.703125 4.328125 -0.671875 C 4.328125 -0.617188 4.34375 -0.578125 4.375 -0.546875 C 4.40625 -0.515625 4.441406 -0.5 4.484375 -0.5 C 4.535156 -0.5 4.597656 -0.519531 4.671875 -0.5625 C 4.890625 -0.726562 5.109375 -0.957031 5.328125 -1.25 L 5.515625 -1.140625 C 5.378906 -0.960938 5.191406 -0.765625 4.953125 -0.546875 C 4.710938 -0.335938 4.507812 -0.191406 4.34375 -0.109375 C 4.175781 -0.0351562 4.023438 0 3.890625 0 C 3.742188 0 3.625 -0.0390625 3.53125 -0.125 C 3.445312 -0.207031 3.40625 -0.3125 3.40625 -0.4375 C 3.40625 -0.601562 3.472656 -0.898438 3.609375 -1.328125 L 4.28125 -3.484375 C 4.363281 -3.742188 4.40625 -3.953125 4.40625 -4.109375 C 4.40625 -4.179688 4.378906 -4.238281 4.328125 -4.28125 C 4.285156 -4.320312 4.222656 -4.34375 4.140625 -4.34375 C 4.023438 -4.34375 3.894531 -4.300781 3.75 -4.21875 C 3.488281 -4.070312 3.1875 -3.785156 2.84375 -3.359375 C 2.75 -3.242188 2.4375 -2.785156 1.90625 -1.984375 C 1.738281 -1.722656 1.601562 -1.441406 1.5 -1.140625 L 1.125 0 L 0.234375 0 L 2.171875 -6.40625 L 2.375 -7.109375 C 2.375 -7.210938 2.332031 -7.300781 2.25 -7.375 C 2.164062 -7.457031 2.0625 -7.5 1.9375 -7.5 C 1.863281 -7.5 1.757812 -7.488281 1.625 -7.46875 L 1.5 -7.453125 L 1.5 -7.671875 Z M 3.515625 -7.984375 "/>
127
+ </symbol>
128
+ <symbol overflow="visible" id="glyph2-3">
129
+ <path style="stroke:none;" d="M 5.625 -5.015625 L 4.484375 -1.359375 L 4.359375 -0.875 C 4.347656 -0.832031 4.34375 -0.796875 4.34375 -0.765625 C 4.34375 -0.710938 4.363281 -0.660156 4.40625 -0.609375 C 4.4375 -0.578125 4.472656 -0.5625 4.515625 -0.5625 C 4.566406 -0.5625 4.632812 -0.59375 4.71875 -0.65625 C 4.875 -0.75 5.078125 -0.957031 5.328125 -1.28125 L 5.53125 -1.15625 C 5.257812 -0.769531 4.976562 -0.476562 4.6875 -0.28125 C 4.40625 -0.09375 4.144531 0 3.90625 0 C 3.738281 0 3.613281 -0.0351562 3.53125 -0.109375 C 3.445312 -0.191406 3.40625 -0.304688 3.40625 -0.453125 C 3.40625 -0.640625 3.445312 -0.875 3.53125 -1.15625 L 3.65625 -1.5625 C 3.144531 -0.945312 2.671875 -0.515625 2.234375 -0.265625 C 1.929688 -0.0859375 1.628906 0 1.328125 0 C 1.046875 0 0.800781 -0.101562 0.59375 -0.3125 C 0.382812 -0.53125 0.28125 -0.832031 0.28125 -1.21875 C 0.28125 -1.789062 0.46875 -2.394531 0.84375 -3.03125 C 1.21875 -3.664062 1.691406 -4.175781 2.265625 -4.5625 C 2.710938 -4.851562 3.132812 -5 3.53125 -5 C 3.769531 -5 3.96875 -4.941406 4.125 -4.828125 C 4.28125 -4.710938 4.398438 -4.523438 4.484375 -4.265625 L 4.703125 -4.890625 Z M 3.546875 -4.71875 C 3.296875 -4.71875 3.03125 -4.613281 2.75 -4.40625 C 2.351562 -4.101562 2 -3.648438 1.6875 -3.046875 C 1.375 -2.441406 1.21875 -1.898438 1.21875 -1.421875 C 1.21875 -1.179688 1.285156 -0.988281 1.421875 -0.84375 C 1.554688 -0.707031 1.707031 -0.640625 1.875 -0.640625 C 2.300781 -0.640625 2.765625 -0.925781 3.265625 -1.5 C 3.929688 -2.257812 4.265625 -3.046875 4.265625 -3.859375 C 4.265625 -4.160156 4.195312 -4.378906 4.0625 -4.515625 C 3.9375 -4.648438 3.765625 -4.71875 3.546875 -4.71875 Z M 3.546875 -4.71875 "/>
130
+ </symbol>
131
+ <symbol overflow="visible" id="glyph2-4">
132
+ <path style="stroke:none;" d="M 0.625 -4.71875 L 2.65625 -5 L 1.8125 -2.3125 C 2.488281 -3.414062 3.109375 -4.1875 3.671875 -4.625 C 3.984375 -4.875 4.238281 -5 4.4375 -5 C 4.570312 -5 4.675781 -4.960938 4.75 -4.890625 C 4.820312 -4.828125 4.859375 -4.722656 4.859375 -4.578125 C 4.859375 -4.335938 4.789062 -4.109375 4.65625 -3.890625 C 4.5625 -3.722656 4.425781 -3.640625 4.25 -3.640625 C 4.164062 -3.640625 4.085938 -3.664062 4.015625 -3.71875 C 3.953125 -3.78125 3.914062 -3.867188 3.90625 -3.984375 C 3.894531 -4.046875 3.875 -4.085938 3.84375 -4.109375 C 3.8125 -4.140625 3.773438 -4.15625 3.734375 -4.15625 C 3.671875 -4.15625 3.609375 -4.140625 3.546875 -4.109375 C 3.453125 -4.054688 3.300781 -3.914062 3.09375 -3.6875 C 2.769531 -3.320312 2.414062 -2.851562 2.03125 -2.28125 C 1.863281 -2.03125 1.722656 -1.753906 1.609375 -1.453125 C 1.441406 -1.035156 1.347656 -0.785156 1.328125 -0.703125 L 1.140625 0 L 0.25 0 L 1.328125 -3.4375 C 1.453125 -3.832031 1.515625 -4.113281 1.515625 -4.28125 C 1.515625 -4.351562 1.488281 -4.410156 1.4375 -4.453125 C 1.351562 -4.515625 1.25 -4.546875 1.125 -4.546875 C 1.039062 -4.546875 0.890625 -4.53125 0.671875 -4.5 Z M 0.625 -4.71875 "/>
133
+ </symbol>
134
+ <symbol overflow="visible" id="glyph2-5">
135
+ <path style="stroke:none;" d="M 3.125 -6.5 L 2.65625 -5 L 3.578125 -5 L 3.484375 -4.65625 L 2.5625 -4.65625 L 1.5625 -1.390625 C 1.445312 -1.035156 1.390625 -0.804688 1.390625 -0.703125 C 1.390625 -0.640625 1.40625 -0.59375 1.4375 -0.5625 C 1.46875 -0.53125 1.503906 -0.515625 1.546875 -0.515625 C 1.648438 -0.515625 1.78125 -0.578125 1.9375 -0.703125 C 2.03125 -0.773438 2.238281 -1.003906 2.5625 -1.390625 L 2.765625 -1.25 C 2.398438 -0.75 2.054688 -0.398438 1.734375 -0.203125 C 1.515625 -0.0664062 1.296875 0 1.078125 0 C 0.910156 0 0.769531 -0.046875 0.65625 -0.140625 C 0.550781 -0.242188 0.5 -0.375 0.5 -0.53125 C 0.5 -0.726562 0.5625 -1.035156 0.6875 -1.453125 L 1.65625 -4.65625 L 0.78125 -4.65625 L 0.828125 -4.859375 C 1.265625 -4.972656 1.625 -5.140625 1.90625 -5.359375 C 2.1875 -5.578125 2.503906 -5.957031 2.859375 -6.5 Z M 3.125 -6.5 "/>
136
+ </symbol>
137
+ <symbol overflow="visible" id="glyph2-6">
138
+ <path style="stroke:none;" d="M 1.4375 -2.15625 C 1.40625 -1.988281 1.390625 -1.84375 1.390625 -1.71875 C 1.390625 -1.40625 1.507812 -1.132812 1.75 -0.90625 C 2 -0.675781 2.300781 -0.5625 2.65625 -0.5625 C 2.9375 -0.5625 3.207031 -0.613281 3.46875 -0.71875 C 3.726562 -0.820312 4.113281 -1.054688 4.625 -1.421875 L 4.75 -1.265625 C 3.820312 -0.421875 2.9375 0 2.09375 0 C 1.53125 0 1.101562 -0.160156 0.8125 -0.484375 C 0.519531 -0.816406 0.375 -1.179688 0.375 -1.578125 C 0.375 -2.117188 0.550781 -2.664062 0.90625 -3.21875 C 1.269531 -3.78125 1.722656 -4.21875 2.265625 -4.53125 C 2.804688 -4.84375 3.363281 -5 3.9375 -5 C 4.351562 -5 4.660156 -4.921875 4.859375 -4.765625 C 5.054688 -4.617188 5.15625 -4.4375 5.15625 -4.21875 C 5.15625 -3.925781 5.03125 -3.644531 4.78125 -3.375 C 4.4375 -3.019531 3.9375 -2.726562 3.28125 -2.5 C 2.84375 -2.363281 2.226562 -2.25 1.4375 -2.15625 Z M 1.46875 -2.359375 C 2.050781 -2.421875 2.523438 -2.523438 2.890625 -2.671875 C 3.367188 -2.878906 3.726562 -3.125 3.96875 -3.40625 C 4.207031 -3.6875 4.328125 -3.953125 4.328125 -4.203125 C 4.328125 -4.359375 4.273438 -4.484375 4.171875 -4.578125 C 4.066406 -4.679688 3.921875 -4.734375 3.734375 -4.734375 C 3.328125 -4.734375 2.898438 -4.53125 2.453125 -4.125 C 2.003906 -3.726562 1.675781 -3.140625 1.46875 -2.359375 Z M 1.46875 -2.359375 "/>
139
+ </symbol>
140
+ <symbol overflow="visible" id="glyph2-7">
141
+ <path style="stroke:none;" d=""/>
142
+ </symbol>
143
+ <symbol overflow="visible" id="glyph2-8">
144
+ <path style="stroke:none;" d="M 3.59375 -2.875 L 3.359375 -2.140625 L 0.3125 -2.140625 L 0.5625 -2.875 Z M 3.59375 -2.875 "/>
145
+ </symbol>
146
+ <symbol overflow="visible" id="glyph2-9">
147
+ <path style="stroke:none;" d="M 1.578125 -5 L 1.765625 -6.515625 C 1.804688 -6.953125 1.851562 -7.242188 1.90625 -7.390625 C 1.976562 -7.609375 2.082031 -7.765625 2.21875 -7.859375 C 2.351562 -7.953125 2.503906 -8 2.671875 -8 C 2.816406 -8 2.929688 -7.960938 3.015625 -7.890625 C 3.097656 -7.828125 3.140625 -7.742188 3.140625 -7.640625 C 3.140625 -7.554688 3.117188 -7.46875 3.078125 -7.375 C 3.023438 -7.238281 2.878906 -6.953125 2.640625 -6.515625 L 1.828125 -5 Z M 1.578125 -5 "/>
148
+ </symbol>
149
+ <symbol overflow="visible" id="glyph2-10">
150
+ <path style="stroke:none;" d="M 2.109375 -2.03125 L 1.890625 -2.03125 C 1.941406 -2.507812 2.054688 -2.921875 2.234375 -3.265625 C 2.421875 -3.617188 2.78125 -4.066406 3.3125 -4.609375 C 3.851562 -5.160156 4.210938 -5.601562 4.390625 -5.9375 C 4.503906 -6.1875 4.5625 -6.4375 4.5625 -6.6875 C 4.5625 -6.976562 4.453125 -7.226562 4.234375 -7.4375 C 4.015625 -7.644531 3.734375 -7.75 3.390625 -7.75 C 3.054688 -7.75 2.785156 -7.679688 2.578125 -7.546875 C 2.460938 -7.472656 2.40625 -7.378906 2.40625 -7.265625 C 2.40625 -7.191406 2.4375 -7.085938 2.5 -6.953125 C 2.570312 -6.828125 2.609375 -6.722656 2.609375 -6.640625 C 2.609375 -6.503906 2.5625 -6.394531 2.46875 -6.3125 C 2.375 -6.226562 2.253906 -6.1875 2.109375 -6.1875 C 1.972656 -6.1875 1.859375 -6.226562 1.765625 -6.3125 C 1.671875 -6.40625 1.625 -6.535156 1.625 -6.703125 C 1.625 -7.023438 1.789062 -7.320312 2.125 -7.59375 C 2.457031 -7.863281 2.914062 -8 3.5 -8 C 4.09375 -8 4.570312 -7.835938 4.9375 -7.515625 C 5.3125 -7.191406 5.5 -6.816406 5.5 -6.390625 C 5.5 -6.054688 5.414062 -5.765625 5.25 -5.515625 C 5.019531 -5.191406 4.585938 -4.816406 3.953125 -4.390625 C 3.316406 -3.972656 2.878906 -3.601562 2.640625 -3.28125 C 2.410156 -2.957031 2.234375 -2.539062 2.109375 -2.03125 Z M 1.765625 -1.125 C 1.921875 -1.125 2.054688 -1.066406 2.171875 -0.953125 C 2.296875 -0.847656 2.359375 -0.71875 2.359375 -0.5625 C 2.359375 -0.40625 2.296875 -0.269531 2.171875 -0.15625 C 2.054688 -0.0507812 1.921875 0 1.765625 0 C 1.597656 0 1.453125 -0.0507812 1.328125 -0.15625 C 1.210938 -0.269531 1.15625 -0.40625 1.15625 -0.5625 C 1.15625 -0.71875 1.210938 -0.847656 1.328125 -0.953125 C 1.441406 -1.066406 1.585938 -1.125 1.765625 -1.125 Z M 1.765625 -1.125 "/>
151
+ </symbol>
152
+ <symbol overflow="visible" id="glyph2-11">
153
+ <path style="stroke:none;" d="M 6.1875 -8 L 5.578125 -1.484375 C 5.546875 -1.179688 5.53125 -0.984375 5.53125 -0.890625 C 5.53125 -0.734375 5.5625 -0.613281 5.625 -0.53125 C 5.695312 -0.414062 5.796875 -0.332031 5.921875 -0.28125 C 6.046875 -0.226562 6.257812 -0.203125 6.5625 -0.203125 L 6.5 0 L 3.375 0 L 3.4375 -0.203125 L 3.5625 -0.203125 C 3.820312 -0.203125 4.03125 -0.25 4.1875 -0.34375 C 4.300781 -0.414062 4.390625 -0.523438 4.453125 -0.671875 C 4.492188 -0.773438 4.535156 -1.023438 4.578125 -1.421875 L 4.671875 -2.296875 L 2.390625 -2.296875 L 1.59375 -1.34375 C 1.40625 -1.113281 1.285156 -0.953125 1.234375 -0.859375 C 1.191406 -0.773438 1.171875 -0.6875 1.171875 -0.59375 C 1.171875 -0.488281 1.222656 -0.394531 1.328125 -0.3125 C 1.429688 -0.238281 1.597656 -0.203125 1.828125 -0.203125 L 1.765625 0 L -0.59375 0 L -0.515625 -0.203125 C -0.234375 -0.203125 0.015625 -0.289062 0.234375 -0.46875 C 0.460938 -0.65625 0.796875 -1.039062 1.234375 -1.625 L 5.984375 -8 Z M 5.015625 -5.65625 L 2.71875 -2.703125 L 4.71875 -2.703125 Z M 5.015625 -5.65625 "/>
154
+ </symbol>
155
+ <symbol overflow="visible" id="glyph2-12">
156
+ <path style="stroke:none;" d="M 0.078125 0 L 0.734375 -2.34375 L 0.9375 -2.34375 C 0.90625 -2.125 0.890625 -1.941406 0.890625 -1.796875 C 0.890625 -1.390625 1.0625 -1.054688 1.40625 -0.796875 C 1.75 -0.535156 2.195312 -0.40625 2.75 -0.40625 C 3.257812 -0.40625 3.644531 -0.554688 3.90625 -0.859375 C 4.175781 -1.160156 4.3125 -1.507812 4.3125 -1.90625 C 4.3125 -2.15625 4.25 -2.390625 4.125 -2.609375 C 3.945312 -2.921875 3.457031 -3.46875 2.65625 -4.25 C 2.269531 -4.632812 2.023438 -4.914062 1.921875 -5.09375 C 1.734375 -5.40625 1.640625 -5.722656 1.640625 -6.046875 C 1.640625 -6.578125 1.847656 -7.035156 2.265625 -7.421875 C 2.679688 -7.804688 3.210938 -8 3.859375 -8 C 4.078125 -8 4.285156 -8 4.484375 -8 C 4.609375 -8 4.828125 -8 5.140625 -8 C 5.367188 -8 5.492188 -8 5.515625 -8 C 5.578125 -8 5.640625 -8 5.703125 -8 C 5.816406 -8 5.914062 -8 6 -8 C 6.082031 -8 6.175781 -8 6.28125 -8 L 6.5 -8 L 5.890625 -5.953125 L 5.703125 -5.953125 C 5.710938 -6.128906 5.71875 -6.269531 5.71875 -6.375 C 5.71875 -6.726562 5.5625 -7.015625 5.25 -7.234375 C 4.9375 -7.453125 4.523438 -7.5625 4.015625 -7.5625 C 3.609375 -7.5625 3.273438 -7.445312 3.015625 -7.21875 C 2.765625 -6.988281 2.640625 -6.726562 2.640625 -6.4375 C 2.640625 -6.164062 2.71875 -5.910156 2.875 -5.671875 C 3.039062 -5.429688 3.414062 -5.039062 4 -4.5 C 4.582031 -3.96875 4.957031 -3.550781 5.125 -3.25 C 5.300781 -2.945312 5.390625 -2.617188 5.390625 -2.265625 C 5.390625 -1.878906 5.285156 -1.503906 5.078125 -1.140625 C 4.867188 -0.785156 4.5625 -0.503906 4.15625 -0.296875 C 3.757812 -0.0976562 3.328125 0 2.859375 0 C 2.617188 0 2.394531 0 2.1875 0 C 1.988281 0 1.664062 0 1.21875 0 C 1.070312 0 0.945312 0 0.84375 0 C 0.613281 0 0.4375 0 0.3125 0 Z M 0.078125 0 "/>
157
+ </symbol>
158
+ <symbol overflow="visible" id="glyph2-13">
159
+ <path style="stroke:none;" d="M 8.4375 -8 L 7.859375 -5.953125 L 7.640625 -5.953125 L 7.625 -6.5625 C 7.601562 -6.726562 7.554688 -6.875 7.484375 -7 C 7.410156 -7.125 7.300781 -7.234375 7.15625 -7.328125 C 7.019531 -7.421875 6.84375 -7.492188 6.625 -7.546875 C 6.414062 -7.597656 6.179688 -7.625 5.921875 -7.625 C 5.222656 -7.625 4.609375 -7.441406 4.078125 -7.078125 C 3.410156 -6.597656 2.890625 -5.929688 2.515625 -5.078125 C 2.203125 -4.367188 2.046875 -3.648438 2.046875 -2.921875 C 2.046875 -2.179688 2.269531 -1.585938 2.71875 -1.140625 C 3.164062 -0.703125 3.75 -0.484375 4.46875 -0.484375 C 5.007812 -0.484375 5.492188 -0.609375 5.921875 -0.859375 C 6.347656 -1.117188 6.742188 -1.507812 7.109375 -2.03125 L 7.375 -2.03125 C 6.945312 -1.332031 6.46875 -0.816406 5.9375 -0.484375 C 5.414062 -0.160156 4.789062 0 4.0625 0 C 3.414062 0 2.84375 -0.128906 2.34375 -0.390625 C 1.84375 -0.648438 1.460938 -1.015625 1.203125 -1.484375 C 0.941406 -1.960938 0.8125 -2.476562 0.8125 -3.03125 C 0.8125 -3.851562 1.039062 -4.660156 1.5 -5.453125 C 1.96875 -6.242188 2.609375 -6.863281 3.421875 -7.3125 C 4.234375 -7.769531 5.050781 -8 5.875 -8 C 6.257812 -8 6.691406 -8 7.171875 -8 C 7.378906 -8 7.53125 -8 7.625 -8 C 7.71875 -8 7.800781 -8 7.875 -8 C 7.945312 -8 8.066406 -8 8.234375 -8 Z M 8.4375 -8 "/>
160
+ </symbol>
161
+ <symbol overflow="visible" id="glyph2-14">
162
+ <path style="stroke:none;" d="M 2.953125 -0.203125 L 2.890625 0 L -0.375 0 L -0.296875 -0.203125 C 0.0351562 -0.203125 0.253906 -0.222656 0.359375 -0.265625 C 0.523438 -0.335938 0.648438 -0.4375 0.734375 -0.5625 C 0.867188 -0.738281 1.003906 -1.066406 1.140625 -1.546875 L 2.515625 -6.40625 C 2.640625 -6.8125 2.703125 -7.113281 2.703125 -7.3125 C 2.703125 -7.414062 2.675781 -7.5 2.625 -7.5625 C 2.570312 -7.632812 2.492188 -7.691406 2.390625 -7.734375 C 2.285156 -7.773438 2.082031 -7.796875 1.78125 -7.796875 L 1.859375 -8 L 4.921875 -8 L 4.859375 -7.796875 C 4.609375 -7.796875 4.421875 -7.769531 4.296875 -7.71875 C 4.117188 -7.632812 3.984375 -7.519531 3.890625 -7.375 C 3.804688 -7.226562 3.691406 -6.90625 3.546875 -6.40625 L 2.171875 -1.53125 C 2.046875 -1.082031 1.984375 -0.796875 1.984375 -0.671875 C 1.984375 -0.566406 2.003906 -0.484375 2.046875 -0.421875 C 2.097656 -0.359375 2.175781 -0.304688 2.28125 -0.265625 C 2.394531 -0.222656 2.617188 -0.203125 2.953125 -0.203125 Z M 2.953125 -0.203125 "/>
163
+ </symbol>
164
+ <symbol overflow="visible" id="glyph2-15">
165
+ <path style="stroke:none;" d="M 4.359375 -5 L 4 -3.5625 L 3.78125 -3.5625 C 3.757812 -3.96875 3.644531 -4.257812 3.4375 -4.4375 C 3.238281 -4.625 2.988281 -4.71875 2.6875 -4.71875 C 2.445312 -4.71875 2.253906 -4.65625 2.109375 -4.53125 C 1.972656 -4.414062 1.90625 -4.269531 1.90625 -4.09375 C 1.90625 -3.976562 1.929688 -3.863281 1.984375 -3.75 C 2.035156 -3.644531 2.160156 -3.492188 2.359375 -3.296875 C 2.867188 -2.796875 3.195312 -2.414062 3.34375 -2.15625 C 3.488281 -1.894531 3.5625 -1.648438 3.5625 -1.421875 C 3.5625 -1.046875 3.390625 -0.710938 3.046875 -0.421875 C 2.710938 -0.140625 2.289062 0 1.78125 0 C 1.5 0 1.171875 0 0.796875 0 C 0.671875 0 0.570312 0 0.5 0 C 0.320312 0 0.191406 0 0.109375 0 L -0.109375 0 L 0.25 -1.53125 L 0.46875 -1.53125 C 0.488281 -1.0625 0.609375 -0.726562 0.828125 -0.53125 C 1.054688 -0.34375 1.363281 -0.25 1.75 -0.25 C 2.039062 -0.25 2.273438 -0.320312 2.453125 -0.46875 C 2.628906 -0.625 2.71875 -0.816406 2.71875 -1.046875 C 2.71875 -1.179688 2.6875 -1.3125 2.625 -1.4375 C 2.507812 -1.644531 2.273438 -1.941406 1.921875 -2.328125 C 1.578125 -2.710938 1.351562 -3 1.25 -3.1875 C 1.15625 -3.382812 1.109375 -3.578125 1.109375 -3.765625 C 1.109375 -4.109375 1.242188 -4.398438 1.515625 -4.640625 C 1.796875 -4.878906 2.148438 -5 2.578125 -5 C 2.703125 -5 2.816406 -5 2.921875 -5 C 2.972656 -5 3.097656 -5 3.296875 -5 C 3.503906 -5 3.640625 -5 3.703125 -5 C 3.878906 -5 4.019531 -5 4.125 -5 Z M 4.359375 -5 "/>
166
+ </symbol>
167
+ <symbol overflow="visible" id="glyph2-16">
168
+ <path style="stroke:none;" d="M 2.65625 -5 L 2.25 -3.75 C 2.675781 -4.207031 3.054688 -4.53125 3.390625 -4.71875 C 3.722656 -4.90625 4.0625 -5 4.40625 -5 C 4.757812 -5 5.054688 -4.867188 5.296875 -4.609375 C 5.546875 -4.359375 5.671875 -4.03125 5.671875 -3.625 C 5.671875 -2.84375 5.320312 -2.039062 4.625 -1.21875 C 3.925781 -0.40625 3.113281 0 2.1875 0 C 1.988281 0 1.8125 -0.015625 1.65625 -0.046875 C 1.507812 -0.0859375 1.34375 -0.160156 1.15625 -0.265625 L 0.734375 0.984375 C 0.640625 1.222656 0.59375 1.378906 0.59375 1.453125 C 0.59375 1.523438 0.613281 1.585938 0.65625 1.640625 C 0.707031 1.691406 0.78125 1.726562 0.875 1.75 C 0.976562 1.78125 1.179688 1.796875 1.484375 1.796875 L 1.4375 2 L -1.328125 2 L -1.265625 1.796875 C -0.898438 1.796875 -0.65625 1.742188 -0.53125 1.640625 C -0.40625 1.546875 -0.269531 1.28125 -0.125 0.84375 L 1.359375 -3.703125 C 1.441406 -4.003906 1.484375 -4.1875 1.484375 -4.25 C 1.484375 -4.34375 1.453125 -4.414062 1.390625 -4.46875 C 1.335938 -4.519531 1.25 -4.546875 1.125 -4.546875 C 1.007812 -4.546875 0.847656 -4.535156 0.640625 -4.515625 L 0.640625 -4.71875 Z M 1.296875 -0.6875 C 1.535156 -0.425781 1.859375 -0.296875 2.265625 -0.296875 C 2.472656 -0.296875 2.679688 -0.347656 2.890625 -0.453125 C 3.097656 -0.554688 3.300781 -0.707031 3.5 -0.90625 C 3.707031 -1.113281 3.890625 -1.351562 4.046875 -1.625 C 4.210938 -1.894531 4.359375 -2.207031 4.484375 -2.5625 C 4.609375 -2.925781 4.671875 -3.285156 4.671875 -3.640625 C 4.671875 -3.929688 4.597656 -4.15625 4.453125 -4.3125 C 4.316406 -4.46875 4.148438 -4.546875 3.953125 -4.546875 C 3.535156 -4.546875 3.117188 -4.320312 2.703125 -3.875 C 2.296875 -3.425781 1.992188 -2.90625 1.796875 -2.3125 Z M 1.296875 -0.6875 "/>
169
+ </symbol>
170
+ <symbol overflow="visible" id="glyph2-17">
171
+ <path style="stroke:none;" d="M 3.875 -5 L 4.046875 -6.5 C 4.085938 -6.894531 4.117188 -7.125 4.140625 -7.1875 C 4.191406 -7.40625 4.257812 -7.578125 4.34375 -7.703125 C 4.40625 -7.785156 4.492188 -7.851562 4.609375 -7.90625 C 4.722656 -7.96875 4.851562 -8 5 -8 C 5.132812 -8 5.238281 -7.96875 5.3125 -7.90625 C 5.382812 -7.84375 5.421875 -7.757812 5.421875 -7.65625 C 5.421875 -7.550781 5.394531 -7.429688 5.34375 -7.296875 C 5.195312 -6.941406 5.070312 -6.675781 4.96875 -6.5 L 4.15625 -5 Z M 1.71875 -5 L 1.90625 -6.515625 C 1.957031 -6.953125 2.007812 -7.25 2.0625 -7.40625 C 2.132812 -7.613281 2.238281 -7.765625 2.375 -7.859375 C 2.507812 -7.953125 2.660156 -8 2.828125 -8 C 2.960938 -8 3.070312 -7.960938 3.15625 -7.890625 C 3.238281 -7.828125 3.28125 -7.742188 3.28125 -7.640625 C 3.28125 -7.554688 3.257812 -7.460938 3.21875 -7.359375 C 3.164062 -7.222656 3.023438 -6.941406 2.796875 -6.515625 L 1.96875 -5 Z M 1.71875 -5 "/>
172
+ </symbol>
173
+ <symbol overflow="visible" id="glyph2-18">
174
+ <path style="stroke:none;" d="M 2.65625 -5 L 1.875 -2.484375 C 2.601562 -3.515625 3.160156 -4.191406 3.546875 -4.515625 C 3.929688 -4.835938 4.304688 -5 4.671875 -5 C 4.867188 -5 5.03125 -4.9375 5.15625 -4.8125 C 5.28125 -4.695312 5.34375 -4.539062 5.34375 -4.34375 C 5.34375 -4.125 5.285156 -3.832031 5.171875 -3.46875 L 4.453125 -1.140625 C 4.378906 -0.867188 4.34375 -0.703125 4.34375 -0.640625 C 4.34375 -0.585938 4.359375 -0.539062 4.390625 -0.5 C 4.421875 -0.46875 4.453125 -0.453125 4.484375 -0.453125 C 4.523438 -0.453125 4.582031 -0.476562 4.65625 -0.53125 C 4.863281 -0.6875 5.085938 -0.921875 5.328125 -1.234375 L 5.515625 -1.125 C 5.148438 -0.675781 4.804688 -0.363281 4.484375 -0.1875 C 4.253906 -0.0625 4.050781 0 3.875 0 C 3.726562 0 3.613281 -0.0351562 3.53125 -0.109375 C 3.445312 -0.191406 3.40625 -0.300781 3.40625 -0.4375 C 3.40625 -0.613281 3.46875 -0.910156 3.59375 -1.328125 L 4.28125 -3.5 C 4.363281 -3.757812 4.40625 -3.960938 4.40625 -4.109375 C 4.40625 -4.179688 4.378906 -4.238281 4.328125 -4.28125 C 4.273438 -4.332031 4.210938 -4.359375 4.140625 -4.359375 C 4.035156 -4.359375 3.90625 -4.3125 3.75 -4.21875 C 3.457031 -4.0625 3.15625 -3.789062 2.84375 -3.40625 C 2.53125 -3.019531 2.203125 -2.53125 1.859375 -1.9375 C 1.671875 -1.625 1.519531 -1.28125 1.40625 -0.90625 L 1.109375 0 L 0.234375 0 L 1.296875 -3.46875 C 1.421875 -3.882812 1.484375 -4.132812 1.484375 -4.21875 C 1.484375 -4.300781 1.445312 -4.367188 1.375 -4.421875 C 1.3125 -4.484375 1.226562 -4.515625 1.125 -4.515625 C 1.082031 -4.515625 1 -4.507812 0.875 -4.5 L 0.65625 -4.46875 L 0.625 -4.65625 Z M 2.65625 -5 "/>
175
+ </symbol>
176
+ <symbol overflow="visible" id="glyph2-19">
177
+ <path style="stroke:none;" d="M 1.921875 -5.015625 C 2.046875 -4.804688 2.132812 -4.613281 2.1875 -4.4375 C 2.238281 -4.257812 2.289062 -3.921875 2.34375 -3.421875 L 2.609375 -0.890625 C 2.835938 -1.128906 3.175781 -1.519531 3.625 -2.0625 C 3.832031 -2.320312 4.097656 -2.679688 4.421875 -3.140625 C 4.609375 -3.410156 4.722656 -3.597656 4.765625 -3.703125 C 4.796875 -3.765625 4.8125 -3.820312 4.8125 -3.875 C 4.8125 -3.914062 4.796875 -3.945312 4.765625 -3.96875 C 4.734375 -4 4.660156 -4.023438 4.546875 -4.046875 C 4.429688 -4.078125 4.335938 -4.132812 4.265625 -4.21875 C 4.191406 -4.3125 4.15625 -4.414062 4.15625 -4.53125 C 4.15625 -4.675781 4.203125 -4.789062 4.296875 -4.875 C 4.390625 -4.957031 4.503906 -5 4.640625 -5 C 4.816406 -5 4.960938 -4.9375 5.078125 -4.8125 C 5.203125 -4.6875 5.265625 -4.515625 5.265625 -4.296875 C 5.265625 -4.015625 5.15625 -3.695312 4.9375 -3.34375 C 4.726562 -3 4.320312 -2.457031 3.71875 -1.71875 C 3.125 -0.988281 2.398438 -0.203125 1.546875 0.640625 C 0.953125 1.242188 0.507812 1.617188 0.21875 1.765625 C -0.0625 1.921875 -0.300781 2 -0.5 2 C -0.625 2 -0.734375 1.957031 -0.828125 1.875 C -0.921875 1.789062 -0.96875 1.691406 -0.96875 1.578125 C -0.96875 1.429688 -0.898438 1.296875 -0.765625 1.171875 C -0.640625 1.054688 -0.503906 1 -0.359375 1 C -0.273438 1 -0.210938 1.019531 -0.171875 1.0625 C -0.140625 1.070312 -0.101562 1.117188 -0.0625 1.203125 C -0.0195312 1.296875 0.015625 1.359375 0.046875 1.390625 C 0.0664062 1.410156 0.0859375 1.421875 0.109375 1.421875 C 0.128906 1.421875 0.171875 1.398438 0.234375 1.359375 C 0.453125 1.234375 0.703125 1.039062 0.984375 0.78125 C 1.359375 0.4375 1.632812 0.160156 1.8125 -0.046875 L 1.484375 -3.3125 C 1.429688 -3.851562 1.347656 -4.179688 1.234375 -4.296875 C 1.128906 -4.410156 0.945312 -4.46875 0.6875 -4.46875 C 0.601562 -4.46875 0.457031 -4.457031 0.25 -4.4375 L 0.203125 -4.625 Z M 1.921875 -5.015625 "/>
178
+ </symbol>
179
+ <symbol overflow="visible" id="glyph2-20">
180
+ <path style="stroke:none;" d="M 2.6875 -6.953125 C 2.851562 -6.953125 2.988281 -6.894531 3.09375 -6.78125 C 3.207031 -6.675781 3.265625 -6.550781 3.265625 -6.40625 C 3.265625 -6.257812 3.207031 -6.128906 3.09375 -6.015625 C 2.976562 -5.910156 2.84375 -5.859375 2.6875 -5.859375 C 2.519531 -5.859375 2.378906 -5.910156 2.265625 -6.015625 C 2.148438 -6.128906 2.09375 -6.257812 2.09375 -6.40625 C 2.09375 -6.550781 2.148438 -6.675781 2.265625 -6.78125 C 2.378906 -6.894531 2.519531 -6.953125 2.6875 -6.953125 Z M 2.765625 -4.84375 L 1.59375 -1.171875 C 1.519531 -0.929688 1.484375 -0.785156 1.484375 -0.734375 C 1.484375 -0.679688 1.5 -0.632812 1.53125 -0.59375 C 1.570312 -0.5625 1.617188 -0.546875 1.671875 -0.546875 C 1.734375 -0.546875 1.800781 -0.578125 1.875 -0.640625 C 2.101562 -0.796875 2.332031 -1.015625 2.5625 -1.296875 L 2.765625 -1.171875 C 2.492188 -0.804688 2.179688 -0.503906 1.828125 -0.265625 C 1.554688 -0.0859375 1.300781 0 1.0625 0 C 0.90625 0 0.773438 -0.0390625 0.671875 -0.125 C 0.566406 -0.207031 0.515625 -0.3125 0.515625 -0.4375 C 0.515625 -0.570312 0.5625 -0.785156 0.65625 -1.078125 L 1.421875 -3.421875 C 1.546875 -3.804688 1.609375 -4.046875 1.609375 -4.140625 C 1.609375 -4.222656 1.578125 -4.285156 1.515625 -4.328125 C 1.460938 -4.378906 1.378906 -4.40625 1.265625 -4.40625 C 1.179688 -4.40625 1.003906 -4.382812 0.734375 -4.34375 L 0.734375 -4.546875 Z M 2.765625 -4.84375 "/>
181
+ </symbol>
182
+ <symbol overflow="visible" id="glyph2-21">
183
+ <path style="stroke:none;" d="M 3.5625 -7.96875 L 1.5625 -1.3125 C 1.46875 -0.976562 1.421875 -0.773438 1.421875 -0.703125 C 1.421875 -0.640625 1.4375 -0.585938 1.46875 -0.546875 C 1.507812 -0.515625 1.554688 -0.5 1.609375 -0.5 C 1.679688 -0.5 1.765625 -0.53125 1.859375 -0.59375 C 2.054688 -0.75 2.265625 -0.988281 2.484375 -1.3125 L 2.671875 -1.140625 C 2.296875 -0.691406 1.953125 -0.375 1.640625 -0.1875 C 1.410156 -0.0625 1.191406 0 0.984375 0 C 0.835938 0 0.710938 -0.046875 0.609375 -0.140625 C 0.515625 -0.234375 0.46875 -0.34375 0.46875 -0.46875 C 0.46875 -0.601562 0.53125 -0.875 0.65625 -1.28125 L 2.234375 -6.453125 C 2.367188 -6.878906 2.4375 -7.125 2.4375 -7.1875 C 2.4375 -7.28125 2.394531 -7.351562 2.3125 -7.40625 C 2.238281 -7.46875 2.125 -7.5 1.96875 -7.5 C 1.882812 -7.5 1.75 -7.484375 1.5625 -7.453125 L 1.5625 -7.65625 Z M 3.5625 -7.96875 "/>
184
+ </symbol>
185
+ <symbol overflow="visible" id="glyph2-22">
186
+ <path style="stroke:none;" d="M 3.46875 -7.96875 L 2.3125 -4.0625 C 2.6875 -4.414062 3.007812 -4.660156 3.28125 -4.796875 C 3.5625 -4.929688 3.859375 -5 4.171875 -5 C 4.597656 -5 4.945312 -4.867188 5.21875 -4.609375 C 5.488281 -4.347656 5.625 -3.988281 5.625 -3.53125 C 5.625 -2.957031 5.441406 -2.382812 5.078125 -1.8125 C 4.722656 -1.238281 4.273438 -0.789062 3.734375 -0.46875 C 3.191406 -0.15625 2.660156 0 2.140625 0 C 1.546875 0 0.9375 -0.203125 0.3125 -0.609375 L 2.09375 -6.390625 C 2.226562 -6.835938 2.296875 -7.097656 2.296875 -7.171875 C 2.296875 -7.273438 2.265625 -7.347656 2.203125 -7.390625 C 2.117188 -7.460938 1.988281 -7.5 1.8125 -7.5 C 1.726562 -7.5 1.601562 -7.484375 1.4375 -7.453125 L 1.4375 -7.671875 Z M 1.203125 -0.546875 C 1.585938 -0.347656 1.929688 -0.25 2.234375 -0.25 C 2.578125 -0.25 2.929688 -0.363281 3.296875 -0.59375 C 3.660156 -0.832031 3.976562 -1.222656 4.25 -1.765625 C 4.53125 -2.316406 4.671875 -2.867188 4.671875 -3.421875 C 4.671875 -3.753906 4.578125 -4.015625 4.390625 -4.203125 C 4.210938 -4.390625 4.003906 -4.484375 3.765625 -4.484375 C 3.398438 -4.484375 3.046875 -4.347656 2.703125 -4.078125 C 2.359375 -3.816406 2.109375 -3.445312 1.953125 -2.96875 Z M 1.203125 -0.546875 "/>
187
+ </symbol>
188
+ <symbol overflow="visible" id="glyph2-23">
189
+ <path style="stroke:none;" d="M 5.65625 -5 L 4.625 -1.703125 C 4.476562 -1.210938 4.40625 -0.898438 4.40625 -0.765625 C 4.40625 -0.703125 4.414062 -0.65625 4.4375 -0.625 C 4.46875 -0.59375 4.503906 -0.578125 4.546875 -0.578125 C 4.609375 -0.578125 4.675781 -0.601562 4.75 -0.65625 C 4.832031 -0.71875 5.039062 -0.945312 5.375 -1.34375 L 5.546875 -1.21875 C 5.234375 -0.757812 4.914062 -0.421875 4.59375 -0.203125 C 4.375 -0.0664062 4.164062 0 3.96875 0 C 3.820312 0 3.703125 -0.0351562 3.609375 -0.109375 C 3.523438 -0.191406 3.484375 -0.296875 3.484375 -0.421875 C 3.484375 -0.554688 3.507812 -0.722656 3.5625 -0.921875 C 3.625 -1.203125 3.800781 -1.796875 4.09375 -2.703125 C 3.425781 -1.679688 2.867188 -0.972656 2.421875 -0.578125 C 1.984375 -0.191406 1.570312 0 1.1875 0 C 1.007812 0 0.859375 -0.0546875 0.734375 -0.171875 C 0.609375 -0.285156 0.546875 -0.4375 0.546875 -0.625 C 0.546875 -0.894531 0.628906 -1.316406 0.796875 -1.890625 L 1.3125 -3.59375 C 1.4375 -4.007812 1.5 -4.265625 1.5 -4.359375 C 1.5 -4.398438 1.476562 -4.4375 1.4375 -4.46875 C 1.40625 -4.5 1.375 -4.515625 1.34375 -4.515625 C 1.257812 -4.515625 1.175781 -4.488281 1.09375 -4.4375 C 1.007812 -4.382812 0.820312 -4.175781 0.53125 -3.8125 L 0.359375 -3.9375 C 0.648438 -4.320312 0.957031 -4.601562 1.28125 -4.78125 C 1.53125 -4.925781 1.757812 -5 1.96875 -5 C 2.113281 -5 2.234375 -4.957031 2.328125 -4.875 C 2.421875 -4.789062 2.46875 -4.6875 2.46875 -4.5625 C 2.46875 -4.363281 2.390625 -4.015625 2.234375 -3.515625 L 1.6875 -1.78125 C 1.53125 -1.3125 1.453125 -1.015625 1.453125 -0.890625 C 1.453125 -0.816406 1.472656 -0.757812 1.515625 -0.71875 C 1.566406 -0.675781 1.632812 -0.65625 1.71875 -0.65625 C 1.851562 -0.65625 2.019531 -0.710938 2.21875 -0.828125 C 2.425781 -0.953125 2.703125 -1.222656 3.046875 -1.640625 C 3.398438 -2.066406 3.6875 -2.460938 3.90625 -2.828125 C 4.132812 -3.191406 4.375 -3.773438 4.625 -4.578125 L 4.765625 -5 Z M 5.65625 -5 "/>
190
+ </symbol>
191
+ <symbol overflow="visible" id="glyph2-24">
192
+ <path style="stroke:none;" d="M 2.609375 -5 L 1.84375 -2.515625 C 2.175781 -3.097656 2.460938 -3.535156 2.703125 -3.828125 C 3.078125 -4.285156 3.441406 -4.617188 3.796875 -4.828125 C 4.003906 -4.941406 4.21875 -5 4.4375 -5 C 4.632812 -5 4.796875 -4.941406 4.921875 -4.828125 C 5.054688 -4.710938 5.125 -4.5625 5.125 -4.375 C 5.125 -4.195312 5.078125 -3.960938 4.984375 -3.671875 L 4.578125 -2.265625 C 5.210938 -3.390625 5.8125 -4.175781 6.375 -4.625 C 6.695312 -4.875 7.007812 -5 7.3125 -5 C 7.5 -5 7.648438 -4.941406 7.765625 -4.828125 C 7.878906 -4.710938 7.9375 -4.535156 7.9375 -4.296875 C 7.9375 -4.078125 7.898438 -3.847656 7.828125 -3.609375 L 7.1875 -1.453125 C 7.039062 -0.984375 6.96875 -0.726562 6.96875 -0.6875 C 6.96875 -0.632812 6.988281 -0.585938 7.03125 -0.546875 C 7.050781 -0.523438 7.082031 -0.515625 7.125 -0.515625 C 7.15625 -0.515625 7.222656 -0.546875 7.328125 -0.609375 C 7.546875 -0.773438 7.753906 -0.992188 7.953125 -1.265625 L 8.140625 -1.140625 C 8.046875 -1.003906 7.875 -0.816406 7.625 -0.578125 C 7.375 -0.347656 7.160156 -0.191406 6.984375 -0.109375 C 6.816406 -0.0351562 6.65625 0 6.5 0 C 6.363281 0 6.25 -0.0390625 6.15625 -0.125 C 6.070312 -0.207031 6.03125 -0.3125 6.03125 -0.4375 C 6.03125 -0.613281 6.109375 -0.957031 6.265625 -1.46875 L 6.796875 -3.203125 C 6.921875 -3.597656 6.984375 -3.816406 6.984375 -3.859375 C 7.003906 -3.929688 7.015625 -4 7.015625 -4.0625 C 7.015625 -4.144531 6.988281 -4.210938 6.9375 -4.265625 C 6.894531 -4.316406 6.84375 -4.34375 6.78125 -4.34375 C 6.625 -4.34375 6.453125 -4.265625 6.265625 -4.109375 C 5.722656 -3.640625 5.21875 -2.984375 4.75 -2.140625 C 4.445312 -1.585938 4.160156 -0.875 3.890625 0 L 3 0 L 4 -3.328125 C 4.113281 -3.691406 4.171875 -3.9375 4.171875 -4.0625 C 4.171875 -4.15625 4.144531 -4.222656 4.09375 -4.265625 C 4.050781 -4.316406 4 -4.34375 3.9375 -4.34375 C 3.8125 -4.34375 3.675781 -4.300781 3.53125 -4.21875 C 3.300781 -4.070312 3 -3.757812 2.625 -3.28125 C 2.257812 -2.8125 1.972656 -2.367188 1.765625 -1.953125 C 1.671875 -1.742188 1.441406 -1.09375 1.078125 0 L 0.203125 0 L 1.296875 -3.578125 L 1.4375 -4.046875 C 1.457031 -4.117188 1.46875 -4.171875 1.46875 -4.203125 C 1.46875 -4.285156 1.425781 -4.359375 1.34375 -4.421875 C 1.269531 -4.484375 1.175781 -4.515625 1.0625 -4.515625 C 1.007812 -4.515625 0.867188 -4.492188 0.640625 -4.453125 L 0.578125 -4.65625 Z M 2.609375 -5 "/>
193
+ </symbol>
194
+ </g>
195
+ </defs>
196
+ <g id="surface5">
197
+ <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 0 0 L 499.835938 0 L 499.835938 2518.800781 L 0 2518.800781 Z M 0 0 "/>
198
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
199
+ <use xlink:href="#glyph0-1" x="24" y="32.5"/>
200
+ <use xlink:href="#glyph0-2" x="28.669922" y="32.5"/>
201
+ <use xlink:href="#glyph0-3" x="33.996094" y="32.5"/>
202
+ <use xlink:href="#glyph0-4" x="40.669922" y="32.5"/>
203
+ <use xlink:href="#glyph0-5" x="44.003906" y="32.5"/>
204
+ <use xlink:href="#glyph0-6" x="50.003906" y="32.5"/>
205
+ </g>
206
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48 78 L 118.511719 78 L 118.511719 104.832031 L 48 104.832031 Z M 48 78 "/>
207
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
208
+ <use xlink:href="#glyph0-1" x="55.414062" y="94.414062"/>
209
+ <use xlink:href="#glyph0-2" x="60.083984" y="94.414062"/>
210
+ <use xlink:href="#glyph0-3" x="65.410156" y="94.414062"/>
211
+ <use xlink:href="#glyph0-4" x="72.083984" y="94.414062"/>
212
+ <use xlink:href="#glyph0-5" x="75.417969" y="94.414062"/>
213
+ <use xlink:href="#glyph0-6" x="81.417969" y="94.414062"/>
214
+ <use xlink:href="#glyph0-7" x="87.417969" y="94.414062"/>
215
+ <use xlink:href="#glyph0-8" x="90.417969" y="94.414062"/>
216
+ <use xlink:href="#glyph0-9" x="95.087891" y="94.414062"/>
217
+ <use xlink:href="#glyph0-10" x="101.761719" y="94.414062"/>
218
+ <use xlink:href="#glyph0-11" x="105.095703" y="94.414062"/>
219
+ </g>
220
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.511719 78 L 243.027344 78 L 243.027344 104.832031 L 172.511719 104.832031 Z M 172.511719 78 "/>
221
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
222
+ <use xlink:href="#glyph0-1" x="179.929688" y="94.414062"/>
223
+ <use xlink:href="#glyph0-2" x="184.599609" y="94.414062"/>
224
+ <use xlink:href="#glyph0-3" x="189.925781" y="94.414062"/>
225
+ <use xlink:href="#glyph0-4" x="196.599609" y="94.414062"/>
226
+ <use xlink:href="#glyph0-5" x="199.933594" y="94.414062"/>
227
+ <use xlink:href="#glyph0-6" x="205.933594" y="94.414062"/>
228
+ <use xlink:href="#glyph0-7" x="211.933594" y="94.414062"/>
229
+ <use xlink:href="#glyph0-8" x="214.933594" y="94.414062"/>
230
+ <use xlink:href="#glyph0-9" x="219.603516" y="94.414062"/>
231
+ <use xlink:href="#glyph0-10" x="226.277344" y="94.414062"/>
232
+ <use xlink:href="#glyph0-11" x="229.611328" y="94.414062"/>
233
+ </g>
234
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 136.511719 91.414062 L 172.511719 91.414062 "/>
235
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.027344 91.414062 L 279.027344 91.414062 "/>
236
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 136.511719 91.414062 L 147.097656 91.414062 "/>
237
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 147.097656 91.414062 C 151.195312 91.414062 154.511719 94.734375 154.511719 98.832031 "/>
238
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.511719 98.832031 L 154.511719 107.125 "/>
239
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.511719 122.832031 L 161.929688 122.832031 "/>
240
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.929688 122.832031 C 157.832031 122.832031 154.511719 119.511719 154.511719 115.414062 "/>
241
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.511719 115.414062 L 154.511719 107.125 "/>
242
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.511719 122.832031 L 243.027344 122.832031 "/>
243
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.027344 107.125 L 261.027344 115.414062 "/>
244
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.027344 115.414062 C 261.027344 119.511719 257.707031 122.832031 253.609375 122.832031 "/>
245
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 253.609375 122.832031 L 243.027344 122.832031 "/>
246
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.027344 107.125 L 261.027344 98.832031 "/>
247
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.027344 98.832031 C 261.027344 94.734375 264.347656 91.414062 268.441406 91.414062 "/>
248
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 268.441406 91.414062 L 279.027344 91.414062 "/>
249
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.511719 91.414062 L 161.929688 91.414062 "/>
250
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.929688 91.414062 C 157.832031 91.414062 154.511719 88.097656 154.511719 84 "/>
251
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.511719 84 L 154.511719 75.707031 "/>
252
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.511719 75.707031 L 154.511719 67.414062 "/>
253
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.511719 67.414062 C 154.511719 63.320312 157.832031 60 161.929688 60 "/>
254
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.929688 60 L 172.511719 60 "/>
255
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.511719 60 L 243.027344 60 "/>
256
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.027344 60 L 253.609375 60 "/>
257
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 253.609375 60 C 257.707031 60 261.027344 63.320312 261.027344 67.414062 "/>
258
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.027344 67.414062 L 261.027344 75.707031 "/>
259
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.027344 75.707031 L 261.027344 84 "/>
260
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.027344 84 C 261.027344 88.097656 257.707031 91.414062 253.609375 91.414062 "/>
261
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 253.609375 91.414062 L 243.027344 91.414062 "/>
262
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.511719 91.414062 L 136.511719 91.414062 "/>
263
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 91.414062 L 48 91.414062 "/>
264
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.027344 91.414062 L 303.027344 91.414062 "/>
265
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 85.414062 L 24 97.414062 "/>
266
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 303.027344 85.414062 L 303.027344 97.414062 "/>
267
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
268
+ <use xlink:href="#glyph0-1" x="24" y="179.832031"/>
269
+ <use xlink:href="#glyph0-2" x="28.669922" y="179.832031"/>
270
+ <use xlink:href="#glyph0-3" x="33.996094" y="179.832031"/>
271
+ <use xlink:href="#glyph0-4" x="40.669922" y="179.832031"/>
272
+ <use xlink:href="#glyph0-5" x="44.003906" y="179.832031"/>
273
+ <use xlink:href="#glyph0-6" x="50.003906" y="179.832031"/>
274
+ <use xlink:href="#glyph0-7" x="56.003906" y="179.832031"/>
275
+ <use xlink:href="#glyph0-8" x="59.003906" y="179.832031"/>
276
+ <use xlink:href="#glyph0-9" x="63.673828" y="179.832031"/>
277
+ <use xlink:href="#glyph0-10" x="70.347656" y="179.832031"/>
278
+ <use xlink:href="#glyph0-11" x="73.681641" y="179.832031"/>
279
+ </g>
280
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48 206.832031 L 135.484375 206.832031 L 135.484375 233.664062 L 48 233.664062 Z M 48 206.832031 "/>
281
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
282
+ <use xlink:href="#glyph0-12" x="55.414062" y="223.246094"/>
283
+ <use xlink:href="#glyph0-11" x="64.748047" y="223.246094"/>
284
+ <use xlink:href="#glyph0-4" x="70.074219" y="223.246094"/>
285
+ <use xlink:href="#glyph0-5" x="73.408203" y="223.246094"/>
286
+ <use xlink:href="#glyph0-7" x="79.408203" y="223.246094"/>
287
+ <use xlink:href="#glyph0-13" x="82.408203" y="223.246094"/>
288
+ <use xlink:href="#glyph0-14" x="85.742188" y="223.246094"/>
289
+ <use xlink:href="#glyph0-11" x="91.742188" y="223.246094"/>
290
+ <use xlink:href="#glyph0-3" x="97.068359" y="223.246094"/>
291
+ <use xlink:href="#glyph0-4" x="103.742188" y="223.246094"/>
292
+ <use xlink:href="#glyph0-13" x="107.076172" y="223.246094"/>
293
+ <use xlink:href="#glyph0-15" x="110.410156" y="223.246094"/>
294
+ <use xlink:href="#glyph0-13" x="114.40625" y="223.246094"/>
295
+ <use xlink:href="#glyph0-11" x="117.740234" y="223.246094"/>
296
+ <use xlink:href="#glyph0-8" x="123.066406" y="223.246094"/>
297
+ </g>
298
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.898438 206.832031 L 167.898438 206.832031 C 171.609375 206.832031 175.316406 210.539062 175.316406 214.246094 L 175.316406 226.246094 C 175.316406 229.957031 171.609375 233.664062 167.898438 233.664062 L 160.898438 233.664062 C 157.191406 233.664062 153.484375 229.957031 153.484375 226.246094 L 153.484375 214.246094 C 153.484375 210.539062 157.191406 206.832031 160.898438 206.832031 Z M 160.898438 206.832031 "/>
299
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
300
+ <use xlink:href="#glyph1-1" x="160.898438" y="224.746094"/>
301
+ </g>
302
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 193.316406 206.832031 L 279.160156 206.832031 L 279.160156 233.664062 L 193.316406 233.664062 Z M 193.316406 206.832031 "/>
303
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
304
+ <use xlink:href="#glyph0-14" x="200.730469" y="223.246094"/>
305
+ <use xlink:href="#glyph0-11" x="206.730469" y="223.246094"/>
306
+ <use xlink:href="#glyph0-15" x="212.056641" y="223.246094"/>
307
+ <use xlink:href="#glyph0-13" x="216.052734" y="223.246094"/>
308
+ <use xlink:href="#glyph0-3" x="219.386719" y="223.246094"/>
309
+ <use xlink:href="#glyph0-13" x="226.060547" y="223.246094"/>
310
+ <use xlink:href="#glyph0-4" x="229.394531" y="223.246094"/>
311
+ <use xlink:href="#glyph0-13" x="232.728516" y="223.246094"/>
312
+ <use xlink:href="#glyph0-16" x="236.0625" y="223.246094"/>
313
+ <use xlink:href="#glyph0-3" x="242.0625" y="223.246094"/>
314
+ <use xlink:href="#glyph0-1" x="248.736328" y="223.246094"/>
315
+ <use xlink:href="#glyph0-7" x="253.40625" y="223.246094"/>
316
+ <use xlink:href="#glyph0-10" x="256.40625" y="223.246094"/>
317
+ <use xlink:href="#glyph0-13" x="259.740234" y="223.246094"/>
318
+ <use xlink:href="#glyph0-1" x="263.074219" y="223.246094"/>
319
+ <use xlink:href="#glyph0-4" x="267.744141" y="223.246094"/>
320
+ </g>
321
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 304.578125 206.832031 L 307.578125 206.832031 C 311.285156 206.832031 314.992188 210.539062 314.992188 214.246094 L 314.992188 226.246094 C 314.992188 229.957031 311.285156 233.664062 307.578125 233.664062 L 304.578125 233.664062 C 300.871094 233.664062 297.160156 229.957031 297.160156 226.246094 L 297.160156 214.246094 C 297.160156 210.539062 300.871094 206.832031 304.578125 206.832031 Z M 304.578125 206.832031 "/>
322
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
323
+ <use xlink:href="#glyph1-2" x="304.578125" y="222.246094"/>
324
+ </g>
325
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.484375 220.246094 L 153.484375 220.246094 "/>
326
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 175.316406 220.246094 L 193.316406 220.246094 "/>
327
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.160156 220.246094 L 297.160156 220.246094 "/>
328
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 220.246094 L 48 220.246094 "/>
329
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.992188 220.246094 L 338.992188 220.246094 "/>
330
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 214.246094 L 24 226.246094 "/>
331
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 338.992188 214.246094 L 338.992188 226.246094 "/>
332
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
333
+ <use xlink:href="#glyph0-14" x="24" y="290.664062"/>
334
+ <use xlink:href="#glyph0-11" x="30" y="290.664062"/>
335
+ <use xlink:href="#glyph0-15" x="35.326172" y="290.664062"/>
336
+ <use xlink:href="#glyph0-13" x="39.322266" y="290.664062"/>
337
+ <use xlink:href="#glyph0-3" x="42.65625" y="290.664062"/>
338
+ <use xlink:href="#glyph0-13" x="49.330078" y="290.664062"/>
339
+ <use xlink:href="#glyph0-4" x="52.664062" y="290.664062"/>
340
+ <use xlink:href="#glyph0-13" x="55.998047" y="290.664062"/>
341
+ <use xlink:href="#glyph0-16" x="59.332031" y="290.664062"/>
342
+ <use xlink:href="#glyph0-3" x="65.332031" y="290.664062"/>
343
+ <use xlink:href="#glyph0-1" x="72.005859" y="290.664062"/>
344
+ <use xlink:href="#glyph0-7" x="76.675781" y="290.664062"/>
345
+ <use xlink:href="#glyph0-10" x="79.675781" y="290.664062"/>
346
+ <use xlink:href="#glyph0-13" x="83.009766" y="290.664062"/>
347
+ <use xlink:href="#glyph0-1" x="86.34375" y="290.664062"/>
348
+ <use xlink:href="#glyph0-4" x="91.013672" y="290.664062"/>
349
+ </g>
350
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48 335.664062 L 143.5 335.664062 L 143.5 362.496094 L 48 362.496094 Z M 48 335.664062 "/>
351
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
352
+ <use xlink:href="#glyph0-1" x="55.414062" y="352.078125"/>
353
+ <use xlink:href="#glyph0-13" x="60.083984" y="352.078125"/>
354
+ <use xlink:href="#glyph0-3" x="63.417969" y="352.078125"/>
355
+ <use xlink:href="#glyph0-17" x="70.091797" y="352.078125"/>
356
+ <use xlink:href="#glyph0-10" x="76.091797" y="352.078125"/>
357
+ <use xlink:href="#glyph0-11" x="79.425781" y="352.078125"/>
358
+ <use xlink:href="#glyph0-7" x="84.751953" y="352.078125"/>
359
+ <use xlink:href="#glyph0-14" x="87.751953" y="352.078125"/>
360
+ <use xlink:href="#glyph0-11" x="93.751953" y="352.078125"/>
361
+ <use xlink:href="#glyph0-15" x="99.078125" y="352.078125"/>
362
+ <use xlink:href="#glyph0-13" x="103.074219" y="352.078125"/>
363
+ <use xlink:href="#glyph0-3" x="106.408203" y="352.078125"/>
364
+ <use xlink:href="#glyph0-13" x="113.082031" y="352.078125"/>
365
+ <use xlink:href="#glyph0-4" x="116.416016" y="352.078125"/>
366
+ <use xlink:href="#glyph0-13" x="119.75" y="352.078125"/>
367
+ <use xlink:href="#glyph0-16" x="123.083984" y="352.078125"/>
368
+ <use xlink:href="#glyph0-3" x="129.083984" y="352.078125"/>
369
+ </g>
370
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 204.917969 335.664062 L 206.917969 335.664062 C 210.625 335.664062 214.332031 339.371094 214.332031 343.078125 L 214.332031 355.078125 C 214.332031 358.789062 210.625 362.496094 206.917969 362.496094 L 204.917969 362.496094 C 201.210938 362.496094 197.5 358.789062 197.5 355.078125 L 197.5 343.078125 C 197.5 339.371094 201.210938 335.664062 204.917969 335.664062 Z M 204.917969 335.664062 "/>
371
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
372
+ <use xlink:href="#glyph1-3" x="204.917969" y="352.078125"/>
373
+ </g>
374
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.332031 335.664062 L 327.835938 335.664062 L 327.835938 362.496094 L 232.332031 362.496094 Z M 232.332031 335.664062 "/>
375
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
376
+ <use xlink:href="#glyph0-1" x="239.75" y="352.078125"/>
377
+ <use xlink:href="#glyph0-13" x="244.419922" y="352.078125"/>
378
+ <use xlink:href="#glyph0-3" x="247.753906" y="352.078125"/>
379
+ <use xlink:href="#glyph0-17" x="254.427734" y="352.078125"/>
380
+ <use xlink:href="#glyph0-10" x="260.427734" y="352.078125"/>
381
+ <use xlink:href="#glyph0-11" x="263.761719" y="352.078125"/>
382
+ <use xlink:href="#glyph0-7" x="269.087891" y="352.078125"/>
383
+ <use xlink:href="#glyph0-14" x="272.087891" y="352.078125"/>
384
+ <use xlink:href="#glyph0-11" x="278.087891" y="352.078125"/>
385
+ <use xlink:href="#glyph0-15" x="283.414062" y="352.078125"/>
386
+ <use xlink:href="#glyph0-13" x="287.410156" y="352.078125"/>
387
+ <use xlink:href="#glyph0-3" x="290.744141" y="352.078125"/>
388
+ <use xlink:href="#glyph0-13" x="297.417969" y="352.078125"/>
389
+ <use xlink:href="#glyph0-4" x="300.751953" y="352.078125"/>
390
+ <use xlink:href="#glyph0-13" x="304.085938" y="352.078125"/>
391
+ <use xlink:href="#glyph0-16" x="307.419922" y="352.078125"/>
392
+ <use xlink:href="#glyph0-3" x="313.419922" y="352.078125"/>
393
+ </g>
394
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.332031 349.078125 L 232.332031 349.078125 "/>
395
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.5 349.078125 L 197.5 349.078125 "/>
396
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 327.835938 349.078125 L 363.835938 349.078125 "/>
397
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.5 349.078125 L 172.085938 349.078125 "/>
398
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.085938 349.078125 C 176.183594 349.078125 179.5 352.398438 179.5 356.496094 "/>
399
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 179.5 356.496094 L 179.5 364.789062 "/>
400
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.5 380.496094 L 186.917969 380.496094 "/>
401
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 186.917969 380.496094 C 182.820312 380.496094 179.5 377.175781 179.5 373.078125 "/>
402
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 179.5 373.078125 L 179.5 364.789062 "/>
403
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.5 380.496094 L 327.835938 380.496094 "/>
404
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.835938 364.789062 L 345.835938 373.078125 "/>
405
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.835938 373.078125 C 345.835938 377.175781 342.515625 380.496094 338.417969 380.496094 "/>
406
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 338.417969 380.496094 L 327.835938 380.496094 "/>
407
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.835938 364.789062 L 345.835938 356.496094 "/>
408
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.835938 356.496094 C 345.835938 352.398438 349.15625 349.078125 353.25 349.078125 "/>
409
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 353.25 349.078125 L 363.835938 349.078125 "/>
410
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.5 349.078125 L 186.917969 349.078125 "/>
411
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 186.917969 349.078125 C 182.820312 349.078125 179.5 345.757812 179.5 341.664062 "/>
412
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 179.5 341.664062 L 179.5 333.371094 "/>
413
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 179.5 333.371094 L 179.5 325.078125 "/>
414
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 179.5 325.078125 C 179.5 320.984375 182.820312 317.664062 186.917969 317.664062 "/>
415
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 186.917969 317.664062 L 197.5 317.664062 "/>
416
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.5 317.664062 L 327.835938 317.664062 "/>
417
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 327.835938 317.664062 L 338.417969 317.664062 "/>
418
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 338.417969 317.664062 C 342.515625 317.664062 345.835938 320.984375 345.835938 325.078125 "/>
419
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.835938 325.078125 L 345.835938 333.371094 "/>
420
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.835938 333.371094 L 345.835938 341.664062 "/>
421
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.835938 341.664062 C 345.835938 345.757812 342.515625 349.078125 338.417969 349.078125 "/>
422
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 338.417969 349.078125 L 327.835938 349.078125 "/>
423
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.5 349.078125 L 161.5 349.078125 "/>
424
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 349.078125 L 48 349.078125 "/>
425
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 363.835938 349.078125 L 387.835938 349.078125 "/>
426
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 343.078125 L 24 355.078125 "/>
427
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 387.835938 343.078125 L 387.835938 355.078125 "/>
428
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
429
+ <use xlink:href="#glyph0-1" x="24" y="437.496094"/>
430
+ <use xlink:href="#glyph0-13" x="28.669922" y="437.496094"/>
431
+ <use xlink:href="#glyph0-3" x="32.003906" y="437.496094"/>
432
+ <use xlink:href="#glyph0-17" x="38.677734" y="437.496094"/>
433
+ <use xlink:href="#glyph0-10" x="44.677734" y="437.496094"/>
434
+ <use xlink:href="#glyph0-11" x="48.011719" y="437.496094"/>
435
+ <use xlink:href="#glyph0-7" x="53.337891" y="437.496094"/>
436
+ <use xlink:href="#glyph0-14" x="56.337891" y="437.496094"/>
437
+ <use xlink:href="#glyph0-11" x="62.337891" y="437.496094"/>
438
+ <use xlink:href="#glyph0-15" x="67.664062" y="437.496094"/>
439
+ <use xlink:href="#glyph0-13" x="71.660156" y="437.496094"/>
440
+ <use xlink:href="#glyph0-3" x="74.994141" y="437.496094"/>
441
+ <use xlink:href="#glyph0-13" x="81.667969" y="437.496094"/>
442
+ <use xlink:href="#glyph0-4" x="85.001953" y="437.496094"/>
443
+ <use xlink:href="#glyph0-13" x="88.335938" y="437.496094"/>
444
+ <use xlink:href="#glyph0-16" x="91.669922" y="437.496094"/>
445
+ <use xlink:href="#glyph0-3" x="97.669922" y="437.496094"/>
446
+ </g>
447
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48 482.496094 L 85.160156 482.496094 L 85.160156 509.328125 L 48 509.328125 Z M 48 482.496094 "/>
448
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
449
+ <use xlink:href="#glyph0-4" x="55.414062" y="499.910156"/>
450
+ <use xlink:href="#glyph0-11" x="58.748047" y="499.910156"/>
451
+ <use xlink:href="#glyph0-8" x="64.074219" y="499.910156"/>
452
+ <use xlink:href="#glyph0-12" x="68.744141" y="499.910156"/>
453
+ </g>
454
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.578125 482.496094 L 149.578125 482.496094 C 153.285156 482.496094 156.992188 486.203125 156.992188 489.910156 L 156.992188 501.910156 C 156.992188 505.621094 153.285156 509.328125 149.578125 509.328125 L 146.578125 509.328125 C 142.871094 509.328125 139.160156 505.621094 139.160156 501.910156 L 139.160156 489.910156 C 139.160156 486.203125 142.871094 482.496094 146.578125 482.496094 Z M 146.578125 482.496094 "/>
455
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
456
+ <use xlink:href="#glyph1-4" x="146.578125" y="495.910156"/>
457
+ </g>
458
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 174.992188 482.496094 L 212.15625 482.496094 L 212.15625 509.328125 L 174.992188 509.328125 Z M 174.992188 482.496094 "/>
459
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
460
+ <use xlink:href="#glyph0-4" x="182.410156" y="499.910156"/>
461
+ <use xlink:href="#glyph0-11" x="185.744141" y="499.910156"/>
462
+ <use xlink:href="#glyph0-8" x="191.070312" y="499.910156"/>
463
+ <use xlink:href="#glyph0-12" x="195.740234" y="499.910156"/>
464
+ </g>
465
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 156.992188 495.910156 L 174.992188 495.910156 "/>
466
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 103.160156 495.910156 L 139.160156 495.910156 "/>
467
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.15625 495.910156 L 248.15625 495.910156 "/>
468
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 103.160156 495.910156 L 113.746094 495.910156 "/>
469
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 113.746094 495.910156 C 117.84375 495.910156 121.160156 499.230469 121.160156 503.328125 "/>
470
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 121.160156 503.328125 L 121.160156 511.621094 "/>
471
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.160156 527.328125 L 128.578125 527.328125 "/>
472
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.578125 527.328125 C 124.480469 527.328125 121.160156 524.007812 121.160156 519.910156 "/>
473
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 121.160156 519.910156 L 121.160156 511.621094 "/>
474
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.160156 527.328125 L 212.15625 527.328125 "/>
475
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 230.15625 511.621094 L 230.15625 519.910156 "/>
476
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 230.15625 519.910156 C 230.15625 524.007812 226.835938 527.328125 222.738281 527.328125 "/>
477
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.738281 527.328125 L 212.15625 527.328125 "/>
478
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 230.15625 511.621094 L 230.15625 503.328125 "/>
479
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 230.15625 503.328125 C 230.15625 499.230469 233.476562 495.910156 237.570312 495.910156 "/>
480
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.570312 495.910156 L 248.15625 495.910156 "/>
481
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.160156 495.910156 L 128.578125 495.910156 "/>
482
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.578125 495.910156 C 124.480469 495.910156 121.160156 492.589844 121.160156 488.496094 "/>
483
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 121.160156 488.496094 L 121.160156 480.203125 "/>
484
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 121.160156 480.203125 L 121.160156 471.910156 "/>
485
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 121.160156 471.910156 C 121.160156 467.816406 124.480469 464.496094 128.578125 464.496094 "/>
486
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.578125 464.496094 L 139.160156 464.496094 "/>
487
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.160156 464.496094 L 212.15625 464.496094 "/>
488
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.15625 464.496094 L 222.738281 464.496094 "/>
489
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.738281 464.496094 C 226.835938 464.496094 230.15625 467.816406 230.15625 471.910156 "/>
490
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 230.15625 471.910156 L 230.15625 480.203125 "/>
491
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 230.15625 480.203125 L 230.15625 488.496094 "/>
492
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 230.15625 488.496094 C 230.15625 492.589844 226.835938 495.910156 222.738281 495.910156 "/>
493
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.738281 495.910156 L 212.15625 495.910156 "/>
494
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 85.160156 495.910156 L 103.160156 495.910156 "/>
495
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 495.910156 L 48 495.910156 "/>
496
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.15625 495.910156 L 272.15625 495.910156 "/>
497
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 489.910156 L 24 501.910156 "/>
498
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 272.15625 489.910156 L 272.15625 501.910156 "/>
499
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
500
+ <use xlink:href="#glyph0-4" x="24" y="585.328125"/>
501
+ <use xlink:href="#glyph0-11" x="27.333984" y="585.328125"/>
502
+ <use xlink:href="#glyph0-8" x="32.660156" y="585.328125"/>
503
+ <use xlink:href="#glyph0-12" x="37.330078" y="585.328125"/>
504
+ </g>
505
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48 611.328125 L 94.488281 611.328125 L 94.488281 638.160156 L 48 638.160156 Z M 48 611.328125 "/>
506
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
507
+ <use xlink:href="#glyph0-15" x="57.414062" y="627.742188"/>
508
+ <use xlink:href="#glyph0-5" x="61.410156" y="627.742188"/>
509
+ <use xlink:href="#glyph0-18" x="67.410156" y="627.742188"/>
510
+ <use xlink:href="#glyph0-4" x="72.736328" y="627.742188"/>
511
+ <use xlink:href="#glyph0-16" x="76.070312" y="627.742188"/>
512
+ <use xlink:href="#glyph0-8" x="82.070312" y="627.742188"/>
513
+ </g>
514
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.902344 611.328125 L 159.902344 611.328125 C 163.613281 611.328125 167.320312 615.035156 167.320312 618.742188 L 167.320312 630.742188 C 167.320312 634.453125 163.613281 638.160156 159.902344 638.160156 L 155.902344 638.160156 C 152.195312 638.160156 148.488281 634.453125 148.488281 630.742188 L 148.488281 618.742188 C 148.488281 615.035156 152.195312 611.328125 155.902344 611.328125 Z M 155.902344 611.328125 "/>
515
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
516
+ <use xlink:href="#glyph1-5" x="155.902344" y="627.242188"/>
517
+ </g>
518
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 185.320312 611.328125 L 247.796875 611.328125 L 247.796875 638.160156 L 185.320312 638.160156 Z M 185.320312 611.328125 "/>
519
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
520
+ <use xlink:href="#glyph0-11" x="192.734375" y="627.742188"/>
521
+ <use xlink:href="#glyph0-6" x="198.060547" y="627.742188"/>
522
+ <use xlink:href="#glyph0-18" x="204.060547" y="627.742188"/>
523
+ <use xlink:href="#glyph0-11" x="209.386719" y="627.742188"/>
524
+ <use xlink:href="#glyph0-19" x="214.712891" y="627.742188"/>
525
+ <use xlink:href="#glyph0-4" x="220.712891" y="627.742188"/>
526
+ <use xlink:href="#glyph0-13" x="224.046875" y="627.742188"/>
527
+ <use xlink:href="#glyph0-16" x="227.380859" y="627.742188"/>
528
+ <use xlink:href="#glyph0-3" x="233.380859" y="627.742188"/>
529
+ </g>
530
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.320312 624.742188 L 185.320312 624.742188 "/>
531
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.488281 624.742188 L 148.488281 624.742188 "/>
532
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.796875 624.742188 L 283.796875 624.742188 "/>
533
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.488281 624.742188 L 123.070312 624.742188 "/>
534
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 123.070312 624.742188 C 127.167969 624.742188 130.488281 628.0625 130.488281 632.160156 "/>
535
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 130.488281 632.160156 L 130.488281 640.453125 "/>
536
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.488281 656.160156 L 137.902344 656.160156 "/>
537
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.902344 656.160156 C 133.808594 656.160156 130.488281 652.839844 130.488281 648.742188 "/>
538
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 130.488281 648.742188 L 130.488281 640.453125 "/>
539
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.488281 656.160156 L 247.796875 656.160156 "/>
540
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 265.796875 640.453125 L 265.796875 648.742188 "/>
541
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 265.796875 648.742188 C 265.796875 652.839844 262.476562 656.160156 258.382812 656.160156 "/>
542
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.382812 656.160156 L 247.796875 656.160156 "/>
543
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 265.796875 640.453125 L 265.796875 632.160156 "/>
544
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 265.796875 632.160156 C 265.796875 628.0625 269.117188 624.742188 273.214844 624.742188 "/>
545
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 273.214844 624.742188 L 283.796875 624.742188 "/>
546
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.488281 624.742188 L 112.488281 624.742188 "/>
547
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 624.742188 L 48 624.742188 "/>
548
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 283.796875 624.742188 L 307.796875 624.742188 "/>
549
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 618.742188 L 24 630.742188 "/>
550
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 307.796875 618.742188 L 307.796875 630.742188 "/>
551
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
552
+ <use xlink:href="#glyph0-11" x="24" y="713.160156"/>
553
+ <use xlink:href="#glyph0-6" x="29.326172" y="713.160156"/>
554
+ <use xlink:href="#glyph0-18" x="35.326172" y="713.160156"/>
555
+ <use xlink:href="#glyph0-11" x="40.652344" y="713.160156"/>
556
+ <use xlink:href="#glyph0-19" x="45.978516" y="713.160156"/>
557
+ <use xlink:href="#glyph0-4" x="51.978516" y="713.160156"/>
558
+ <use xlink:href="#glyph0-13" x="55.3125" y="713.160156"/>
559
+ <use xlink:href="#glyph0-16" x="58.646484" y="713.160156"/>
560
+ <use xlink:href="#glyph0-3" x="64.646484" y="713.160156"/>
561
+ </g>
562
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48 740.160156 L 94.488281 740.160156 L 94.488281 766.992188 L 48 766.992188 Z M 48 740.160156 "/>
563
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
564
+ <use xlink:href="#glyph0-15" x="57.414062" y="756.574219"/>
565
+ <use xlink:href="#glyph0-5" x="61.410156" y="756.574219"/>
566
+ <use xlink:href="#glyph0-18" x="67.410156" y="756.574219"/>
567
+ <use xlink:href="#glyph0-4" x="72.736328" y="756.574219"/>
568
+ <use xlink:href="#glyph0-16" x="76.070312" y="756.574219"/>
569
+ <use xlink:href="#glyph0-8" x="82.070312" y="756.574219"/>
570
+ </g>
571
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 753.574219 L 48 753.574219 "/>
572
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.488281 753.574219 L 119.648438 753.574219 "/>
573
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 747.574219 L 24 759.574219 "/>
574
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.648438 747.574219 L 119.648438 759.574219 "/>
575
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
576
+ <use xlink:href="#glyph0-15" x="26" y="823.992188"/>
577
+ <use xlink:href="#glyph0-5" x="29.996094" y="823.992188"/>
578
+ <use xlink:href="#glyph0-18" x="35.996094" y="823.992188"/>
579
+ <use xlink:href="#glyph0-4" x="41.322266" y="823.992188"/>
580
+ <use xlink:href="#glyph0-16" x="44.65625" y="823.992188"/>
581
+ <use xlink:href="#glyph0-8" x="50.65625" y="823.992188"/>
582
+ </g>
583
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84 850.992188 L 133.824219 850.992188 L 133.824219 877.824219 L 84 877.824219 Z M 84 850.992188 "/>
584
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
585
+ <use xlink:href="#glyph0-13" x="91.414062" y="867.40625"/>
586
+ <use xlink:href="#glyph0-3" x="94.748047" y="867.40625"/>
587
+ <use xlink:href="#glyph0-4" x="101.421875" y="867.40625"/>
588
+ <use xlink:href="#glyph0-11" x="104.755859" y="867.40625"/>
589
+ <use xlink:href="#glyph0-17" x="110.082031" y="867.40625"/>
590
+ <use xlink:href="#glyph0-11" x="116.082031" y="867.40625"/>
591
+ <use xlink:href="#glyph0-8" x="121.408203" y="867.40625"/>
592
+ </g>
593
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 159.242188 850.992188 L 165.242188 850.992188 C 168.949219 850.992188 172.65625 854.699219 172.65625 858.40625 L 172.65625 870.40625 C 172.65625 874.117188 168.949219 877.824219 165.242188 877.824219 L 159.242188 877.824219 C 155.535156 877.824219 151.824219 874.117188 151.824219 870.40625 L 151.824219 858.40625 C 151.824219 854.699219 155.535156 850.992188 159.242188 850.992188 Z M 159.242188 850.992188 "/>
594
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
595
+ <use xlink:href="#glyph1-6" x="159.242188" y="870.40625"/>
596
+ </g>
597
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.824219 864.40625 L 151.824219 864.40625 "/>
598
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48 864.40625 L 84 864.40625 "/>
599
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.65625 864.40625 L 208.65625 864.40625 "/>
600
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48 864.40625 L 58.585938 864.40625 "/>
601
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 58.585938 864.40625 C 62.679688 864.40625 66 867.726562 66 871.824219 "/>
602
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 66 871.824219 L 66 880.117188 "/>
603
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84 895.824219 L 73.414062 895.824219 "/>
604
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 73.414062 895.824219 C 69.320312 895.824219 66 892.503906 66 888.40625 "/>
605
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 66 888.40625 L 66 880.117188 "/>
606
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84 895.824219 L 172.65625 895.824219 "/>
607
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.65625 880.117188 L 190.65625 888.40625 "/>
608
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.65625 888.40625 C 190.65625 892.503906 187.335938 895.824219 183.242188 895.824219 "/>
609
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.242188 895.824219 L 172.65625 895.824219 "/>
610
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.65625 880.117188 L 190.65625 871.824219 "/>
611
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.65625 871.824219 C 190.65625 867.726562 193.976562 864.40625 198.074219 864.40625 "/>
612
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 198.074219 864.40625 L 208.65625 864.40625 "/>
613
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 226.65625 850.992188 L 283.496094 850.992188 L 283.496094 877.824219 L 226.65625 877.824219 Z M 226.65625 850.992188 "/>
614
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
615
+ <use xlink:href="#glyph0-19" x="236.074219" y="867.40625"/>
616
+ <use xlink:href="#glyph0-8" x="242.074219" y="867.40625"/>
617
+ <use xlink:href="#glyph0-13" x="246.744141" y="867.40625"/>
618
+ <use xlink:href="#glyph0-12" x="250.078125" y="867.40625"/>
619
+ <use xlink:href="#glyph0-5" x="259.412109" y="867.40625"/>
620
+ <use xlink:href="#glyph0-8" x="265.412109" y="867.40625"/>
621
+ <use xlink:href="#glyph0-2" x="270.082031" y="867.40625"/>
622
+ </g>
623
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.65625 864.40625 L 226.65625 864.40625 "/>
624
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 864.40625 L 48 864.40625 "/>
625
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 283.496094 864.40625 L 307.496094 864.40625 "/>
626
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 858.40625 L 24 870.40625 "/>
627
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 307.496094 858.40625 L 307.496094 870.40625 "/>
628
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
629
+ <use xlink:href="#glyph0-19" x="26" y="952.824219"/>
630
+ <use xlink:href="#glyph0-8" x="32" y="952.824219"/>
631
+ <use xlink:href="#glyph0-13" x="36.669922" y="952.824219"/>
632
+ <use xlink:href="#glyph0-12" x="40.003906" y="952.824219"/>
633
+ <use xlink:href="#glyph0-5" x="49.337891" y="952.824219"/>
634
+ <use xlink:href="#glyph0-8" x="55.337891" y="952.824219"/>
635
+ <use xlink:href="#glyph0-2" x="60.007812" y="952.824219"/>
636
+ </g>
637
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84 979.824219 L 188.503906 979.824219 L 188.503906 1006.65625 L 84 1006.65625 Z M 84 979.824219 "/>
638
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
639
+ <use xlink:href="#glyph0-16" x="91.414062" y="996.238281"/>
640
+ <use xlink:href="#glyph0-19" x="97.414062" y="996.238281"/>
641
+ <use xlink:href="#glyph0-4" x="103.414062" y="996.238281"/>
642
+ <use xlink:href="#glyph0-13" x="106.748047" y="996.238281"/>
643
+ <use xlink:href="#glyph0-16" x="110.082031" y="996.238281"/>
644
+ <use xlink:href="#glyph0-3" x="116.082031" y="996.238281"/>
645
+ <use xlink:href="#glyph0-5" x="122.755859" y="996.238281"/>
646
+ <use xlink:href="#glyph0-10" x="128.755859" y="996.238281"/>
647
+ <use xlink:href="#glyph0-7" x="132.089844" y="996.238281"/>
648
+ <use xlink:href="#glyph0-1" x="135.089844" y="996.238281"/>
649
+ <use xlink:href="#glyph0-11" x="139.759766" y="996.238281"/>
650
+ <use xlink:href="#glyph0-20" x="145.085938" y="996.238281"/>
651
+ <use xlink:href="#glyph0-9" x="151.085938" y="996.238281"/>
652
+ <use xlink:href="#glyph0-11" x="157.759766" y="996.238281"/>
653
+ <use xlink:href="#glyph0-3" x="163.085938" y="996.238281"/>
654
+ <use xlink:href="#glyph0-18" x="169.759766" y="996.238281"/>
655
+ <use xlink:href="#glyph0-11" x="175.085938" y="996.238281"/>
656
+ </g>
657
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84 1018.65625 L 189.808594 1018.65625 L 189.808594 1045.488281 L 84 1045.488281 Z M 84 1018.65625 "/>
658
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
659
+ <use xlink:href="#glyph0-8" x="91.414062" y="1035.070312"/>
660
+ <use xlink:href="#glyph0-11" x="96.083984" y="1035.070312"/>
661
+ <use xlink:href="#glyph0-19" x="101.410156" y="1035.070312"/>
662
+ <use xlink:href="#glyph0-11" x="107.410156" y="1035.070312"/>
663
+ <use xlink:href="#glyph0-5" x="112.736328" y="1035.070312"/>
664
+ <use xlink:href="#glyph0-4" x="118.736328" y="1035.070312"/>
665
+ <use xlink:href="#glyph0-11" x="122.070312" y="1035.070312"/>
666
+ <use xlink:href="#glyph0-14" x="127.396484" y="1035.070312"/>
667
+ <use xlink:href="#glyph0-7" x="133.396484" y="1035.070312"/>
668
+ <use xlink:href="#glyph0-1" x="136.396484" y="1035.070312"/>
669
+ <use xlink:href="#glyph0-11" x="141.066406" y="1035.070312"/>
670
+ <use xlink:href="#glyph0-20" x="146.392578" y="1035.070312"/>
671
+ <use xlink:href="#glyph0-9" x="152.392578" y="1035.070312"/>
672
+ <use xlink:href="#glyph0-11" x="159.066406" y="1035.070312"/>
673
+ <use xlink:href="#glyph0-3" x="164.392578" y="1035.070312"/>
674
+ <use xlink:href="#glyph0-18" x="171.066406" y="1035.070312"/>
675
+ <use xlink:href="#glyph0-11" x="176.392578" y="1035.070312"/>
676
+ </g>
677
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84 1057.488281 L 189.496094 1057.488281 L 189.496094 1084.320312 L 84 1084.320312 Z M 84 1057.488281 "/>
678
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
679
+ <use xlink:href="#glyph0-17" x="92.414062" y="1073.902344"/>
680
+ <use xlink:href="#glyph0-8" x="98.414062" y="1073.902344"/>
681
+ <use xlink:href="#glyph0-16" x="103.083984" y="1073.902344"/>
682
+ <use xlink:href="#glyph0-9" x="109.083984" y="1073.902344"/>
683
+ <use xlink:href="#glyph0-19" x="115.757812" y="1073.902344"/>
684
+ <use xlink:href="#glyph0-11" x="121.757812" y="1073.902344"/>
685
+ <use xlink:href="#glyph0-14" x="127.083984" y="1073.902344"/>
686
+ <use xlink:href="#glyph0-7" x="133.083984" y="1073.902344"/>
687
+ <use xlink:href="#glyph0-1" x="136.083984" y="1073.902344"/>
688
+ <use xlink:href="#glyph0-11" x="140.753906" y="1073.902344"/>
689
+ <use xlink:href="#glyph0-20" x="146.080078" y="1073.902344"/>
690
+ <use xlink:href="#glyph0-9" x="152.080078" y="1073.902344"/>
691
+ <use xlink:href="#glyph0-11" x="158.753906" y="1073.902344"/>
692
+ <use xlink:href="#glyph0-3" x="164.080078" y="1073.902344"/>
693
+ <use xlink:href="#glyph0-18" x="170.753906" y="1073.902344"/>
694
+ <use xlink:href="#glyph0-11" x="176.080078" y="1073.902344"/>
695
+ </g>
696
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84 1096.320312 L 181.816406 1096.320312 L 181.816406 1123.152344 L 84 1123.152344 Z M 84 1096.320312 "/>
697
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
698
+ <use xlink:href="#glyph0-1" x="91.414062" y="1112.734375"/>
699
+ <use xlink:href="#glyph0-19" x="96.083984" y="1112.734375"/>
700
+ <use xlink:href="#glyph0-11" x="102.083984" y="1112.734375"/>
701
+ <use xlink:href="#glyph0-18" x="107.410156" y="1112.734375"/>
702
+ <use xlink:href="#glyph0-13" x="112.736328" y="1112.734375"/>
703
+ <use xlink:href="#glyph0-5" x="116.070312" y="1112.734375"/>
704
+ <use xlink:href="#glyph0-10" x="122.070312" y="1112.734375"/>
705
+ <use xlink:href="#glyph0-7" x="125.404297" y="1112.734375"/>
706
+ <use xlink:href="#glyph0-1" x="128.404297" y="1112.734375"/>
707
+ <use xlink:href="#glyph0-11" x="133.074219" y="1112.734375"/>
708
+ <use xlink:href="#glyph0-20" x="138.400391" y="1112.734375"/>
709
+ <use xlink:href="#glyph0-9" x="144.400391" y="1112.734375"/>
710
+ <use xlink:href="#glyph0-11" x="151.074219" y="1112.734375"/>
711
+ <use xlink:href="#glyph0-3" x="156.400391" y="1112.734375"/>
712
+ <use xlink:href="#glyph0-18" x="163.074219" y="1112.734375"/>
713
+ <use xlink:href="#glyph0-11" x="168.400391" y="1112.734375"/>
714
+ </g>
715
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84 1135.152344 L 171.484375 1135.152344 L 171.484375 1161.984375 L 84 1161.984375 Z M 84 1135.152344 "/>
716
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
717
+ <use xlink:href="#glyph0-12" x="91.414062" y="1151.566406"/>
718
+ <use xlink:href="#glyph0-11" x="100.748047" y="1151.566406"/>
719
+ <use xlink:href="#glyph0-4" x="106.074219" y="1151.566406"/>
720
+ <use xlink:href="#glyph0-5" x="109.408203" y="1151.566406"/>
721
+ <use xlink:href="#glyph0-7" x="115.408203" y="1151.566406"/>
722
+ <use xlink:href="#glyph0-13" x="118.408203" y="1151.566406"/>
723
+ <use xlink:href="#glyph0-14" x="121.742188" y="1151.566406"/>
724
+ <use xlink:href="#glyph0-11" x="127.742188" y="1151.566406"/>
725
+ <use xlink:href="#glyph0-3" x="133.068359" y="1151.566406"/>
726
+ <use xlink:href="#glyph0-4" x="139.742188" y="1151.566406"/>
727
+ <use xlink:href="#glyph0-13" x="143.076172" y="1151.566406"/>
728
+ <use xlink:href="#glyph0-15" x="146.410156" y="1151.566406"/>
729
+ <use xlink:href="#glyph0-13" x="150.40625" y="1151.566406"/>
730
+ <use xlink:href="#glyph0-11" x="153.740234" y="1151.566406"/>
731
+ <use xlink:href="#glyph0-8" x="159.066406" y="1151.566406"/>
732
+ </g>
733
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84 1173.984375 L 173.519531 1173.984375 L 173.519531 1200.816406 L 84 1200.816406 Z M 84 1173.984375 "/>
734
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
735
+ <use xlink:href="#glyph0-4" x="91.414062" y="1190.398438"/>
736
+ <use xlink:href="#glyph0-11" x="94.748047" y="1190.398438"/>
737
+ <use xlink:href="#glyph0-8" x="100.074219" y="1190.398438"/>
738
+ <use xlink:href="#glyph0-12" x="104.744141" y="1190.398438"/>
739
+ <use xlink:href="#glyph0-13" x="114.078125" y="1190.398438"/>
740
+ <use xlink:href="#glyph0-3" x="117.412109" y="1190.398438"/>
741
+ <use xlink:href="#glyph0-5" x="124.085938" y="1190.398438"/>
742
+ <use xlink:href="#glyph0-10" x="130.085938" y="1190.398438"/>
743
+ <use xlink:href="#glyph0-7" x="133.419922" y="1190.398438"/>
744
+ <use xlink:href="#glyph0-1" x="136.419922" y="1190.398438"/>
745
+ <use xlink:href="#glyph0-4" x="141.089844" y="1190.398438"/>
746
+ <use xlink:href="#glyph0-8" x="144.423828" y="1190.398438"/>
747
+ <use xlink:href="#glyph0-13" x="149.09375" y="1190.398438"/>
748
+ <use xlink:href="#glyph0-3" x="152.427734" y="1190.398438"/>
749
+ <use xlink:href="#glyph0-17" x="159.101562" y="1190.398438"/>
750
+ </g>
751
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48 1032.070312 L 84 1032.070312 "/>
752
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.808594 1032.070312 L 225.808594 1032.070312 "/>
753
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 66 1012.65625 L 66 1024.65625 "/>
754
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 66 1024.65625 C 66 1028.75 62.679688 1032.070312 58.585938 1032.070312 "/>
755
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 58.585938 1032.070312 L 48 1032.070312 "/>
756
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 225.808594 1032.070312 L 215.226562 1032.070312 "/>
757
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.226562 1032.070312 C 211.128906 1032.070312 207.808594 1028.75 207.808594 1024.65625 "/>
758
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.808594 1024.65625 L 207.808594 1012.65625 "/>
759
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 66 1012.65625 L 66 1000.65625 "/>
760
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 66 1000.65625 C 66 996.558594 69.320312 993.238281 73.414062 993.238281 "/>
761
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 73.414062 993.238281 L 84 993.238281 "/>
762
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84 993.238281 L 84 993.238281 "/>
763
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.503906 993.238281 L 189.808594 993.238281 "/>
764
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.808594 993.238281 L 200.394531 993.238281 "/>
765
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.394531 993.238281 C 204.492188 993.238281 207.808594 996.558594 207.808594 1000.65625 "/>
766
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.808594 1000.65625 L 207.808594 1012.65625 "/>
767
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48 1032.070312 L 58.585938 1032.070312 "/>
768
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 58.585938 1032.070312 C 62.679688 1032.070312 66 1035.390625 66 1039.488281 "/>
769
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 66 1039.488281 L 66 1051.488281 "/>
770
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.808594 1051.488281 L 207.808594 1039.488281 "/>
771
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.808594 1039.488281 C 207.808594 1035.390625 211.128906 1032.070312 215.226562 1032.070312 "/>
772
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.226562 1032.070312 L 225.808594 1032.070312 "/>
773
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84 1070.902344 L 73.414062 1070.902344 "/>
774
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 73.414062 1070.902344 C 69.320312 1070.902344 66 1067.582031 66 1063.488281 "/>
775
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 66 1063.488281 L 66 1051.488281 "/>
776
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84 1070.902344 L 84 1070.902344 "/>
777
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.496094 1070.902344 L 189.808594 1070.902344 "/>
778
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.808594 1051.488281 L 207.808594 1063.488281 "/>
779
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.808594 1063.488281 C 207.808594 1067.582031 204.492188 1070.902344 200.394531 1070.902344 "/>
780
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.394531 1070.902344 L 189.808594 1070.902344 "/>
781
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84 1109.734375 L 73.414062 1109.734375 "/>
782
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 73.414062 1109.734375 C 69.320312 1109.734375 66 1106.414062 66 1102.320312 "/>
783
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 66 1102.320312 L 66 1051.488281 "/>
784
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84 1109.734375 L 84 1109.734375 "/>
785
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 181.816406 1109.734375 L 189.808594 1109.734375 "/>
786
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.808594 1051.488281 L 207.808594 1102.320312 "/>
787
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.808594 1102.320312 C 207.808594 1106.414062 204.492188 1109.734375 200.394531 1109.734375 "/>
788
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.394531 1109.734375 L 189.808594 1109.734375 "/>
789
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84 1148.566406 L 73.414062 1148.566406 "/>
790
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 73.414062 1148.566406 C 69.320312 1148.566406 66 1145.246094 66 1141.152344 "/>
791
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 66 1141.152344 L 66 1051.488281 "/>
792
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84 1148.566406 L 84 1148.566406 "/>
793
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.484375 1148.566406 L 189.808594 1148.566406 "/>
794
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.808594 1051.488281 L 207.808594 1141.152344 "/>
795
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.808594 1141.152344 C 207.808594 1145.246094 204.492188 1148.566406 200.394531 1148.566406 "/>
796
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.394531 1148.566406 L 189.808594 1148.566406 "/>
797
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84 1187.398438 L 73.414062 1187.398438 "/>
798
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 73.414062 1187.398438 C 69.320312 1187.398438 66 1184.078125 66 1179.984375 "/>
799
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 66 1179.984375 L 66 1051.488281 "/>
800
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84 1187.398438 L 84 1187.398438 "/>
801
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.519531 1187.398438 L 189.808594 1187.398438 "/>
802
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.808594 1051.488281 L 207.808594 1179.984375 "/>
803
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.808594 1179.984375 C 207.808594 1184.078125 204.492188 1187.398438 200.394531 1187.398438 "/>
804
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.394531 1187.398438 L 189.808594 1187.398438 "/>
805
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 1032.070312 L 48 1032.070312 "/>
806
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 225.808594 1032.070312 L 249.808594 1032.070312 "/>
807
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 1026.070312 L 24 1038.070312 "/>
808
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 249.808594 1026.070312 L 249.808594 1038.070312 "/>
809
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
810
+ <use xlink:href="#glyph0-16" x="24" y="1257.816406"/>
811
+ <use xlink:href="#glyph0-19" x="30" y="1257.816406"/>
812
+ <use xlink:href="#glyph0-4" x="36" y="1257.816406"/>
813
+ <use xlink:href="#glyph0-13" x="39.333984" y="1257.816406"/>
814
+ <use xlink:href="#glyph0-16" x="42.667969" y="1257.816406"/>
815
+ <use xlink:href="#glyph0-3" x="48.667969" y="1257.816406"/>
816
+ <use xlink:href="#glyph0-5" x="55.341797" y="1257.816406"/>
817
+ <use xlink:href="#glyph0-10" x="61.341797" y="1257.816406"/>
818
+ <use xlink:href="#glyph0-7" x="64.675781" y="1257.816406"/>
819
+ <use xlink:href="#glyph0-1" x="67.675781" y="1257.816406"/>
820
+ <use xlink:href="#glyph0-11" x="72.345703" y="1257.816406"/>
821
+ <use xlink:href="#glyph0-20" x="77.671875" y="1257.816406"/>
822
+ <use xlink:href="#glyph0-9" x="83.671875" y="1257.816406"/>
823
+ <use xlink:href="#glyph0-11" x="90.345703" y="1257.816406"/>
824
+ <use xlink:href="#glyph0-3" x="95.671875" y="1257.816406"/>
825
+ <use xlink:href="#glyph0-18" x="102.345703" y="1257.816406"/>
826
+ <use xlink:href="#glyph0-11" x="107.671875" y="1257.816406"/>
827
+ </g>
828
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 55.414062 1284.816406 L 59.414062 1284.816406 C 63.125 1284.816406 66.832031 1288.523438 66.832031 1292.230469 L 66.832031 1304.230469 C 66.832031 1307.941406 63.125 1311.648438 59.414062 1311.648438 L 55.414062 1311.648438 C 51.707031 1311.648438 48 1307.941406 48 1304.230469 L 48 1292.230469 C 48 1288.523438 51.707031 1284.816406 55.414062 1284.816406 Z M 55.414062 1284.816406 "/>
829
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
830
+ <use xlink:href="#glyph1-7" x="55.414062" y="1301.230469"/>
831
+ </g>
832
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84.832031 1284.816406 L 170.675781 1284.816406 L 170.675781 1311.648438 L 84.832031 1311.648438 Z M 84.832031 1284.816406 "/>
833
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
834
+ <use xlink:href="#glyph0-14" x="92.246094" y="1301.230469"/>
835
+ <use xlink:href="#glyph0-11" x="98.246094" y="1301.230469"/>
836
+ <use xlink:href="#glyph0-15" x="103.572266" y="1301.230469"/>
837
+ <use xlink:href="#glyph0-13" x="107.568359" y="1301.230469"/>
838
+ <use xlink:href="#glyph0-3" x="110.902344" y="1301.230469"/>
839
+ <use xlink:href="#glyph0-13" x="117.576172" y="1301.230469"/>
840
+ <use xlink:href="#glyph0-4" x="120.910156" y="1301.230469"/>
841
+ <use xlink:href="#glyph0-13" x="124.244141" y="1301.230469"/>
842
+ <use xlink:href="#glyph0-16" x="127.578125" y="1301.230469"/>
843
+ <use xlink:href="#glyph0-3" x="133.578125" y="1301.230469"/>
844
+ <use xlink:href="#glyph0-1" x="140.251953" y="1301.230469"/>
845
+ <use xlink:href="#glyph0-7" x="144.921875" y="1301.230469"/>
846
+ <use xlink:href="#glyph0-10" x="147.921875" y="1301.230469"/>
847
+ <use xlink:href="#glyph0-13" x="151.255859" y="1301.230469"/>
848
+ <use xlink:href="#glyph0-1" x="154.589844" y="1301.230469"/>
849
+ <use xlink:href="#glyph0-4" x="159.259766" y="1301.230469"/>
850
+ </g>
851
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.09375 1284.816406 L 200.09375 1284.816406 C 203.800781 1284.816406 207.507812 1288.523438 207.507812 1292.230469 L 207.507812 1304.230469 C 207.507812 1307.941406 203.800781 1311.648438 200.09375 1311.648438 L 196.09375 1311.648438 C 192.386719 1311.648438 188.675781 1307.941406 188.675781 1304.230469 L 188.675781 1292.230469 C 188.675781 1288.523438 192.386719 1284.816406 196.09375 1284.816406 Z M 196.09375 1284.816406 "/>
852
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
853
+ <use xlink:href="#glyph1-8" x="196.09375" y="1301.230469"/>
854
+ </g>
855
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 66.832031 1298.230469 L 84.832031 1298.230469 "/>
856
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.675781 1298.230469 L 188.675781 1298.230469 "/>
857
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 1298.230469 L 48 1298.230469 "/>
858
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.507812 1298.230469 L 231.507812 1298.230469 "/>
859
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 1292.230469 L 24 1304.230469 "/>
860
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.507812 1292.230469 L 231.507812 1304.230469 "/>
861
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
862
+ <use xlink:href="#glyph0-8" x="24" y="1368.648438"/>
863
+ <use xlink:href="#glyph0-11" x="28.669922" y="1368.648438"/>
864
+ <use xlink:href="#glyph0-19" x="33.996094" y="1368.648438"/>
865
+ <use xlink:href="#glyph0-11" x="39.996094" y="1368.648438"/>
866
+ <use xlink:href="#glyph0-5" x="45.322266" y="1368.648438"/>
867
+ <use xlink:href="#glyph0-4" x="51.322266" y="1368.648438"/>
868
+ <use xlink:href="#glyph0-11" x="54.65625" y="1368.648438"/>
869
+ <use xlink:href="#glyph0-14" x="59.982422" y="1368.648438"/>
870
+ <use xlink:href="#glyph0-7" x="65.982422" y="1368.648438"/>
871
+ <use xlink:href="#glyph0-1" x="68.982422" y="1368.648438"/>
872
+ <use xlink:href="#glyph0-11" x="73.652344" y="1368.648438"/>
873
+ <use xlink:href="#glyph0-20" x="78.978516" y="1368.648438"/>
874
+ <use xlink:href="#glyph0-9" x="84.978516" y="1368.648438"/>
875
+ <use xlink:href="#glyph0-11" x="91.652344" y="1368.648438"/>
876
+ <use xlink:href="#glyph0-3" x="96.978516" y="1368.648438"/>
877
+ <use xlink:href="#glyph0-18" x="103.652344" y="1368.648438"/>
878
+ <use xlink:href="#glyph0-11" x="108.978516" y="1368.648438"/>
879
+ </g>
880
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 55.414062 1395.648438 L 59.414062 1395.648438 C 63.125 1395.648438 66.832031 1399.355469 66.832031 1403.0625 L 66.832031 1415.0625 C 66.832031 1418.773438 63.125 1422.480469 59.414062 1422.480469 L 55.414062 1422.480469 C 51.707031 1422.480469 48 1418.773438 48 1415.0625 L 48 1403.0625 C 48 1399.355469 51.707031 1395.648438 55.414062 1395.648438 Z M 55.414062 1395.648438 "/>
881
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
882
+ <use xlink:href="#glyph1-9" x="54.414062" y="1412.5625"/>
883
+ </g>
884
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84.832031 1395.648438 L 170.675781 1395.648438 L 170.675781 1422.480469 L 84.832031 1422.480469 Z M 84.832031 1395.648438 "/>
885
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
886
+ <use xlink:href="#glyph0-14" x="92.246094" y="1412.0625"/>
887
+ <use xlink:href="#glyph0-11" x="98.246094" y="1412.0625"/>
888
+ <use xlink:href="#glyph0-15" x="103.572266" y="1412.0625"/>
889
+ <use xlink:href="#glyph0-13" x="107.568359" y="1412.0625"/>
890
+ <use xlink:href="#glyph0-3" x="110.902344" y="1412.0625"/>
891
+ <use xlink:href="#glyph0-13" x="117.576172" y="1412.0625"/>
892
+ <use xlink:href="#glyph0-4" x="120.910156" y="1412.0625"/>
893
+ <use xlink:href="#glyph0-13" x="124.244141" y="1412.0625"/>
894
+ <use xlink:href="#glyph0-16" x="127.578125" y="1412.0625"/>
895
+ <use xlink:href="#glyph0-3" x="133.578125" y="1412.0625"/>
896
+ <use xlink:href="#glyph0-1" x="140.251953" y="1412.0625"/>
897
+ <use xlink:href="#glyph0-7" x="144.921875" y="1412.0625"/>
898
+ <use xlink:href="#glyph0-10" x="147.921875" y="1412.0625"/>
899
+ <use xlink:href="#glyph0-13" x="151.255859" y="1412.0625"/>
900
+ <use xlink:href="#glyph0-1" x="154.589844" y="1412.0625"/>
901
+ <use xlink:href="#glyph0-4" x="159.259766" y="1412.0625"/>
902
+ </g>
903
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.09375 1395.648438 L 200.09375 1395.648438 C 203.800781 1395.648438 207.507812 1399.355469 207.507812 1403.0625 L 207.507812 1415.0625 C 207.507812 1418.773438 203.800781 1422.480469 200.09375 1422.480469 L 196.09375 1422.480469 C 192.386719 1422.480469 188.675781 1418.773438 188.675781 1415.0625 L 188.675781 1403.0625 C 188.675781 1399.355469 192.386719 1395.648438 196.09375 1395.648438 Z M 196.09375 1395.648438 "/>
904
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
905
+ <use xlink:href="#glyph1-10" x="195.09375" y="1412.5625"/>
906
+ </g>
907
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 66.832031 1409.0625 L 84.832031 1409.0625 "/>
908
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.675781 1409.0625 L 188.675781 1409.0625 "/>
909
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 1409.0625 L 48 1409.0625 "/>
910
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.507812 1409.0625 L 231.507812 1409.0625 "/>
911
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 1403.0625 L 24 1415.0625 "/>
912
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.507812 1403.0625 L 231.507812 1415.0625 "/>
913
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
914
+ <use xlink:href="#glyph0-17" x="25" y="1479.480469"/>
915
+ <use xlink:href="#glyph0-8" x="31" y="1479.480469"/>
916
+ <use xlink:href="#glyph0-16" x="35.669922" y="1479.480469"/>
917
+ <use xlink:href="#glyph0-9" x="41.669922" y="1479.480469"/>
918
+ <use xlink:href="#glyph0-19" x="48.34375" y="1479.480469"/>
919
+ <use xlink:href="#glyph0-11" x="54.34375" y="1479.480469"/>
920
+ <use xlink:href="#glyph0-14" x="59.669922" y="1479.480469"/>
921
+ <use xlink:href="#glyph0-7" x="65.669922" y="1479.480469"/>
922
+ <use xlink:href="#glyph0-1" x="68.669922" y="1479.480469"/>
923
+ <use xlink:href="#glyph0-11" x="73.339844" y="1479.480469"/>
924
+ <use xlink:href="#glyph0-20" x="78.666016" y="1479.480469"/>
925
+ <use xlink:href="#glyph0-9" x="84.666016" y="1479.480469"/>
926
+ <use xlink:href="#glyph0-11" x="91.339844" y="1479.480469"/>
927
+ <use xlink:href="#glyph0-3" x="96.666016" y="1479.480469"/>
928
+ <use xlink:href="#glyph0-18" x="103.339844" y="1479.480469"/>
929
+ <use xlink:href="#glyph0-11" x="108.666016" y="1479.480469"/>
930
+ </g>
931
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 55.414062 1506.480469 L 59.414062 1506.480469 C 63.125 1506.480469 66.832031 1510.1875 66.832031 1513.894531 L 66.832031 1525.894531 C 66.832031 1529.605469 63.125 1533.3125 59.414062 1533.3125 L 55.414062 1533.3125 C 51.707031 1533.3125 48 1529.605469 48 1525.894531 L 48 1513.894531 C 48 1510.1875 51.707031 1506.480469 55.414062 1506.480469 Z M 55.414062 1506.480469 "/>
932
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
933
+ <use xlink:href="#glyph1-11" x="55.414062" y="1523.394531"/>
934
+ </g>
935
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84.832031 1506.480469 L 170.675781 1506.480469 L 170.675781 1533.3125 L 84.832031 1533.3125 Z M 84.832031 1506.480469 "/>
936
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
937
+ <use xlink:href="#glyph0-14" x="92.246094" y="1522.894531"/>
938
+ <use xlink:href="#glyph0-11" x="98.246094" y="1522.894531"/>
939
+ <use xlink:href="#glyph0-15" x="103.572266" y="1522.894531"/>
940
+ <use xlink:href="#glyph0-13" x="107.568359" y="1522.894531"/>
941
+ <use xlink:href="#glyph0-3" x="110.902344" y="1522.894531"/>
942
+ <use xlink:href="#glyph0-13" x="117.576172" y="1522.894531"/>
943
+ <use xlink:href="#glyph0-4" x="120.910156" y="1522.894531"/>
944
+ <use xlink:href="#glyph0-13" x="124.244141" y="1522.894531"/>
945
+ <use xlink:href="#glyph0-16" x="127.578125" y="1522.894531"/>
946
+ <use xlink:href="#glyph0-3" x="133.578125" y="1522.894531"/>
947
+ <use xlink:href="#glyph0-1" x="140.251953" y="1522.894531"/>
948
+ <use xlink:href="#glyph0-7" x="144.921875" y="1522.894531"/>
949
+ <use xlink:href="#glyph0-10" x="147.921875" y="1522.894531"/>
950
+ <use xlink:href="#glyph0-13" x="151.255859" y="1522.894531"/>
951
+ <use xlink:href="#glyph0-1" x="154.589844" y="1522.894531"/>
952
+ <use xlink:href="#glyph0-4" x="159.259766" y="1522.894531"/>
953
+ </g>
954
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.09375 1506.480469 L 200.09375 1506.480469 C 203.800781 1506.480469 207.507812 1510.1875 207.507812 1513.894531 L 207.507812 1525.894531 C 207.507812 1529.605469 203.800781 1533.3125 200.09375 1533.3125 L 196.09375 1533.3125 C 192.386719 1533.3125 188.675781 1529.605469 188.675781 1525.894531 L 188.675781 1513.894531 C 188.675781 1510.1875 192.386719 1506.480469 196.09375 1506.480469 Z M 196.09375 1506.480469 "/>
955
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
956
+ <use xlink:href="#glyph1-12" x="196.09375" y="1523.394531"/>
957
+ </g>
958
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 66.832031 1519.894531 L 84.832031 1519.894531 "/>
959
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.675781 1519.894531 L 188.675781 1519.894531 "/>
960
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 1519.894531 L 48 1519.894531 "/>
961
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.507812 1519.894531 L 231.507812 1519.894531 "/>
962
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 1513.894531 L 24 1525.894531 "/>
963
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.507812 1513.894531 L 231.507812 1525.894531 "/>
964
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
965
+ <use xlink:href="#glyph0-1" x="24" y="1590.3125"/>
966
+ <use xlink:href="#glyph0-19" x="28.669922" y="1590.3125"/>
967
+ <use xlink:href="#glyph0-11" x="34.669922" y="1590.3125"/>
968
+ <use xlink:href="#glyph0-18" x="39.996094" y="1590.3125"/>
969
+ <use xlink:href="#glyph0-13" x="45.322266" y="1590.3125"/>
970
+ <use xlink:href="#glyph0-5" x="48.65625" y="1590.3125"/>
971
+ <use xlink:href="#glyph0-10" x="54.65625" y="1590.3125"/>
972
+ <use xlink:href="#glyph0-7" x="57.990234" y="1590.3125"/>
973
+ <use xlink:href="#glyph0-1" x="60.990234" y="1590.3125"/>
974
+ <use xlink:href="#glyph0-11" x="65.660156" y="1590.3125"/>
975
+ <use xlink:href="#glyph0-20" x="70.986328" y="1590.3125"/>
976
+ <use xlink:href="#glyph0-9" x="76.986328" y="1590.3125"/>
977
+ <use xlink:href="#glyph0-11" x="83.660156" y="1590.3125"/>
978
+ <use xlink:href="#glyph0-3" x="88.986328" y="1590.3125"/>
979
+ <use xlink:href="#glyph0-18" x="95.660156" y="1590.3125"/>
980
+ <use xlink:href="#glyph0-11" x="100.986328" y="1590.3125"/>
981
+ </g>
982
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 55.414062 1635.3125 L 60.414062 1635.3125 C 64.125 1635.3125 67.832031 1639.019531 67.832031 1642.726562 L 67.832031 1654.726562 C 67.832031 1658.4375 64.125 1662.144531 60.414062 1662.144531 L 55.414062 1662.144531 C 51.707031 1662.144531 48 1658.4375 48 1654.726562 L 48 1642.726562 C 48 1639.019531 51.707031 1635.3125 55.414062 1635.3125 Z M 55.414062 1635.3125 "/>
983
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
984
+ <use xlink:href="#glyph1-13" x="55.414062" y="1653.226562"/>
985
+ </g>
986
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 121.832031 1648.726562 L 126.414062 1635.3125 L 201.296875 1635.3125 L 205.878906 1648.726562 L 201.296875 1662.144531 L 126.414062 1662.144531 Z M 121.832031 1648.726562 "/>
987
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
988
+ <use xlink:href="#glyph2-1" x="129.246094" y="1652.726562"/>
989
+ <use xlink:href="#glyph2-2" x="134.572266" y="1652.726562"/>
990
+ <use xlink:href="#glyph2-3" x="140.572266" y="1652.726562"/>
991
+ <use xlink:href="#glyph2-4" x="146.572266" y="1652.726562"/>
992
+ <use xlink:href="#glyph2-3" x="151.242188" y="1652.726562"/>
993
+ <use xlink:href="#glyph2-1" x="157.242188" y="1652.726562"/>
994
+ <use xlink:href="#glyph2-5" x="162.568359" y="1652.726562"/>
995
+ <use xlink:href="#glyph2-6" x="165.902344" y="1652.726562"/>
996
+ <use xlink:href="#glyph2-4" x="171.228516" y="1652.726562"/>
997
+ <use xlink:href="#glyph2-7" x="175.898438" y="1652.726562"/>
998
+ <use xlink:href="#glyph2-8" x="178.898438" y="1652.726562"/>
999
+ <use xlink:href="#glyph2-7" x="182.894531" y="1652.726562"/>
1000
+ <use xlink:href="#glyph2-9" x="185.894531" y="1652.726562"/>
1001
+ <use xlink:href="#glyph2-10" x="188.460938" y="1652.726562"/>
1002
+ <use xlink:href="#glyph2-9" x="194.460938" y="1652.726562"/>
1003
+ </g>
1004
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 85.832031 1648.726562 L 121.832031 1648.726562 "/>
1005
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.878906 1648.726562 L 241.878906 1648.726562 "/>
1006
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 85.832031 1648.726562 L 96.414062 1648.726562 "/>
1007
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 96.414062 1648.726562 C 100.511719 1648.726562 103.832031 1652.046875 103.832031 1656.144531 "/>
1008
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 103.832031 1656.144531 L 103.832031 1664.4375 "/>
1009
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 121.832031 1680.144531 L 111.246094 1680.144531 "/>
1010
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 111.246094 1680.144531 C 107.152344 1680.144531 103.832031 1676.824219 103.832031 1672.726562 "/>
1011
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 103.832031 1672.726562 L 103.832031 1664.4375 "/>
1012
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 121.832031 1680.144531 L 205.878906 1680.144531 "/>
1013
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.878906 1664.4375 L 223.878906 1672.726562 "/>
1014
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.878906 1672.726562 C 223.878906 1676.824219 220.558594 1680.144531 216.460938 1680.144531 "/>
1015
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.460938 1680.144531 L 205.878906 1680.144531 "/>
1016
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.878906 1664.4375 L 223.878906 1656.144531 "/>
1017
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.878906 1656.144531 C 223.878906 1652.046875 227.199219 1648.726562 231.292969 1648.726562 "/>
1018
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.292969 1648.726562 L 241.878906 1648.726562 "/>
1019
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 121.832031 1648.726562 L 111.246094 1648.726562 "/>
1020
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 111.246094 1648.726562 C 107.152344 1648.726562 103.832031 1645.40625 103.832031 1641.3125 "/>
1021
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 103.832031 1641.3125 L 103.832031 1633.019531 "/>
1022
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 103.832031 1633.019531 L 103.832031 1624.726562 "/>
1023
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 103.832031 1624.726562 C 103.832031 1620.632812 107.152344 1617.3125 111.246094 1617.3125 "/>
1024
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 111.246094 1617.3125 L 121.832031 1617.3125 "/>
1025
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 121.832031 1617.3125 L 205.878906 1617.3125 "/>
1026
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.878906 1617.3125 L 216.460938 1617.3125 "/>
1027
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.460938 1617.3125 C 220.558594 1617.3125 223.878906 1620.632812 223.878906 1624.726562 "/>
1028
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.878906 1624.726562 L 223.878906 1633.019531 "/>
1029
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.878906 1633.019531 L 223.878906 1641.3125 "/>
1030
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.878906 1641.3125 C 223.878906 1645.40625 220.558594 1648.726562 216.460938 1648.726562 "/>
1031
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.460938 1648.726562 L 205.878906 1648.726562 "/>
1032
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.292969 1635.3125 L 272.292969 1635.3125 C 276.003906 1635.3125 279.710938 1639.019531 279.710938 1642.726562 L 279.710938 1654.726562 C 279.710938 1658.4375 276.003906 1662.144531 272.292969 1662.144531 L 267.292969 1662.144531 C 263.585938 1662.144531 259.878906 1658.4375 259.878906 1654.726562 L 259.878906 1642.726562 C 259.878906 1639.019531 263.585938 1635.3125 267.292969 1635.3125 Z M 267.292969 1635.3125 "/>
1033
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
1034
+ <use xlink:href="#glyph1-13" x="267.292969" y="1653.226562"/>
1035
+ </g>
1036
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 67.832031 1648.726562 L 85.832031 1648.726562 "/>
1037
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 241.878906 1648.726562 L 259.878906 1648.726562 "/>
1038
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 1648.726562 L 48 1648.726562 "/>
1039
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.710938 1648.726562 L 303.710938 1648.726562 "/>
1040
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 1642.726562 L 24 1654.726562 "/>
1041
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 303.710938 1642.726562 L 303.710938 1654.726562 "/>
1042
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
1043
+ <use xlink:href="#glyph0-12" x="24" y="1737.144531"/>
1044
+ <use xlink:href="#glyph0-11" x="33.333984" y="1737.144531"/>
1045
+ <use xlink:href="#glyph0-4" x="38.660156" y="1737.144531"/>
1046
+ <use xlink:href="#glyph0-5" x="41.994141" y="1737.144531"/>
1047
+ <use xlink:href="#glyph0-7" x="47.994141" y="1737.144531"/>
1048
+ <use xlink:href="#glyph0-13" x="50.994141" y="1737.144531"/>
1049
+ <use xlink:href="#glyph0-14" x="54.328125" y="1737.144531"/>
1050
+ <use xlink:href="#glyph0-11" x="60.328125" y="1737.144531"/>
1051
+ <use xlink:href="#glyph0-3" x="65.654297" y="1737.144531"/>
1052
+ <use xlink:href="#glyph0-4" x="72.328125" y="1737.144531"/>
1053
+ <use xlink:href="#glyph0-13" x="75.662109" y="1737.144531"/>
1054
+ <use xlink:href="#glyph0-15" x="78.996094" y="1737.144531"/>
1055
+ <use xlink:href="#glyph0-13" x="82.992188" y="1737.144531"/>
1056
+ <use xlink:href="#glyph0-11" x="86.326172" y="1737.144531"/>
1057
+ <use xlink:href="#glyph0-8" x="91.652344" y="1737.144531"/>
1058
+ </g>
1059
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48 1859.808594 L 88.484375 1859.808594 L 88.484375 1886.640625 L 48 1886.640625 Z M 48 1859.808594 "/>
1060
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
1061
+ <use xlink:href="#glyph0-10" x="55.414062" y="1877.722656"/>
1062
+ <use xlink:href="#glyph0-11" x="58.748047" y="1877.722656"/>
1063
+ <use xlink:href="#glyph0-4" x="64.074219" y="1877.722656"/>
1064
+ <use xlink:href="#glyph0-4" x="67.408203" y="1877.722656"/>
1065
+ <use xlink:href="#glyph0-11" x="70.742188" y="1877.722656"/>
1066
+ <use xlink:href="#glyph0-8" x="76.068359" y="1877.722656"/>
1067
+ </g>
1068
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.484375 1782.144531 L 218.972656 1782.144531 L 218.972656 1808.976562 L 178.484375 1808.976562 Z M 178.484375 1782.144531 "/>
1069
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
1070
+ <use xlink:href="#glyph0-10" x="185.902344" y="1800.058594"/>
1071
+ <use xlink:href="#glyph0-11" x="189.236328" y="1800.058594"/>
1072
+ <use xlink:href="#glyph0-4" x="194.5625" y="1800.058594"/>
1073
+ <use xlink:href="#glyph0-4" x="197.896484" y="1800.058594"/>
1074
+ <use xlink:href="#glyph0-11" x="201.230469" y="1800.058594"/>
1075
+ <use xlink:href="#glyph0-8" x="206.556641" y="1800.058594"/>
1076
+ </g>
1077
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.484375 1820.976562 L 257.640625 1820.976562 L 257.640625 1847.808594 L 178.484375 1847.808594 Z M 178.484375 1820.976562 "/>
1078
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
1079
+ <use xlink:href="#glyph0-14" x="185.902344" y="1837.390625"/>
1080
+ <use xlink:href="#glyph0-11" x="191.902344" y="1837.390625"/>
1081
+ <use xlink:href="#glyph0-18" x="197.228516" y="1837.390625"/>
1082
+ <use xlink:href="#glyph0-13" x="202.554688" y="1837.390625"/>
1083
+ <use xlink:href="#glyph0-12" x="205.888672" y="1837.390625"/>
1084
+ <use xlink:href="#glyph0-5" x="215.222656" y="1837.390625"/>
1085
+ <use xlink:href="#glyph0-10" x="221.222656" y="1837.390625"/>
1086
+ <use xlink:href="#glyph0-7" x="224.556641" y="1837.390625"/>
1087
+ <use xlink:href="#glyph0-14" x="227.556641" y="1837.390625"/>
1088
+ <use xlink:href="#glyph0-13" x="233.556641" y="1837.390625"/>
1089
+ <use xlink:href="#glyph0-17" x="236.890625" y="1837.390625"/>
1090
+ <use xlink:href="#glyph0-13" x="242.890625" y="1837.390625"/>
1091
+ <use xlink:href="#glyph0-4" x="246.224609" y="1837.390625"/>
1092
+ </g>
1093
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.484375 1873.222656 L 183.070312 1859.808594 L 299.367188 1859.808594 L 303.949219 1873.222656 L 299.367188 1886.640625 L 183.070312 1886.640625 Z M 178.484375 1873.222656 "/>
1094
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
1095
+ <use xlink:href="#glyph2-11" x="186.902344" y="1876.222656"/>
1096
+ <use xlink:href="#glyph2-12" x="194.232422" y="1876.222656"/>
1097
+ <use xlink:href="#glyph2-13" x="200.232422" y="1876.222656"/>
1098
+ <use xlink:href="#glyph2-14" x="208.236328" y="1876.222656"/>
1099
+ <use xlink:href="#glyph2-14" x="212.232422" y="1876.222656"/>
1100
+ <use xlink:href="#glyph2-7" x="216.228516" y="1876.222656"/>
1101
+ <use xlink:href="#glyph2-15" x="219.228516" y="1876.222656"/>
1102
+ <use xlink:href="#glyph2-16" x="223.898438" y="1876.222656"/>
1103
+ <use xlink:href="#glyph2-3" x="229.898438" y="1876.222656"/>
1104
+ <use xlink:href="#glyph2-1" x="235.898438" y="1876.222656"/>
1105
+ <use xlink:href="#glyph2-6" x="241.224609" y="1876.222656"/>
1106
+ <use xlink:href="#glyph2-7" x="246.550781" y="1876.222656"/>
1107
+ <use xlink:href="#glyph2-1" x="249.550781" y="1876.222656"/>
1108
+ <use xlink:href="#glyph2-2" x="254.876953" y="1876.222656"/>
1109
+ <use xlink:href="#glyph2-3" x="260.876953" y="1876.222656"/>
1110
+ <use xlink:href="#glyph2-4" x="266.876953" y="1876.222656"/>
1111
+ <use xlink:href="#glyph2-3" x="271.546875" y="1876.222656"/>
1112
+ <use xlink:href="#glyph2-1" x="277.546875" y="1876.222656"/>
1113
+ <use xlink:href="#glyph2-5" x="282.873047" y="1876.222656"/>
1114
+ <use xlink:href="#glyph2-6" x="286.207031" y="1876.222656"/>
1115
+ <use xlink:href="#glyph2-4" x="291.533203" y="1876.222656"/>
1116
+ </g>
1117
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.484375 1873.222656 L 178.484375 1873.222656 "/>
1118
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 303.949219 1873.222656 L 339.949219 1873.222656 "/>
1119
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.484375 1853.808594 L 160.484375 1865.808594 "/>
1120
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.484375 1865.808594 C 160.484375 1869.902344 157.167969 1873.222656 153.070312 1873.222656 "/>
1121
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.070312 1873.222656 L 142.484375 1873.222656 "/>
1122
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.949219 1873.222656 L 329.363281 1873.222656 "/>
1123
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 329.363281 1873.222656 C 325.269531 1873.222656 321.949219 1869.902344 321.949219 1865.808594 "/>
1124
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.949219 1865.808594 L 321.949219 1853.808594 "/>
1125
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.484375 1853.808594 L 160.484375 1802.976562 "/>
1126
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.484375 1802.976562 C 160.484375 1798.878906 163.804688 1795.558594 167.902344 1795.558594 "/>
1127
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.902344 1795.558594 L 178.484375 1795.558594 "/>
1128
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.484375 1795.558594 L 178.484375 1795.558594 "/>
1129
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.972656 1795.558594 L 303.949219 1795.558594 "/>
1130
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 303.949219 1795.558594 L 314.53125 1795.558594 "/>
1131
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.53125 1795.558594 C 318.628906 1795.558594 321.949219 1798.878906 321.949219 1802.976562 "/>
1132
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.949219 1802.976562 L 321.949219 1853.808594 "/>
1133
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.484375 1853.808594 L 160.484375 1841.808594 "/>
1134
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.484375 1841.808594 C 160.484375 1837.710938 163.804688 1834.390625 167.902344 1834.390625 "/>
1135
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.902344 1834.390625 L 178.484375 1834.390625 "/>
1136
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.484375 1834.390625 L 178.484375 1834.390625 "/>
1137
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 257.640625 1834.390625 L 303.949219 1834.390625 "/>
1138
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 303.949219 1834.390625 L 314.53125 1834.390625 "/>
1139
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.53125 1834.390625 C 318.628906 1834.390625 321.949219 1837.710938 321.949219 1841.808594 "/>
1140
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.949219 1841.808594 L 321.949219 1853.808594 "/>
1141
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 106.484375 1873.222656 L 142.484375 1873.222656 "/>
1142
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.949219 1873.222656 L 375.949219 1873.222656 "/>
1143
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 106.484375 1873.222656 L 117.070312 1873.222656 "/>
1144
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.070312 1873.222656 C 121.167969 1873.222656 124.484375 1876.542969 124.484375 1880.640625 "/>
1145
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.484375 1880.640625 L 124.484375 1888.933594 "/>
1146
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.484375 1904.640625 L 131.902344 1904.640625 "/>
1147
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.902344 1904.640625 C 127.804688 1904.640625 124.484375 1901.320312 124.484375 1897.222656 "/>
1148
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.484375 1897.222656 L 124.484375 1888.933594 "/>
1149
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.484375 1904.640625 L 339.949219 1904.640625 "/>
1150
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 357.949219 1888.933594 L 357.949219 1897.222656 "/>
1151
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 357.949219 1897.222656 C 357.949219 1901.320312 354.628906 1904.640625 350.53125 1904.640625 "/>
1152
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 350.53125 1904.640625 L 339.949219 1904.640625 "/>
1153
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 357.949219 1888.933594 L 357.949219 1880.640625 "/>
1154
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 357.949219 1880.640625 C 357.949219 1876.542969 361.269531 1873.222656 365.363281 1873.222656 "/>
1155
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 365.363281 1873.222656 L 375.949219 1873.222656 "/>
1156
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.484375 1873.222656 L 131.902344 1873.222656 "/>
1157
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.902344 1873.222656 C 127.804688 1873.222656 124.484375 1869.902344 124.484375 1865.808594 "/>
1158
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.484375 1865.808594 L 124.484375 1818.683594 "/>
1159
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.484375 1818.683594 L 124.484375 1771.558594 "/>
1160
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.484375 1771.558594 C 124.484375 1767.464844 127.804688 1764.144531 131.902344 1764.144531 "/>
1161
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.902344 1764.144531 L 142.484375 1764.144531 "/>
1162
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.484375 1764.144531 L 339.949219 1764.144531 "/>
1163
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.949219 1764.144531 L 350.53125 1764.144531 "/>
1164
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 350.53125 1764.144531 C 354.628906 1764.144531 357.949219 1767.464844 357.949219 1771.558594 "/>
1165
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 357.949219 1771.558594 L 357.949219 1818.683594 "/>
1166
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 357.949219 1818.683594 L 357.949219 1865.808594 "/>
1167
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 357.949219 1865.808594 C 357.949219 1869.902344 354.628906 1873.222656 350.53125 1873.222656 "/>
1168
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 350.53125 1873.222656 L 339.949219 1873.222656 "/>
1169
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 88.484375 1873.222656 L 106.484375 1873.222656 "/>
1170
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 1873.222656 L 48 1873.222656 "/>
1171
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 375.949219 1873.222656 L 399.949219 1873.222656 "/>
1172
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 1867.222656 L 24 1879.222656 "/>
1173
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 399.949219 1867.222656 L 399.949219 1879.222656 "/>
1174
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
1175
+ <use xlink:href="#glyph0-4" x="24" y="1961.640625"/>
1176
+ <use xlink:href="#glyph0-11" x="27.333984" y="1961.640625"/>
1177
+ <use xlink:href="#glyph0-8" x="32.660156" y="1961.640625"/>
1178
+ <use xlink:href="#glyph0-12" x="37.330078" y="1961.640625"/>
1179
+ <use xlink:href="#glyph0-13" x="46.664062" y="1961.640625"/>
1180
+ <use xlink:href="#glyph0-3" x="49.998047" y="1961.640625"/>
1181
+ <use xlink:href="#glyph0-5" x="56.671875" y="1961.640625"/>
1182
+ <use xlink:href="#glyph0-10" x="62.671875" y="1961.640625"/>
1183
+ <use xlink:href="#glyph0-7" x="66.005859" y="1961.640625"/>
1184
+ <use xlink:href="#glyph0-1" x="69.005859" y="1961.640625"/>
1185
+ <use xlink:href="#glyph0-4" x="73.675781" y="1961.640625"/>
1186
+ <use xlink:href="#glyph0-8" x="77.009766" y="1961.640625"/>
1187
+ <use xlink:href="#glyph0-13" x="81.679688" y="1961.640625"/>
1188
+ <use xlink:href="#glyph0-3" x="85.013672" y="1961.640625"/>
1189
+ <use xlink:href="#glyph0-17" x="91.6875" y="1961.640625"/>
1190
+ </g>
1191
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 91.414062 2006.640625 L 93.414062 2006.640625 C 97.125 2006.640625 100.832031 2010.347656 100.832031 2014.054688 L 100.832031 2026.054688 C 100.832031 2029.765625 97.125 2033.472656 93.414062 2033.472656 L 91.414062 2033.472656 C 87.707031 2033.472656 84 2029.765625 84 2026.054688 L 84 2014.054688 C 84 2010.347656 87.707031 2006.640625 91.414062 2006.640625 Z M 91.414062 2006.640625 "/>
1192
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
1193
+ <use xlink:href="#glyph1-14" x="91.414062" y="2027.054688"/>
1194
+ </g>
1195
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.832031 2020.054688 L 123.414062 2006.640625 L 199.335938 2006.640625 L 203.917969 2020.054688 L 199.335938 2033.472656 L 123.414062 2033.472656 Z M 118.832031 2020.054688 "/>
1196
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
1197
+ <use xlink:href="#glyph2-1" x="126.246094" y="2024.054688"/>
1198
+ <use xlink:href="#glyph2-2" x="131.572266" y="2024.054688"/>
1199
+ <use xlink:href="#glyph2-3" x="137.572266" y="2024.054688"/>
1200
+ <use xlink:href="#glyph2-4" x="143.572266" y="2024.054688"/>
1201
+ <use xlink:href="#glyph2-3" x="148.242188" y="2024.054688"/>
1202
+ <use xlink:href="#glyph2-1" x="154.242188" y="2024.054688"/>
1203
+ <use xlink:href="#glyph2-5" x="159.568359" y="2024.054688"/>
1204
+ <use xlink:href="#glyph2-6" x="162.902344" y="2024.054688"/>
1205
+ <use xlink:href="#glyph2-4" x="168.228516" y="2024.054688"/>
1206
+ <use xlink:href="#glyph2-7" x="172.898438" y="2024.054688"/>
1207
+ <use xlink:href="#glyph2-8" x="175.898438" y="2024.054688"/>
1208
+ <use xlink:href="#glyph2-7" x="179.894531" y="2024.054688"/>
1209
+ <use xlink:href="#glyph2-17" x="182.894531" y="2024.054688"/>
1210
+ <use xlink:href="#glyph2-9" x="187.933594" y="2024.054688"/>
1211
+ <use xlink:href="#glyph2-17" x="190.5" y="2024.054688"/>
1212
+ </g>
1213
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 257.917969 2020.054688 L 262.5 2006.640625 L 338.421875 2006.640625 L 343.003906 2020.054688 L 338.421875 2033.472656 L 262.5 2033.472656 Z M 257.917969 2020.054688 "/>
1214
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
1215
+ <use xlink:href="#glyph2-1" x="265.332031" y="2024.054688"/>
1216
+ <use xlink:href="#glyph2-2" x="270.658203" y="2024.054688"/>
1217
+ <use xlink:href="#glyph2-3" x="276.658203" y="2024.054688"/>
1218
+ <use xlink:href="#glyph2-4" x="282.658203" y="2024.054688"/>
1219
+ <use xlink:href="#glyph2-3" x="287.328125" y="2024.054688"/>
1220
+ <use xlink:href="#glyph2-1" x="293.328125" y="2024.054688"/>
1221
+ <use xlink:href="#glyph2-5" x="298.654297" y="2024.054688"/>
1222
+ <use xlink:href="#glyph2-6" x="301.988281" y="2024.054688"/>
1223
+ <use xlink:href="#glyph2-4" x="307.314453" y="2024.054688"/>
1224
+ <use xlink:href="#glyph2-7" x="311.984375" y="2024.054688"/>
1225
+ <use xlink:href="#glyph2-8" x="314.984375" y="2024.054688"/>
1226
+ <use xlink:href="#glyph2-7" x="318.980469" y="2024.054688"/>
1227
+ <use xlink:href="#glyph2-17" x="321.980469" y="2024.054688"/>
1228
+ <use xlink:href="#glyph2-9" x="327.019531" y="2024.054688"/>
1229
+ <use xlink:href="#glyph2-17" x="329.585938" y="2024.054688"/>
1230
+ </g>
1231
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 221.917969 2020.054688 L 257.917969 2020.054688 "/>
1232
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 343.003906 2020.054688 L 379.003906 2020.054688 "/>
1233
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 221.917969 2020.054688 L 232.5 2020.054688 "/>
1234
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.5 2020.054688 C 236.597656 2020.054688 239.917969 2023.375 239.917969 2027.472656 "/>
1235
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.917969 2027.472656 L 239.917969 2035.765625 "/>
1236
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 257.917969 2051.472656 L 247.332031 2051.472656 "/>
1237
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.332031 2051.472656 C 243.238281 2051.472656 239.917969 2048.152344 239.917969 2044.054688 "/>
1238
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.917969 2044.054688 L 239.917969 2035.765625 "/>
1239
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 257.917969 2051.472656 L 343.003906 2051.472656 "/>
1240
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 361.003906 2035.765625 L 361.003906 2044.054688 "/>
1241
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 361.003906 2044.054688 C 361.003906 2048.152344 357.683594 2051.472656 353.585938 2051.472656 "/>
1242
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 353.585938 2051.472656 L 343.003906 2051.472656 "/>
1243
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 361.003906 2035.765625 L 361.003906 2027.472656 "/>
1244
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 361.003906 2027.472656 C 361.003906 2023.375 364.324219 2020.054688 368.417969 2020.054688 "/>
1245
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 368.417969 2020.054688 L 379.003906 2020.054688 "/>
1246
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 257.917969 2020.054688 L 247.332031 2020.054688 "/>
1247
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.332031 2020.054688 C 243.238281 2020.054688 239.917969 2016.734375 239.917969 2012.640625 "/>
1248
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.917969 2012.640625 L 239.917969 2004.347656 "/>
1249
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.917969 2004.347656 L 239.917969 1996.054688 "/>
1250
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.917969 1996.054688 C 239.917969 1991.960938 243.238281 1988.640625 247.332031 1988.640625 "/>
1251
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.332031 1988.640625 L 257.917969 1988.640625 "/>
1252
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 257.917969 1988.640625 L 343.003906 1988.640625 "/>
1253
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 343.003906 1988.640625 L 353.585938 1988.640625 "/>
1254
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 353.585938 1988.640625 C 357.683594 1988.640625 361.003906 1991.960938 361.003906 1996.054688 "/>
1255
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 361.003906 1996.054688 L 361.003906 2004.347656 "/>
1256
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 361.003906 2004.347656 L 361.003906 2012.640625 "/>
1257
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 361.003906 2012.640625 C 361.003906 2016.734375 357.683594 2020.054688 353.585938 2020.054688 "/>
1258
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 353.585938 2020.054688 L 343.003906 2020.054688 "/>
1259
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 404.417969 2006.640625 L 406.417969 2006.640625 C 410.128906 2006.640625 413.835938 2010.347656 413.835938 2014.054688 L 413.835938 2026.054688 C 413.835938 2029.765625 410.128906 2033.472656 406.417969 2033.472656 L 404.417969 2033.472656 C 400.710938 2033.472656 397.003906 2029.765625 397.003906 2026.054688 L 397.003906 2014.054688 C 397.003906 2010.347656 400.710938 2006.640625 404.417969 2006.640625 Z M 404.417969 2006.640625 "/>
1260
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
1261
+ <use xlink:href="#glyph1-14" x="404.417969" y="2027.054688"/>
1262
+ </g>
1263
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 100.832031 2020.054688 L 118.832031 2020.054688 "/>
1264
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.917969 2020.054688 L 221.917969 2020.054688 "/>
1265
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 379.003906 2020.054688 L 397.003906 2020.054688 "/>
1266
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 91.414062 2081.472656 L 96.414062 2081.472656 C 100.125 2081.472656 103.832031 2085.179688 103.832031 2088.886719 L 103.832031 2100.886719 C 103.832031 2104.597656 100.125 2108.304688 96.414062 2108.304688 L 91.414062 2108.304688 C 87.707031 2108.304688 84 2104.597656 84 2100.886719 L 84 2088.886719 C 84 2085.179688 87.707031 2081.472656 91.414062 2081.472656 Z M 91.414062 2081.472656 "/>
1267
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
1268
+ <use xlink:href="#glyph1-15" x="91.414062" y="2101.886719"/>
1269
+ </g>
1270
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 121.832031 2094.886719 L 126.414062 2081.472656 L 200.335938 2081.472656 L 204.917969 2094.886719 L 200.335938 2108.304688 L 126.414062 2108.304688 Z M 121.832031 2094.886719 "/>
1271
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
1272
+ <use xlink:href="#glyph2-1" x="129.246094" y="2098.886719"/>
1273
+ <use xlink:href="#glyph2-2" x="134.572266" y="2098.886719"/>
1274
+ <use xlink:href="#glyph2-3" x="140.572266" y="2098.886719"/>
1275
+ <use xlink:href="#glyph2-4" x="146.572266" y="2098.886719"/>
1276
+ <use xlink:href="#glyph2-3" x="151.242188" y="2098.886719"/>
1277
+ <use xlink:href="#glyph2-1" x="157.242188" y="2098.886719"/>
1278
+ <use xlink:href="#glyph2-5" x="162.568359" y="2098.886719"/>
1279
+ <use xlink:href="#glyph2-6" x="165.902344" y="2098.886719"/>
1280
+ <use xlink:href="#glyph2-4" x="171.228516" y="2098.886719"/>
1281
+ <use xlink:href="#glyph2-7" x="175.898438" y="2098.886719"/>
1282
+ <use xlink:href="#glyph2-8" x="178.898438" y="2098.886719"/>
1283
+ <use xlink:href="#glyph2-7" x="182.894531" y="2098.886719"/>
1284
+ <use xlink:href="#glyph2-9" x="185.894531" y="2098.886719"/>
1285
+ <use xlink:href="#glyph2-17" x="188.460938" y="2098.886719"/>
1286
+ <use xlink:href="#glyph2-9" x="193.5" y="2098.886719"/>
1287
+ </g>
1288
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.917969 2094.886719 L 263.5 2081.472656 L 337.421875 2081.472656 L 342.003906 2094.886719 L 337.421875 2108.304688 L 263.5 2108.304688 Z M 258.917969 2094.886719 "/>
1289
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
1290
+ <use xlink:href="#glyph2-1" x="266.332031" y="2098.886719"/>
1291
+ <use xlink:href="#glyph2-2" x="271.658203" y="2098.886719"/>
1292
+ <use xlink:href="#glyph2-3" x="277.658203" y="2098.886719"/>
1293
+ <use xlink:href="#glyph2-4" x="283.658203" y="2098.886719"/>
1294
+ <use xlink:href="#glyph2-3" x="288.328125" y="2098.886719"/>
1295
+ <use xlink:href="#glyph2-1" x="294.328125" y="2098.886719"/>
1296
+ <use xlink:href="#glyph2-5" x="299.654297" y="2098.886719"/>
1297
+ <use xlink:href="#glyph2-6" x="302.988281" y="2098.886719"/>
1298
+ <use xlink:href="#glyph2-4" x="308.314453" y="2098.886719"/>
1299
+ <use xlink:href="#glyph2-7" x="312.984375" y="2098.886719"/>
1300
+ <use xlink:href="#glyph2-8" x="315.984375" y="2098.886719"/>
1301
+ <use xlink:href="#glyph2-7" x="319.980469" y="2098.886719"/>
1302
+ <use xlink:href="#glyph2-9" x="322.980469" y="2098.886719"/>
1303
+ <use xlink:href="#glyph2-17" x="325.546875" y="2098.886719"/>
1304
+ <use xlink:href="#glyph2-9" x="330.585938" y="2098.886719"/>
1305
+ </g>
1306
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.917969 2094.886719 L 258.917969 2094.886719 "/>
1307
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 342.003906 2094.886719 L 378.003906 2094.886719 "/>
1308
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.917969 2094.886719 L 233.5 2094.886719 "/>
1309
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 233.5 2094.886719 C 237.597656 2094.886719 240.917969 2098.207031 240.917969 2102.304688 "/>
1310
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 240.917969 2102.304688 L 240.917969 2110.597656 "/>
1311
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.917969 2126.304688 L 248.332031 2126.304688 "/>
1312
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.332031 2126.304688 C 244.238281 2126.304688 240.917969 2122.984375 240.917969 2118.886719 "/>
1313
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 240.917969 2118.886719 L 240.917969 2110.597656 "/>
1314
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.917969 2126.304688 L 342.003906 2126.304688 "/>
1315
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 360.003906 2110.597656 L 360.003906 2118.886719 "/>
1316
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 360.003906 2118.886719 C 360.003906 2122.984375 356.683594 2126.304688 352.585938 2126.304688 "/>
1317
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 352.585938 2126.304688 L 342.003906 2126.304688 "/>
1318
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 360.003906 2110.597656 L 360.003906 2102.304688 "/>
1319
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 360.003906 2102.304688 C 360.003906 2098.207031 363.324219 2094.886719 367.417969 2094.886719 "/>
1320
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 367.417969 2094.886719 L 378.003906 2094.886719 "/>
1321
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.917969 2094.886719 L 248.332031 2094.886719 "/>
1322
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.332031 2094.886719 C 244.238281 2094.886719 240.917969 2091.566406 240.917969 2087.472656 "/>
1323
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 240.917969 2087.472656 L 240.917969 2079.179688 "/>
1324
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 240.917969 2079.179688 L 240.917969 2070.886719 "/>
1325
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 240.917969 2070.886719 C 240.917969 2066.792969 244.238281 2063.472656 248.332031 2063.472656 "/>
1326
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.332031 2063.472656 L 258.917969 2063.472656 "/>
1327
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.917969 2063.472656 L 342.003906 2063.472656 "/>
1328
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 342.003906 2063.472656 L 352.585938 2063.472656 "/>
1329
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 352.585938 2063.472656 C 356.683594 2063.472656 360.003906 2066.792969 360.003906 2070.886719 "/>
1330
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 360.003906 2070.886719 L 360.003906 2079.179688 "/>
1331
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 360.003906 2079.179688 L 360.003906 2087.472656 "/>
1332
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 360.003906 2087.472656 C 360.003906 2091.566406 356.683594 2094.886719 352.585938 2094.886719 "/>
1333
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 352.585938 2094.886719 L 342.003906 2094.886719 "/>
1334
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 403.417969 2081.472656 L 408.417969 2081.472656 C 412.128906 2081.472656 415.835938 2085.179688 415.835938 2088.886719 L 415.835938 2100.886719 C 415.835938 2104.597656 412.128906 2108.304688 408.417969 2108.304688 L 403.417969 2108.304688 C 399.710938 2108.304688 396.003906 2104.597656 396.003906 2100.886719 L 396.003906 2088.886719 C 396.003906 2085.179688 399.710938 2081.472656 403.417969 2081.472656 Z M 403.417969 2081.472656 "/>
1335
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
1336
+ <use xlink:href="#glyph1-15" x="403.417969" y="2101.886719"/>
1337
+ </g>
1338
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 103.832031 2094.886719 L 121.832031 2094.886719 "/>
1339
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 204.917969 2094.886719 L 222.917969 2094.886719 "/>
1340
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 378.003906 2094.886719 L 396.003906 2094.886719 "/>
1341
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48 2094.886719 L 84 2094.886719 "/>
1342
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 415.835938 2094.886719 L 451.835938 2094.886719 "/>
1343
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 66 2057.472656 L 66 2087.472656 "/>
1344
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 66 2087.472656 C 66 2091.566406 62.679688 2094.886719 58.585938 2094.886719 "/>
1345
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 58.585938 2094.886719 L 48 2094.886719 "/>
1346
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 451.835938 2094.886719 L 441.25 2094.886719 "/>
1347
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 441.25 2094.886719 C 437.15625 2094.886719 433.835938 2091.566406 433.835938 2087.472656 "/>
1348
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.835938 2087.472656 L 433.835938 2057.472656 "/>
1349
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 66 2057.472656 L 66 2027.472656 "/>
1350
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 66 2027.472656 C 66 2023.375 69.320312 2020.054688 73.414062 2020.054688 "/>
1351
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 73.414062 2020.054688 L 84 2020.054688 "/>
1352
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84 2020.054688 L 84 2020.054688 "/>
1353
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 413.835938 2020.054688 L 415.835938 2020.054688 "/>
1354
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 415.835938 2020.054688 L 426.417969 2020.054688 "/>
1355
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 426.417969 2020.054688 C 430.515625 2020.054688 433.835938 2023.375 433.835938 2027.472656 "/>
1356
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.835938 2027.472656 L 433.835938 2057.472656 "/>
1357
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 2094.886719 L 48 2094.886719 "/>
1358
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 451.835938 2094.886719 L 475.835938 2094.886719 "/>
1359
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 2088.886719 L 24 2100.886719 "/>
1360
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 475.835938 2088.886719 L 475.835938 2100.886719 "/>
1361
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
1362
+ <use xlink:href="#glyph0-13" x="24" y="2183.304688"/>
1363
+ <use xlink:href="#glyph0-3" x="27.333984" y="2183.304688"/>
1364
+ <use xlink:href="#glyph0-4" x="34.007812" y="2183.304688"/>
1365
+ <use xlink:href="#glyph0-11" x="37.341797" y="2183.304688"/>
1366
+ <use xlink:href="#glyph0-17" x="42.667969" y="2183.304688"/>
1367
+ <use xlink:href="#glyph0-11" x="48.667969" y="2183.304688"/>
1368
+ <use xlink:href="#glyph0-8" x="53.994141" y="2183.304688"/>
1369
+ </g>
1370
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48 2228.304688 L 127.152344 2228.304688 L 127.152344 2255.136719 L 48 2255.136719 Z M 48 2228.304688 "/>
1371
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
1372
+ <use xlink:href="#glyph0-14" x="55.414062" y="2244.71875"/>
1373
+ <use xlink:href="#glyph0-11" x="61.414062" y="2244.71875"/>
1374
+ <use xlink:href="#glyph0-18" x="66.740234" y="2244.71875"/>
1375
+ <use xlink:href="#glyph0-13" x="72.066406" y="2244.71875"/>
1376
+ <use xlink:href="#glyph0-12" x="75.400391" y="2244.71875"/>
1377
+ <use xlink:href="#glyph0-5" x="84.734375" y="2244.71875"/>
1378
+ <use xlink:href="#glyph0-10" x="90.734375" y="2244.71875"/>
1379
+ <use xlink:href="#glyph0-7" x="94.068359" y="2244.71875"/>
1380
+ <use xlink:href="#glyph0-14" x="97.068359" y="2244.71875"/>
1381
+ <use xlink:href="#glyph0-13" x="103.068359" y="2244.71875"/>
1382
+ <use xlink:href="#glyph0-17" x="106.402344" y="2244.71875"/>
1383
+ <use xlink:href="#glyph0-13" x="112.402344" y="2244.71875"/>
1384
+ <use xlink:href="#glyph0-4" x="115.736328" y="2244.71875"/>
1385
+ </g>
1386
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 181.152344 2228.304688 L 260.308594 2228.304688 L 260.308594 2255.136719 L 181.152344 2255.136719 Z M 181.152344 2228.304688 "/>
1387
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
1388
+ <use xlink:href="#glyph0-14" x="188.570312" y="2244.71875"/>
1389
+ <use xlink:href="#glyph0-11" x="194.570312" y="2244.71875"/>
1390
+ <use xlink:href="#glyph0-18" x="199.896484" y="2244.71875"/>
1391
+ <use xlink:href="#glyph0-13" x="205.222656" y="2244.71875"/>
1392
+ <use xlink:href="#glyph0-12" x="208.556641" y="2244.71875"/>
1393
+ <use xlink:href="#glyph0-5" x="217.890625" y="2244.71875"/>
1394
+ <use xlink:href="#glyph0-10" x="223.890625" y="2244.71875"/>
1395
+ <use xlink:href="#glyph0-7" x="227.224609" y="2244.71875"/>
1396
+ <use xlink:href="#glyph0-14" x="230.224609" y="2244.71875"/>
1397
+ <use xlink:href="#glyph0-13" x="236.224609" y="2244.71875"/>
1398
+ <use xlink:href="#glyph0-17" x="239.558594" y="2244.71875"/>
1399
+ <use xlink:href="#glyph0-13" x="245.558594" y="2244.71875"/>
1400
+ <use xlink:href="#glyph0-4" x="248.892578" y="2244.71875"/>
1401
+ </g>
1402
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.152344 2241.71875 L 181.152344 2241.71875 "/>
1403
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 260.308594 2241.71875 L 296.308594 2241.71875 "/>
1404
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.152344 2241.71875 L 155.738281 2241.71875 "/>
1405
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.738281 2241.71875 C 159.835938 2241.71875 163.152344 2245.039062 163.152344 2249.136719 "/>
1406
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.152344 2249.136719 L 163.152344 2257.429688 "/>
1407
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 181.152344 2273.136719 L 170.570312 2273.136719 "/>
1408
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.570312 2273.136719 C 166.472656 2273.136719 163.152344 2269.816406 163.152344 2265.71875 "/>
1409
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.152344 2265.71875 L 163.152344 2257.429688 "/>
1410
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 181.152344 2273.136719 L 260.308594 2273.136719 "/>
1411
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.308594 2257.429688 L 278.308594 2265.71875 "/>
1412
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.308594 2265.71875 C 278.308594 2269.816406 274.988281 2273.136719 270.890625 2273.136719 "/>
1413
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270.890625 2273.136719 L 260.308594 2273.136719 "/>
1414
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.308594 2257.429688 L 278.308594 2249.136719 "/>
1415
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.308594 2249.136719 C 278.308594 2245.039062 281.628906 2241.71875 285.722656 2241.71875 "/>
1416
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 285.722656 2241.71875 L 296.308594 2241.71875 "/>
1417
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 181.152344 2241.71875 L 170.570312 2241.71875 "/>
1418
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.570312 2241.71875 C 166.472656 2241.71875 163.152344 2238.398438 163.152344 2234.304688 "/>
1419
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.152344 2234.304688 L 163.152344 2226.011719 "/>
1420
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.152344 2226.011719 L 163.152344 2217.71875 "/>
1421
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.152344 2217.71875 C 163.152344 2213.625 166.472656 2210.304688 170.570312 2210.304688 "/>
1422
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.570312 2210.304688 L 181.152344 2210.304688 "/>
1423
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 181.152344 2210.304688 L 260.308594 2210.304688 "/>
1424
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 260.308594 2210.304688 L 270.890625 2210.304688 "/>
1425
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270.890625 2210.304688 C 274.988281 2210.304688 278.308594 2213.625 278.308594 2217.71875 "/>
1426
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.308594 2217.71875 L 278.308594 2226.011719 "/>
1427
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.308594 2226.011719 L 278.308594 2234.304688 "/>
1428
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.308594 2234.304688 C 278.308594 2238.398438 274.988281 2241.71875 270.890625 2241.71875 "/>
1429
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270.890625 2241.71875 L 260.308594 2241.71875 "/>
1430
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.152344 2241.71875 L 145.152344 2241.71875 "/>
1431
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 2241.71875 L 48 2241.71875 "/>
1432
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 296.308594 2241.71875 L 320.308594 2241.71875 "/>
1433
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 2235.71875 L 24 2247.71875 "/>
1434
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 320.308594 2235.71875 L 320.308594 2247.71875 "/>
1435
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
1436
+ <use xlink:href="#glyph0-18" x="24" y="2331.636719"/>
1437
+ <use xlink:href="#glyph0-21" x="29.326172" y="2331.636719"/>
1438
+ <use xlink:href="#glyph0-5" x="36" y="2331.636719"/>
1439
+ <use xlink:href="#glyph0-8" x="42" y="2331.636719"/>
1440
+ <use xlink:href="#glyph0-5" x="46.669922" y="2331.636719"/>
1441
+ <use xlink:href="#glyph0-18" x="52.669922" y="2331.636719"/>
1442
+ <use xlink:href="#glyph0-4" x="57.996094" y="2331.636719"/>
1443
+ <use xlink:href="#glyph0-11" x="61.330078" y="2331.636719"/>
1444
+ <use xlink:href="#glyph0-8" x="66.65625" y="2331.636719"/>
1445
+ </g>
1446
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48 2370.550781 L 52.582031 2357.136719 L 269.535156 2357.136719 L 274.117188 2370.550781 L 269.535156 2383.96875 L 52.582031 2383.96875 Z M 48 2370.550781 "/>
1447
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
1448
+ <use xlink:href="#glyph2-3" x="55.414062" y="2373.550781"/>
1449
+ <use xlink:href="#glyph2-18" x="61.414062" y="2373.550781"/>
1450
+ <use xlink:href="#glyph2-19" x="67.414062" y="2373.550781"/>
1451
+ <use xlink:href="#glyph2-7" x="72.740234" y="2373.550781"/>
1452
+ <use xlink:href="#glyph2-1" x="75.740234" y="2373.550781"/>
1453
+ <use xlink:href="#glyph2-2" x="81.066406" y="2373.550781"/>
1454
+ <use xlink:href="#glyph2-3" x="87.066406" y="2373.550781"/>
1455
+ <use xlink:href="#glyph2-4" x="93.066406" y="2373.550781"/>
1456
+ <use xlink:href="#glyph2-3" x="97.736328" y="2373.550781"/>
1457
+ <use xlink:href="#glyph2-1" x="103.736328" y="2373.550781"/>
1458
+ <use xlink:href="#glyph2-5" x="109.0625" y="2373.550781"/>
1459
+ <use xlink:href="#glyph2-6" x="112.396484" y="2373.550781"/>
1460
+ <use xlink:href="#glyph2-4" x="117.722656" y="2373.550781"/>
1461
+ <use xlink:href="#glyph2-7" x="122.392578" y="2373.550781"/>
1462
+ <use xlink:href="#glyph2-20" x="125.392578" y="2373.550781"/>
1463
+ <use xlink:href="#glyph2-18" x="128.726562" y="2373.550781"/>
1464
+ <use xlink:href="#glyph2-7" x="134.726562" y="2373.550781"/>
1465
+ <use xlink:href="#glyph2-11" x="137.726562" y="2373.550781"/>
1466
+ <use xlink:href="#glyph2-12" x="145.056641" y="2373.550781"/>
1467
+ <use xlink:href="#glyph2-13" x="151.056641" y="2373.550781"/>
1468
+ <use xlink:href="#glyph2-14" x="159.060547" y="2373.550781"/>
1469
+ <use xlink:href="#glyph2-14" x="163.056641" y="2373.550781"/>
1470
+ <use xlink:href="#glyph2-7" x="167.052734" y="2373.550781"/>
1471
+ <use xlink:href="#glyph2-3" x="170.052734" y="2373.550781"/>
1472
+ <use xlink:href="#glyph2-21" x="176.052734" y="2373.550781"/>
1473
+ <use xlink:href="#glyph2-16" x="179.386719" y="2373.550781"/>
1474
+ <use xlink:href="#glyph2-2" x="185.386719" y="2373.550781"/>
1475
+ <use xlink:href="#glyph2-3" x="191.386719" y="2373.550781"/>
1476
+ <use xlink:href="#glyph2-22" x="197.386719" y="2373.550781"/>
1477
+ <use xlink:href="#glyph2-6" x="203.386719" y="2373.550781"/>
1478
+ <use xlink:href="#glyph2-5" x="208.712891" y="2373.550781"/>
1479
+ <use xlink:href="#glyph2-7" x="212.046875" y="2373.550781"/>
1480
+ <use xlink:href="#glyph2-1" x="215.046875" y="2373.550781"/>
1481
+ <use xlink:href="#glyph2-2" x="220.373047" y="2373.550781"/>
1482
+ <use xlink:href="#glyph2-3" x="226.373047" y="2373.550781"/>
1483
+ <use xlink:href="#glyph2-4" x="232.373047" y="2373.550781"/>
1484
+ <use xlink:href="#glyph2-3" x="237.042969" y="2373.550781"/>
1485
+ <use xlink:href="#glyph2-1" x="243.042969" y="2373.550781"/>
1486
+ <use xlink:href="#glyph2-5" x="248.369141" y="2373.550781"/>
1487
+ <use xlink:href="#glyph2-6" x="251.703125" y="2373.550781"/>
1488
+ <use xlink:href="#glyph2-4" x="257.029297" y="2373.550781"/>
1489
+ <use xlink:href="#glyph2-15" x="261.699219" y="2373.550781"/>
1490
+ </g>
1491
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 2370.550781 L 48 2370.550781 "/>
1492
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.117188 2370.550781 L 298.117188 2370.550781 "/>
1493
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 2364.550781 L 24 2376.550781 "/>
1494
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 298.117188 2364.550781 L 298.117188 2376.550781 "/>
1495
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
1496
+ <use xlink:href="#glyph0-14" x="24" y="2440.96875"/>
1497
+ <use xlink:href="#glyph0-11" x="30" y="2440.96875"/>
1498
+ <use xlink:href="#glyph0-18" x="35.326172" y="2440.96875"/>
1499
+ <use xlink:href="#glyph0-13" x="40.652344" y="2440.96875"/>
1500
+ <use xlink:href="#glyph0-12" x="43.986328" y="2440.96875"/>
1501
+ <use xlink:href="#glyph0-5" x="53.320312" y="2440.96875"/>
1502
+ <use xlink:href="#glyph0-10" x="59.320312" y="2440.96875"/>
1503
+ <use xlink:href="#glyph0-7" x="62.654297" y="2440.96875"/>
1504
+ <use xlink:href="#glyph0-14" x="65.654297" y="2440.96875"/>
1505
+ <use xlink:href="#glyph0-13" x="71.654297" y="2440.96875"/>
1506
+ <use xlink:href="#glyph0-17" x="74.988281" y="2440.96875"/>
1507
+ <use xlink:href="#glyph0-13" x="80.988281" y="2440.96875"/>
1508
+ <use xlink:href="#glyph0-4" x="84.322266" y="2440.96875"/>
1509
+ </g>
1510
+ <path style="fill-rule:nonzero;fill:rgb(80.784314%,100%,80.784314%);fill-opacity:1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48 2481.382812 L 52.582031 2467.96875 L 264.203125 2467.96875 L 268.785156 2481.382812 L 264.203125 2494.800781 L 52.582031 2494.800781 Z M 48 2481.382812 "/>
1511
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
1512
+ <use xlink:href="#glyph2-3" x="55.414062" y="2484.382812"/>
1513
+ <use xlink:href="#glyph2-18" x="61.414062" y="2484.382812"/>
1514
+ <use xlink:href="#glyph2-19" x="67.414062" y="2484.382812"/>
1515
+ <use xlink:href="#glyph2-7" x="72.740234" y="2484.382812"/>
1516
+ <use xlink:href="#glyph2-1" x="75.740234" y="2484.382812"/>
1517
+ <use xlink:href="#glyph2-2" x="81.066406" y="2484.382812"/>
1518
+ <use xlink:href="#glyph2-3" x="87.066406" y="2484.382812"/>
1519
+ <use xlink:href="#glyph2-4" x="93.066406" y="2484.382812"/>
1520
+ <use xlink:href="#glyph2-3" x="97.736328" y="2484.382812"/>
1521
+ <use xlink:href="#glyph2-1" x="103.736328" y="2484.382812"/>
1522
+ <use xlink:href="#glyph2-5" x="109.0625" y="2484.382812"/>
1523
+ <use xlink:href="#glyph2-6" x="112.396484" y="2484.382812"/>
1524
+ <use xlink:href="#glyph2-4" x="117.722656" y="2484.382812"/>
1525
+ <use xlink:href="#glyph2-7" x="122.392578" y="2484.382812"/>
1526
+ <use xlink:href="#glyph2-20" x="125.392578" y="2484.382812"/>
1527
+ <use xlink:href="#glyph2-18" x="128.726562" y="2484.382812"/>
1528
+ <use xlink:href="#glyph2-7" x="134.726562" y="2484.382812"/>
1529
+ <use xlink:href="#glyph2-11" x="137.726562" y="2484.382812"/>
1530
+ <use xlink:href="#glyph2-12" x="145.056641" y="2484.382812"/>
1531
+ <use xlink:href="#glyph2-13" x="151.056641" y="2484.382812"/>
1532
+ <use xlink:href="#glyph2-14" x="159.060547" y="2484.382812"/>
1533
+ <use xlink:href="#glyph2-14" x="163.056641" y="2484.382812"/>
1534
+ <use xlink:href="#glyph2-7" x="167.052734" y="2484.382812"/>
1535
+ <use xlink:href="#glyph2-18" x="170.052734" y="2484.382812"/>
1536
+ <use xlink:href="#glyph2-23" x="176.052734" y="2484.382812"/>
1537
+ <use xlink:href="#glyph2-24" x="182.052734" y="2484.382812"/>
1538
+ <use xlink:href="#glyph2-22" x="190.71875" y="2484.382812"/>
1539
+ <use xlink:href="#glyph2-6" x="196.71875" y="2484.382812"/>
1540
+ <use xlink:href="#glyph2-4" x="202.044922" y="2484.382812"/>
1541
+ <use xlink:href="#glyph2-7" x="206.714844" y="2484.382812"/>
1542
+ <use xlink:href="#glyph2-1" x="209.714844" y="2484.382812"/>
1543
+ <use xlink:href="#glyph2-2" x="215.041016" y="2484.382812"/>
1544
+ <use xlink:href="#glyph2-3" x="221.041016" y="2484.382812"/>
1545
+ <use xlink:href="#glyph2-4" x="227.041016" y="2484.382812"/>
1546
+ <use xlink:href="#glyph2-3" x="231.710938" y="2484.382812"/>
1547
+ <use xlink:href="#glyph2-1" x="237.710938" y="2484.382812"/>
1548
+ <use xlink:href="#glyph2-5" x="243.037109" y="2484.382812"/>
1549
+ <use xlink:href="#glyph2-6" x="246.371094" y="2484.382812"/>
1550
+ <use xlink:href="#glyph2-4" x="251.697266" y="2484.382812"/>
1551
+ <use xlink:href="#glyph2-15" x="256.367188" y="2484.382812"/>
1552
+ </g>
1553
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 2481.382812 L 48 2481.382812 "/>
1554
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 268.785156 2481.382812 L 292.785156 2481.382812 "/>
1555
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24 2475.382812 L 24 2487.382812 "/>
1556
+ <path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 292.785156 2475.382812 L 292.785156 2487.382812 "/>
1557
+ </g>
1558
+ </svg>