operawatir 0.4.1.pre5-jruby → 0.4.1.pre6-jruby

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. data/AUTHORS +1 -0
  2. data/CHANGES +170 -3
  3. data/README.md +30 -27
  4. data/VERSION +1 -1
  5. data/bin/desktopwatir +19 -16
  6. data/bin/operawatir +4 -4
  7. data/lib/operadriver/client-combined-nodeps.jar +0 -0
  8. data/lib/operadriver/webdriver-opera.jar +0 -0
  9. data/lib/operawatir/browser.rb +1 -2
  10. data/lib/operawatir/collection.rb +1 -1
  11. data/lib/operawatir/compat/collection.rb +13 -0
  12. data/lib/operawatir/compat/element.rb +57 -15
  13. data/lib/operawatir/compat/window.rb +41 -0
  14. data/lib/operawatir/desktop_browser.rb +26 -9
  15. data/lib/operawatir/desktop_container.rb +82 -29
  16. data/lib/operawatir/element.rb +48 -24
  17. data/lib/operawatir/keys.rb +18 -25
  18. data/lib/operawatir/preferences.rb +223 -6
  19. data/lib/operawatir/quickwidgets/quick_button.rb +8 -2
  20. data/lib/operawatir/quickwidgets/quick_checkbox.rb +4 -4
  21. data/lib/operawatir/quickwidgets/quick_editfield.rb +1 -1
  22. data/lib/operawatir/quickwidgets/quick_find.rb +11 -0
  23. data/lib/operawatir/quickwidgets/quick_griditem.rb +11 -0
  24. data/lib/operawatir/quickwidgets/quick_gridlayout.rb +11 -0
  25. data/lib/operawatir/quickwidgets/quick_searchfield.rb +5 -1
  26. data/lib/operawatir/quickwidgets/quick_tab.rb +0 -1
  27. data/lib/operawatir/quickwidgets/quick_treeitem.rb +22 -1
  28. data/lib/operawatir/quickwidgets/quick_widget.rb +61 -22
  29. data/lib/operawatir/quickwidgets/quick_window.rb +26 -0
  30. data/lib/operawatir/quickwidgets.rb +2 -1
  31. data/lib/operawatir/window.rb +36 -25
  32. data/lib/operawatir.rb +1 -1
  33. data/operawatir.gemspec +38 -5
  34. data/spec/operawatir/core/element_spec.rb +5 -0
  35. data/spec/operawatir/core/window_spec.rb +42 -0
  36. data/spec/operawatir/desktop/desktopbrowser_spec.rb +16 -0
  37. data/spec/operawatir/desktop/quickaddressfield_spec.rb +15 -3
  38. data/spec/operawatir/desktop/quickbutton_spec.rb +234 -20
  39. data/spec/operawatir/desktop/quickcheckbox_spec.rb +36 -0
  40. data/spec/operawatir/desktop/quickdialogtab_spec.rb +30 -0
  41. data/spec/operawatir/desktop/quickdropdown_spec.rb +39 -0
  42. data/spec/operawatir/desktop/quickeditfield_spec.rb +51 -0
  43. data/spec/operawatir/desktop/quickfind_spec.rb +30 -0
  44. data/spec/operawatir/desktop/quickgriditem_spec.rb +16 -0
  45. data/spec/operawatir/desktop/quickgridlayout_spec.rb +15 -0
  46. data/spec/operawatir/desktop/quicklabel_spec.rb +28 -0
  47. data/spec/operawatir/desktop/quickradiobutton_spec.rb +24 -0
  48. data/spec/operawatir/desktop/quicksearchfield_spec.rb +26 -0
  49. data/spec/operawatir/desktop/quicktab_spec.rb +86 -0
  50. data/spec/operawatir/desktop/quickthumbnail_spec.rb +37 -0
  51. data/spec/operawatir/desktop/quicktreeitem_spec.rb +135 -0
  52. data/spec/operawatir/desktop/quicktreeview_spec.rb +30 -0
  53. data/spec/operawatir/desktop/quickwidget_spec.rb +52 -11
  54. data/spec/operawatir/desktop/quickwindow_spec.rb +11 -0
  55. data/spec/operawatir/desktop/shared/shared.rb +100 -10
  56. data/spec/operawatir/fixtures/browsers.svg +367 -0
  57. data/spec/operawatir/fixtures/frames.html +13 -0
  58. data/spec/watir2/select_list_spec.rb +84 -71
  59. metadata +37 -4
  60. data/lib/operadriver/selenium-common.jar +0 -0
@@ -0,0 +1,30 @@
1
+ require File.expand_path('../../watirspec_desktophelper', __FILE__)
2
+ require File.expand_path('../shared/shared', __FILE__)
3
+
4
+ describe 'QuickTreeView' do
5
+
6
+ before(:all) do
7
+ browser.open_dialog_with_action("New Preferences Dialog", "Show preferences", 4).should > 0
8
+ end
9
+
10
+ after(:all) do
11
+ browser.close_all_dialogs
12
+ end
13
+
14
+ let(:widget) { browser.quick_treeview(:name, "Advanced_treeview") }
15
+ subject { widget }
16
+
17
+ it_behaves_like 'a widget'
18
+
19
+ its(:type) { should == :treeview }
20
+
21
+
22
+ describe '#num_treeitems' do
23
+ it "returns numbers of treeitems in the treeview" do
24
+ browser.quick_treeview(:name, "Advanced_treeview").num_treeitems.should > 0
25
+ end
26
+
27
+ end
28
+
29
+
30
+ end
@@ -1,30 +1,71 @@
1
1
  require File.expand_path('../../watirspec_desktophelper', __FILE__)
2
2
 
3
3
  describe 'QuickWidget' do
4
+
4
5
  describe '#open_window_with_hover' do
5
6
  it 'opens window on hover' do
6
7
  browser.quick_window(:name, "Browser Window").quick_toolbar(:name, "Pagebar").quick_tab(:pos, 0).open_window_with_hover.should > 0
7
8
  end
8
9
  end
9
10
 
10
- describe '#type' do
11
- end
12
-
13
- describe '#verify_text' do
14
- end
15
-
16
- describe '#verify_includes_text' do
17
- end
18
11
 
19
- describe 'print_row' do
12
+ describe '#exists' do
13
+ context 'when widget exists' do
14
+ it 'returns true' do
15
+ browser.browser.quick_toolbar(:name, "Document Toolbar").quick_addressfield(:name, "tba_address_field").should exist
16
+ end
17
+ end
18
+ context 'when widget doesn\'t exist' do
19
+ it 'returns false' do
20
+ browser.browser.quick_toolbar(:name, "Document Toolbar").quick_addressfield(:name, "tba_address_field2").should_not exist
21
+ end
22
+ end
20
23
  end
21
24
 
22
- describe '#print_widget_info' do
25
+ describe '#verify_text' do
26
+ before(:all) do
27
+ browser.open_dialog_with_action("New Preferences Dialog", "Show preferences", 2).should open_dialog
28
+ browser.quick_treeview(:name, "Web_search_treeview").should be_visible
29
+ @last_row = browser.quick_treeview(:name, "Web_search_treeview").num_treeitems - 1
30
+ browser.quick_treeview(:name, "Web_search_treeview").quick_treeitem(:pos, [@last_row,0]).focus_with_click
31
+ end
32
+
33
+ after(:all) do
34
+ browser.close_dialog("New Preferences Dialog").should close_dialog
35
+ end
36
+
37
+ it 'verifies simple string by string_id' do
38
+ browser.quick_button(:name, "button_OK").verify_text("DI_ID_OK").should be_true
39
+ end
40
+
41
+ it 'verifies strings with string substitution'
42
+
43
+ it 'verifies strings with ampersand' do
44
+ puts "click on item in row #{@last_row}"
45
+ puts browser.string("S_FIND_IN_PAGE")
46
+ puts browser.quick_treeview(:name, "Web_search_treeview").quick_treeitem(:pos, [@last_row,0]).text
47
+ browser.quick_treeview(:name, "Web_search_treeview").quick_treeitem(:pos, [@last_row,0]).verify_text("S_FIND_IN_PAGE").should be_true
48
+ end
23
49
  end
24
50
 
25
- describe '#focus_with_click' do
51
+ #NOTE: This is deprecated
52
+ describe '#verify_includes_text' do
53
+ it 'verifies the include text id' do
54
+ browser.open_dialog_with_action("New Preferences Dialog", "Show preferences").should > 0
55
+ browser.quick_button(:name, "button_OK").verify_includes_text("DI_ID_OK").should be_true
56
+ browser.close_dialog("New Preferences Dialog").should > 0
57
+ end
26
58
  end
27
59
 
60
+ describe '#focus_with_click' do
61
+ #Not really testable until there's a way to check focus
62
+ it 'should focus the addressfield' do
63
+ browser.quick_toolbar(:name, "Document Toolbar").quick_addressfield(:name, "tba_address_field").focus_with_click
64
+ end
65
+ end
66
+
67
+ # Private
68
+ # Also: Test in shared.rb not here
28
69
  #describe '#element' do
29
70
  #end
30
71
 
@@ -7,6 +7,17 @@ describe 'QuickWindow' do
7
7
  let(:nonexisting_window) { browser.quick_window(:name, "Doc Window") }
8
8
 
9
9
  subject { documentwindow }
10
+
11
+ describe '#quick_window' do
12
+ it 'constructs window by id' do
13
+ browser.quick_windows.each do |win|
14
+ browser.quick_window(:id, win.window_id).should exist
15
+ end
16
+ end
17
+ it 'constructs window by name' do
18
+ browser.quick_window(:name, "Browser Window").should exist
19
+ end
20
+ end
10
21
 
11
22
  describe '#exist?' do
12
23
  it 'returns true for existing window' do
@@ -1,5 +1,26 @@
1
1
  require File.expand_path('../../../watirspec_desktophelper', __FILE__)
2
2
 
3
+ shared_examples_for 'a button' do
4
+ describe '#default?' do
5
+ it "returns a boolean" do
6
+ [true, false].should include widget.default?
7
+ end
8
+ end
9
+ describe '#value' do
10
+ it "returns 0 or 1" do
11
+ [0, 1].should include widget.value
12
+ end
13
+ end
14
+ describe '#toggle_with_click' do
15
+ it "returns value" do
16
+ [0, 1].should include widget.toggle_with_click
17
+ end
18
+ after(:each) do
19
+ widget.toggle_with_click unless widget.type == :thumbnail
20
+ end
21
+ end
22
+ end
23
+
3
24
  shared_examples_for 'an editfield' do
4
25
  describe '#focus_with_click' do
5
26
  it 'focuses editfield' do
@@ -7,14 +28,73 @@ shared_examples_for 'an editfield' do
7
28
  end
8
29
  end
9
30
 
10
- #describe '#type_text' do
11
- #end
12
- #describe '#clear' do
13
- #end
14
- #describe '#key_press' do
15
- #end
31
+ describe '#type_text' do
32
+ it "types the given text" do
33
+ widget.type_text "some text"
34
+ widget.focus_with_click # *nix workaround; get rid of addressbar dropdown window
35
+ widget.text.should include "some text"
36
+ end
37
+ end
38
+
39
+ describe '#clear' do
40
+ it "clears the editfield" do
41
+ widget.clear
42
+ widget.send :element, true #urgh
43
+ widget.text.should be_empty
44
+
45
+ end
46
+
47
+ #avoid leaving search dropdown open
48
+ after(:each) do
49
+ widget.focus_with_click
50
+ end
51
+ end
52
+
53
+ =begin
54
+ describe '#key_press' do
55
+ it "presses keys with modifiers" do
56
+ widget.type_text "some other text"
57
+ widget.focus_with_click
58
+ widget.key_press("a", :ctrl)
59
+ widget.key_press("c", :ctrl)
60
+ widget.clear
61
+ widget.key_press("v", :ctrl)
62
+ widget.text.should include "some other text"
63
+ end
64
+ end
65
+ =end
16
66
  end
17
67
 
68
+
69
+ shared_examples_for 'a checkbox' do
70
+ describe '#checked?' do
71
+ it "returns a boolean" do
72
+ [true, false].should include widget.checked?
73
+ end
74
+ end
75
+
76
+ describe '#toggle_with_click' do
77
+ it "returns value" do
78
+ [true, false].should include widget.toggle_with_click
79
+ end
80
+ after(:each) do
81
+ widget.toggle_with_click
82
+ end
83
+ end
84
+ end
85
+ =begin
86
+ shared_examples_for 'a checkbox' do
87
+ describe '#checked?' do
88
+ end
89
+
90
+ describe '#toggle_with_click' do
91
+ end
92
+
93
+ describe '#open_dialog_with_click' do
94
+ end
95
+ end
96
+ =end
97
+
18
98
  shared_examples_for 'a widget' do
19
99
  describe '#exist?' do
20
100
  it 'returns true for existing widget' do
@@ -30,19 +110,29 @@ shared_examples_for 'a widget' do
30
110
  its(:value) { should be_integer }
31
111
  its(:to_s) { should be_kind_of String }
32
112
  its(:driver) { should be_instance_of Java::ComOperaCoreSystems::OperaDesktopDriver }
33
- #its(:type) { should }
113
+ its(:width) { should be > 0 }
114
+ its(:height) { should be > 0 }
115
+ its(:x) { should be > 0 }
116
+ its(:y) { should be > 0 }
34
117
 
35
118
  describe '#enabled?' do
36
- it 'should return boolean' do
119
+ it 'returns a boolean' do
37
120
  [true, false].should include widget.enabled?
38
121
  end
39
122
  end
40
123
 
41
124
  describe '#visible?' do
42
- it 'should return boolean' do
125
+ it 'returns a boolean' do
43
126
  [true, false].should include widget.enabled?
44
127
  end
45
128
  end
46
-
129
+
130
+ #describe 'print_row' do
131
+ #end
132
+
133
+ #describe '#print_widget_info' do
134
+ #end
135
+
136
+
47
137
  end
48
138
 
@@ -0,0 +1,367 @@
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="504pt" height="504pt" viewBox="0 0 504 504" version="1.1">
3
+ <defs>
4
+ <g>
5
+ <symbol overflow="visible" id="glyph0-0">
6
+ <path style="stroke:none;" d=""/>
7
+ </symbol>
8
+ <symbol overflow="visible" id="glyph0-1">
9
+ <path style="stroke:none;" d="M 2.328125 -8.75 L 1.203125 -8.75 L 1.203125 0 L 2.328125 0 L 2.328125 -8.75 Z M 2.328125 -8.75 "/>
10
+ </symbol>
11
+ <symbol overflow="visible" id="glyph0-2">
12
+ <path style="stroke:none;" d="M 0.84375 -6.28125 L 0.84375 0 L 1.84375 0 L 1.84375 -3.46875 C 1.84375 -4.75 2.515625 -5.59375 3.546875 -5.59375 C 4.34375 -5.59375 4.84375 -5.109375 4.84375 -4.359375 L 4.84375 0 L 5.84375 0 L 5.84375 -4.75 C 5.84375 -5.796875 5.0625 -6.46875 3.859375 -6.46875 C 2.921875 -6.46875 2.3125 -6.109375 1.765625 -5.234375 L 1.765625 -6.28125 L 0.84375 -6.28125 Z M 0.84375 -6.28125 "/>
13
+ </symbol>
14
+ <symbol overflow="visible" id="glyph0-3">
15
+ <path style="stroke:none;" d="M 3.046875 -6.28125 L 2.015625 -6.28125 L 2.015625 -8.015625 L 1.015625 -8.015625 L 1.015625 -6.28125 L 0.171875 -6.28125 L 0.171875 -5.46875 L 1.015625 -5.46875 L 1.015625 -0.71875 C 1.015625 -0.078125 1.453125 0.28125 2.234375 0.28125 C 2.46875 0.28125 2.71875 0.25 3.046875 0.1875 L 3.046875 -0.640625 C 2.921875 -0.609375 2.765625 -0.59375 2.5625 -0.59375 C 2.140625 -0.59375 2.015625 -0.71875 2.015625 -1.15625 L 2.015625 -5.46875 L 3.046875 -5.46875 L 3.046875 -6.28125 Z M 3.046875 -6.28125 "/>
16
+ </symbol>
17
+ <symbol overflow="visible" id="glyph0-4">
18
+ <path style="stroke:none;" d="M 6.15625 -2.8125 C 6.15625 -3.765625 6.078125 -4.34375 5.90625 -4.8125 C 5.5 -5.84375 4.53125 -6.46875 3.359375 -6.46875 C 1.609375 -6.46875 0.484375 -5.125 0.484375 -3.0625 C 0.484375 -1 1.578125 0.28125 3.34375 0.28125 C 4.78125 0.28125 5.765625 -0.546875 6.03125 -1.90625 L 5.015625 -1.90625 C 4.734375 -1.078125 4.171875 -0.640625 3.375 -0.640625 C 2.734375 -0.640625 2.203125 -0.9375 1.859375 -1.46875 C 1.625 -1.828125 1.53125 -2.1875 1.53125 -2.8125 L 6.15625 -2.8125 Z M 1.546875 -3.625 C 1.625 -4.78125 2.34375 -5.546875 3.34375 -5.546875 C 4.328125 -5.546875 5.09375 -4.734375 5.09375 -3.703125 C 5.09375 -3.671875 5.09375 -3.640625 5.078125 -3.625 L 1.546875 -3.625 Z M 1.546875 -3.625 "/>
19
+ </symbol>
20
+ <symbol overflow="visible" id="glyph0-5">
21
+ <path style="stroke:none;" d="M 0.828125 -6.28125 L 0.828125 0 L 1.84375 0 L 1.84375 -3.265625 C 1.84375 -4.15625 2.0625 -4.75 2.546875 -5.09375 C 2.859375 -5.328125 3.15625 -5.40625 3.859375 -5.40625 L 3.859375 -6.4375 C 3.6875 -6.453125 3.59375 -6.46875 3.46875 -6.46875 C 2.8125 -6.46875 2.328125 -6.078125 1.75 -5.140625 L 1.75 -6.28125 L 0.828125 -6.28125 Z M 0.828125 -6.28125 "/>
22
+ </symbol>
23
+ <symbol overflow="visible" id="glyph0-6">
24
+ <path style="stroke:none;" d="M 2.203125 -3.984375 L 6.953125 -3.984375 L 6.953125 -4.96875 L 2.203125 -4.96875 L 2.203125 -7.765625 L 7.140625 -7.765625 L 7.140625 -8.75 L 1.078125 -8.75 L 1.078125 0 L 7.359375 0 L 7.359375 -0.984375 L 2.203125 -0.984375 L 2.203125 -3.984375 Z M 2.203125 -3.984375 "/>
25
+ </symbol>
26
+ <symbol overflow="visible" id="glyph0-7">
27
+ <path style="stroke:none;" d="M 3.5 -3.25 L 5.609375 -6.28125 L 4.484375 -6.28125 L 2.96875 -4.015625 L 1.46875 -6.28125 L 0.328125 -6.28125 L 2.421875 -3.203125 L 0.203125 0 L 1.34375 0 L 2.9375 -2.40625 L 4.515625 0 L 5.671875 0 L 3.5 -3.25 Z M 3.5 -3.25 "/>
28
+ </symbol>
29
+ <symbol overflow="visible" id="glyph0-8">
30
+ <path style="stroke:none;" d="M 0.640625 2.609375 L 1.65625 2.609375 L 1.65625 -0.65625 C 2.1875 -0.015625 2.765625 0.28125 3.59375 0.28125 C 5.203125 0.28125 6.28125 -1.03125 6.28125 -3.03125 C 6.28125 -5.140625 5.25 -6.46875 3.578125 -6.46875 C 2.71875 -6.46875 2.046875 -6.078125 1.578125 -5.34375 L 1.578125 -6.28125 L 0.640625 -6.28125 L 0.640625 2.609375 Z M 3.40625 -5.53125 C 4.515625 -5.53125 5.234375 -4.5625 5.234375 -3.0625 C 5.234375 -1.625 4.5 -0.65625 3.40625 -0.65625 C 2.359375 -0.65625 1.65625 -1.625 1.65625 -3.09375 C 1.65625 -4.578125 2.359375 -5.53125 3.40625 -5.53125 Z M 3.40625 -5.53125 "/>
31
+ </symbol>
32
+ <symbol overflow="visible" id="glyph0-9">
33
+ <path style="stroke:none;" d="M 1.828125 -8.75 L 0.8125 -8.75 L 0.8125 0 L 1.828125 0 L 1.828125 -8.75 Z M 1.828125 -8.75 "/>
34
+ </symbol>
35
+ <symbol overflow="visible" id="glyph0-10">
36
+ <path style="stroke:none;" d="M 3.265625 -6.46875 C 1.5 -6.46875 0.4375 -5.203125 0.4375 -3.09375 C 0.4375 -0.984375 1.484375 0.28125 3.28125 0.28125 C 5.046875 0.28125 6.125 -0.984375 6.125 -3.046875 C 6.125 -5.21875 5.078125 -6.46875 3.265625 -6.46875 Z M 3.28125 -5.546875 C 4.40625 -5.546875 5.078125 -4.625 5.078125 -3.0625 C 5.078125 -1.578125 4.375 -0.640625 3.28125 -0.640625 C 2.15625 -0.640625 1.46875 -1.578125 1.46875 -3.09375 C 1.46875 -4.609375 2.15625 -5.546875 3.28125 -5.546875 Z M 3.28125 -5.546875 "/>
37
+ </symbol>
38
+ <symbol overflow="visible" id="glyph0-11">
39
+ <path style="stroke:none;" d="M 2.203125 -3.984375 L 6.375 -3.984375 L 6.375 -4.96875 L 2.203125 -4.96875 L 2.203125 -7.765625 L 6.953125 -7.765625 L 6.953125 -8.75 L 1.078125 -8.75 L 1.078125 0 L 2.203125 0 L 2.203125 -3.984375 Z M 2.203125 -3.984375 "/>
40
+ </symbol>
41
+ <symbol overflow="visible" id="glyph0-12">
42
+ <path style="stroke:none;" d="M 1.796875 -6.28125 L 0.796875 -6.28125 L 0.796875 0 L 1.796875 0 L 1.796875 -6.28125 Z M 1.796875 -8.75 L 0.796875 -8.75 L 0.796875 -7.484375 L 1.796875 -7.484375 L 1.796875 -8.75 Z M 1.796875 -8.75 "/>
43
+ </symbol>
44
+ <symbol overflow="visible" id="glyph0-13">
45
+ <path style="stroke:none;" d="M 3.09375 -6.28125 L 2.046875 -6.28125 L 2.046875 -7.265625 C 2.046875 -7.6875 2.296875 -7.90625 2.75 -7.90625 C 2.828125 -7.90625 2.875 -7.90625 3.09375 -7.890625 L 3.09375 -8.71875 C 2.875 -8.765625 2.734375 -8.78125 2.53125 -8.78125 C 1.609375 -8.78125 1.0625 -8.25 1.0625 -7.359375 L 1.0625 -6.28125 L 0.21875 -6.28125 L 0.21875 -5.46875 L 1.0625 -5.46875 L 1.0625 0 L 2.046875 0 L 2.046875 -5.46875 L 3.09375 -5.46875 L 3.09375 -6.28125 Z M 3.09375 -6.28125 "/>
46
+ </symbol>
47
+ <symbol overflow="visible" id="glyph0-14">
48
+ <path style="stroke:none;" d="M 7.9375 -6.03125 C 7.59375 -7.953125 6.484375 -8.890625 4.578125 -8.890625 C 3.390625 -8.890625 2.453125 -8.515625 1.796875 -7.796875 C 1.015625 -6.9375 0.578125 -5.6875 0.578125 -4.265625 C 0.578125 -2.828125 1.015625 -1.59375 1.84375 -0.75 C 2.515625 -0.046875 3.390625 0.28125 4.53125 0.28125 C 6.65625 0.28125 7.859375 -0.875 8.125 -3.1875 L 6.96875 -3.1875 C 6.875 -2.59375 6.75 -2.1875 6.578125 -1.84375 C 6.21875 -1.109375 5.46875 -0.703125 4.53125 -0.703125 C 2.796875 -0.703125 1.6875 -2.09375 1.6875 -4.28125 C 1.6875 -6.53125 2.75 -7.90625 4.4375 -7.90625 C 5.140625 -7.90625 5.8125 -7.6875 6.171875 -7.359375 C 6.484375 -7.0625 6.671875 -6.6875 6.796875 -6.03125 L 7.9375 -6.03125 Z M 7.9375 -6.03125 "/>
49
+ </symbol>
50
+ <symbol overflow="visible" id="glyph0-15">
51
+ <path style="stroke:none;" d="M 0.84375 -8.75 L 0.84375 0 L 1.84375 0 L 1.84375 -3.46875 C 1.84375 -4.75 2.515625 -5.59375 3.546875 -5.59375 C 3.859375 -5.59375 4.1875 -5.484375 4.421875 -5.296875 C 4.71875 -5.09375 4.84375 -4.796875 4.84375 -4.359375 L 4.84375 0 L 5.828125 0 L 5.828125 -4.75 C 5.828125 -5.8125 5.078125 -6.46875 3.859375 -6.46875 C 2.96875 -6.46875 2.421875 -6.1875 1.84375 -5.421875 L 1.84375 -8.75 L 0.84375 -8.75 Z M 0.84375 -8.75 "/>
52
+ </symbol>
53
+ <symbol overflow="visible" id="glyph0-16">
54
+ <path style="stroke:none;" d="M 0.84375 -6.28125 L 0.84375 0 L 1.84375 0 L 1.84375 -3.953125 C 1.84375 -4.859375 2.515625 -5.59375 3.328125 -5.59375 C 4.0625 -5.59375 4.484375 -5.140625 4.484375 -4.328125 L 4.484375 0 L 5.5 0 L 5.5 -3.953125 C 5.5 -4.859375 6.15625 -5.59375 6.96875 -5.59375 C 7.703125 -5.59375 8.140625 -5.125 8.140625 -4.328125 L 8.140625 0 L 9.140625 0 L 9.140625 -4.71875 C 9.140625 -5.84375 8.5 -6.46875 7.3125 -6.46875 C 6.484375 -6.46875 5.96875 -6.21875 5.390625 -5.515625 C 5.015625 -6.1875 4.515625 -6.46875 3.703125 -6.46875 C 2.859375 -6.46875 2.296875 -6.15625 1.765625 -5.40625 L 1.765625 -6.28125 L 0.84375 -6.28125 Z M 0.84375 -6.28125 "/>
55
+ </symbol>
56
+ <symbol overflow="visible" id="glyph0-17">
57
+ <path style="stroke:none;" d="M 7.15625 -6.1875 C 7.140625 -7.890625 5.96875 -8.890625 3.953125 -8.890625 C 2.03125 -8.890625 0.84375 -7.90625 0.84375 -6.328125 C 0.84375 -5.25 1.40625 -4.578125 2.5625 -4.28125 L 4.734375 -3.703125 C 5.828125 -3.421875 6.34375 -2.96875 6.34375 -2.296875 C 6.34375 -1.828125 6.078125 -1.34375 5.71875 -1.078125 C 5.359375 -0.84375 4.8125 -0.703125 4.109375 -0.703125 C 3.15625 -0.703125 2.515625 -0.9375 2.09375 -1.4375 C 1.765625 -1.828125 1.625 -2.25 1.625 -2.78125 L 0.578125 -2.78125 C 0.59375 -1.984375 0.75 -1.453125 1.09375 -0.96875 C 1.6875 -0.15625 2.703125 0.28125 4.03125 0.28125 C 5.078125 0.28125 5.921875 0.03125 6.484375 -0.390625 C 7.078125 -0.859375 7.453125 -1.640625 7.453125 -2.40625 C 7.453125 -3.484375 6.78125 -4.265625 5.59375 -4.59375 L 3.390625 -5.1875 C 2.34375 -5.46875 1.953125 -5.8125 1.953125 -6.484375 C 1.953125 -7.375 2.734375 -7.953125 3.90625 -7.953125 C 5.296875 -7.953125 6.078125 -7.3125 6.09375 -6.1875 L 7.15625 -6.1875 Z M 7.15625 -6.1875 "/>
58
+ </symbol>
59
+ <symbol overflow="visible" id="glyph0-18">
60
+ <path style="stroke:none;" d="M 6.421875 -0.59375 C 6.3125 -0.5625 6.265625 -0.5625 6.203125 -0.5625 C 5.859375 -0.5625 5.65625 -0.75 5.65625 -1.0625 L 5.65625 -4.75 C 5.65625 -5.875 4.84375 -6.46875 3.296875 -6.46875 C 2.390625 -6.46875 1.625 -6.203125 1.21875 -5.734375 C 0.921875 -5.40625 0.796875 -5.046875 0.78125 -4.421875 L 1.78125 -4.421875 C 1.875 -5.203125 2.328125 -5.546875 3.265625 -5.546875 C 4.15625 -5.546875 4.671875 -5.203125 4.671875 -4.609375 L 4.671875 -4.34375 C 4.671875 -3.921875 4.421875 -3.75 3.625 -3.640625 C 2.203125 -3.46875 1.984375 -3.421875 1.609375 -3.265625 C 0.875 -2.96875 0.5 -2.40625 0.5 -1.578125 C 0.5 -0.4375 1.296875 0.28125 2.5625 0.28125 C 3.359375 0.28125 4 0 4.703125 -0.640625 C 4.78125 -0.015625 5.09375 0.28125 5.734375 0.28125 C 5.9375 0.28125 6.09375 0.25 6.421875 0.171875 L 6.421875 -0.59375 Z M 4.671875 -1.984375 C 4.671875 -1.640625 4.578125 -1.4375 4.265625 -1.15625 C 3.859375 -0.796875 3.375 -0.59375 2.78125 -0.59375 C 2 -0.59375 1.546875 -0.96875 1.546875 -1.609375 C 1.546875 -2.265625 1.984375 -2.609375 3.0625 -2.765625 C 4.109375 -2.90625 4.328125 -2.953125 4.671875 -3.109375 L 4.671875 -1.984375 Z M 4.671875 -1.984375 "/>
61
+ </symbol>
62
+ <symbol overflow="visible" id="glyph0-19">
63
+ <path style="stroke:none;" d="M 4.671875 -8.890625 C 2.15625 -8.890625 0.453125 -7.046875 0.453125 -4.3125 C 0.453125 -1.578125 2.15625 0.28125 4.6875 0.28125 C 5.734375 0.28125 6.6875 -0.046875 7.390625 -0.640625 C 8.34375 -1.453125 8.90625 -2.8125 8.90625 -4.234375 C 8.90625 -7.0625 7.234375 -8.890625 4.671875 -8.890625 Z M 4.671875 -7.90625 C 6.5625 -7.90625 7.78125 -6.46875 7.78125 -4.265625 C 7.78125 -2.140625 6.53125 -0.703125 4.6875 -0.703125 C 2.8125 -0.703125 1.578125 -2.140625 1.578125 -4.3125 C 1.578125 -6.46875 2.8125 -7.90625 4.671875 -7.90625 Z M 4.671875 -7.90625 "/>
64
+ </symbol>
65
+ <symbol overflow="visible" id="glyph0-20">
66
+ <path style="stroke:none;" d="M 5.609375 0 L 8.078125 -7.328125 L 8.078125 0 L 9.125 0 L 9.125 -8.75 L 7.578125 -8.75 L 5.046875 -1.125 L 2.453125 -8.75 L 0.90625 -8.75 L 0.90625 0 L 1.953125 0 L 1.953125 -7.328125 L 4.4375 0 L 5.609375 0 Z M 5.609375 0 "/>
67
+ </symbol>
68
+ <symbol overflow="visible" id="glyph0-21">
69
+ <path style="stroke:none;" d="M 0.640625 -8.75 L 0.640625 0 L 1.546875 0 L 1.546875 -0.796875 C 2.03125 -0.078125 2.65625 0.28125 3.546875 0.28125 C 5.203125 0.28125 6.28125 -1.078125 6.28125 -3.171875 C 6.28125 -5.203125 5.25 -6.46875 3.59375 -6.46875 C 2.71875 -6.46875 2.109375 -6.140625 1.640625 -5.4375 L 1.640625 -8.75 L 0.640625 -8.75 Z M 3.390625 -5.53125 C 4.515625 -5.53125 5.234375 -4.5625 5.234375 -3.0625 C 5.234375 -1.625 4.484375 -0.65625 3.390625 -0.65625 C 2.34375 -0.65625 1.640625 -1.625 1.640625 -3.09375 C 1.640625 -4.578125 2.34375 -5.53125 3.390625 -5.53125 Z M 3.390625 -5.53125 "/>
70
+ </symbol>
71
+ <symbol overflow="visible" id="glyph0-22">
72
+ <path style="stroke:none;" d="M 6.640625 0 L 8.5 -6.28125 L 7.375 -6.28125 L 6.125 -1.390625 L 4.890625 -6.28125 L 3.65625 -6.28125 L 2.453125 -1.390625 L 1.171875 -6.28125 L 0.078125 -6.28125 L 1.890625 0 L 3.03125 0 L 4.234375 -4.9375 L 5.515625 0 L 6.640625 0 Z M 6.640625 0 "/>
73
+ </symbol>
74
+ <symbol overflow="visible" id="glyph0-23">
75
+ <path style="stroke:none;" d="M 5.25 -4.53125 C 5.25 -5.765625 4.421875 -6.46875 2.96875 -6.46875 C 1.515625 -6.46875 0.5625 -5.71875 0.5625 -4.546875 C 0.5625 -3.5625 1.0625 -3.09375 2.5625 -2.734375 L 3.484375 -2.515625 C 4.1875 -2.34375 4.46875 -2.09375 4.46875 -1.625 C 4.46875 -1.046875 3.875 -0.640625 3 -0.640625 C 2.453125 -0.640625 2 -0.796875 1.75 -1.0625 C 1.59375 -1.25 1.53125 -1.421875 1.46875 -1.875 L 0.40625 -1.875 C 0.453125 -0.421875 1.265625 0.28125 2.921875 0.28125 C 4.5 0.28125 5.515625 -0.5 5.515625 -1.71875 C 5.515625 -2.65625 4.984375 -3.171875 3.734375 -3.46875 L 2.765625 -3.703125 C 1.953125 -3.890625 1.609375 -4.15625 1.609375 -4.59375 C 1.609375 -5.171875 2.125 -5.546875 2.9375 -5.546875 C 3.75 -5.546875 4.171875 -5.203125 4.203125 -4.53125 L 5.25 -4.53125 Z M 5.25 -4.53125 "/>
76
+ </symbol>
77
+ <symbol overflow="visible" id="glyph1-0">
78
+ <path style="stroke:none;" d=""/>
79
+ </symbol>
80
+ <symbol overflow="visible" id="glyph1-1">
81
+ <path style="stroke:none;" d="M 7.265625 -10.5 L 7.265625 -3.390625 C 7.265625 -2.125 6.609375 -1.515625 5.265625 -1.515625 C 3.90625 -1.515625 3.25 -2.125 3.25 -3.390625 L 3.25 -10.5 L 1.09375 -10.5 L 1.09375 -3.390625 C 1.09375 -2.203125 1.40625 -1.375 2.125 -0.734375 C 2.875 -0.046875 3.984375 0.328125 5.265625 0.328125 C 6.53125 0.328125 7.640625 -0.046875 8.40625 -0.734375 C 9.109375 -1.375 9.421875 -2.203125 9.421875 -3.390625 L 9.421875 -10.5 L 7.265625 -10.5 Z M 7.265625 -10.5 "/>
82
+ </symbol>
83
+ <symbol overflow="visible" id="glyph1-2">
84
+ <path style="stroke:none;" d="M 7.28125 -5.265625 C 7.25 -6.921875 5.984375 -7.90625 3.890625 -7.90625 C 1.921875 -7.90625 0.6875 -6.921875 0.6875 -5.3125 C 0.6875 -4.796875 0.84375 -4.34375 1.125 -4.046875 C 1.390625 -3.78125 1.640625 -3.640625 2.390625 -3.40625 L 4.796875 -2.65625 C 5.296875 -2.5 5.46875 -2.328125 5.46875 -2.015625 C 5.46875 -1.546875 4.90625 -1.25 3.96875 -1.25 C 3.453125 -1.25 3.046875 -1.359375 2.78125 -1.53125 C 2.5625 -1.6875 2.484375 -1.84375 2.390625 -2.265625 L 0.421875 -2.265625 C 0.46875 -0.5625 1.734375 0.328125 4.09375 0.328125 C 5.171875 0.328125 6 0.09375 6.5625 -0.359375 C 7.140625 -0.828125 7.484375 -1.546875 7.484375 -2.3125 C 7.484375 -3.3125 6.984375 -3.96875 5.96875 -4.265625 L 3.421875 -5 C 2.859375 -5.171875 2.703125 -5.28125 2.703125 -5.609375 C 2.703125 -6.03125 3.171875 -6.328125 3.875 -6.328125 C 4.84375 -6.328125 5.3125 -5.984375 5.328125 -5.265625 L 7.28125 -5.265625 Z M 7.28125 -5.265625 "/>
85
+ </symbol>
86
+ <symbol overflow="visible" id="glyph1-3">
87
+ <path style="stroke:none;" d="M 7.546875 -0.25 C 7.1875 -0.578125 7.09375 -0.796875 7.09375 -1.203125 L 7.09375 -5.515625 C 7.09375 -7.109375 6 -7.90625 3.90625 -7.90625 C 1.796875 -7.90625 0.703125 -7.015625 0.578125 -5.21875 L 2.515625 -5.21875 C 2.625 -6.015625 2.953125 -6.28125 3.953125 -6.28125 C 4.71875 -6.28125 5.109375 -6.015625 5.109375 -5.5 C 5.109375 -5.25 4.984375 -5.015625 4.765625 -4.890625 C 4.5 -4.75 4.5 -4.75 3.5 -4.59375 L 2.6875 -4.453125 C 1.15625 -4.1875 0.40625 -3.40625 0.40625 -2 C 0.40625 -1.34375 0.59375 -0.796875 0.953125 -0.40625 C 1.390625 0.0625 2.078125 0.328125 2.765625 0.328125 C 3.625 0.328125 4.421875 -0.046875 5.125 -0.78125 C 5.125 -0.375 5.171875 -0.234375 5.359375 0 L 7.546875 0 L 7.546875 -0.25 Z M 5.109375 -3.125 C 5.109375 -1.953125 4.53125 -1.296875 3.515625 -1.296875 C 2.84375 -1.296875 2.421875 -1.65625 2.421875 -2.234375 C 2.421875 -2.84375 2.734375 -3.125 3.578125 -3.296875 L 4.265625 -3.421875 C 4.796875 -3.53125 4.890625 -3.5625 5.109375 -3.671875 L 5.109375 -3.125 Z M 5.109375 -3.125 "/>
88
+ </symbol>
89
+ <symbol overflow="visible" id="glyph1-4">
90
+ <path style="stroke:none;" d="M 5.875 -7.78125 L 5.875 -6.578125 C 5.265625 -7.5 4.609375 -7.90625 3.71875 -7.90625 C 1.875 -7.90625 0.484375 -6.109375 0.484375 -3.703125 C 0.484375 -1.28125 1.75 0.328125 3.671875 0.328125 C 4.578125 0.328125 5.125 0.0625 5.875 -0.796875 L 5.875 0.265625 C 5.875 1.203125 5.171875 1.84375 4.15625 1.84375 C 3.40625 1.84375 2.890625 1.53125 2.734375 0.9375 L 0.640625 0.9375 C 0.65625 1.546875 0.890625 1.953125 1.40625 2.390625 C 2.03125 2.890625 2.890625 3.140625 4.09375 3.140625 C 6.4375 3.140625 7.796875 2.09375 7.796875 0.265625 L 7.796875 -7.78125 L 5.875 -7.78125 Z M 4.15625 -6.21875 C 5.15625 -6.21875 5.90625 -5.171875 5.90625 -3.734375 C 5.90625 -2.3125 5.171875 -1.359375 4.125 -1.359375 C 3.171875 -1.359375 2.5 -2.3125 2.5 -3.734375 C 2.5 -5.203125 3.171875 -6.21875 4.15625 -6.21875 Z M 4.15625 -6.21875 "/>
91
+ </symbol>
92
+ <symbol overflow="visible" id="glyph1-5">
93
+ <path style="stroke:none;" d="M 7.546875 -3.25 C 7.5625 -3.421875 7.5625 -3.5 7.5625 -3.59375 C 7.5625 -4.375 7.453125 -5.09375 7.265625 -5.640625 C 6.734375 -7.0625 5.484375 -7.90625 3.921875 -7.90625 C 1.6875 -7.90625 0.3125 -6.296875 0.3125 -3.6875 C 0.3125 -1.203125 1.671875 0.328125 3.875 0.328125 C 5.625 0.328125 7.03125 -0.65625 7.484375 -2.1875 L 5.484375 -2.1875 C 5.25 -1.5625 4.6875 -1.203125 3.953125 -1.203125 C 3.375 -1.203125 2.90625 -1.453125 2.625 -1.890625 C 2.4375 -2.171875 2.359375 -2.515625 2.328125 -3.25 L 7.546875 -3.25 Z M 2.359375 -4.59375 C 2.5 -5.78125 3 -6.375 3.890625 -6.375 C 4.390625 -6.375 4.859375 -6.125 5.140625 -5.71875 C 5.328125 -5.4375 5.421875 -5.125 5.453125 -4.59375 L 2.359375 -4.59375 Z M 2.359375 -4.59375 "/>
94
+ </symbol>
95
+ <symbol overflow="visible" id="glyph1-6">
96
+ <path style="stroke:none;" d=""/>
97
+ </symbol>
98
+ <symbol overflow="visible" id="glyph1-7">
99
+ <path style="stroke:none;" d="M 0.96875 -10.5 L 0.96875 0 L 2.984375 0 L 2.984375 -4.671875 C 2.984375 -5.5625 3.625 -6.1875 4.53125 -6.1875 C 4.96875 -6.1875 5.3125 -6.03125 5.546875 -5.71875 C 5.71875 -5.453125 5.78125 -5.265625 5.78125 -4.75 L 5.78125 0 L 7.796875 0 L 7.796875 -5.21875 C 7.796875 -6.1875 7.53125 -6.875 7 -7.3125 C 6.5625 -7.6875 5.90625 -7.90625 5.265625 -7.90625 C 4.265625 -7.90625 3.546875 -7.5 2.984375 -6.65625 L 2.984375 -10.5 L 0.96875 -10.5 Z M 0.96875 -10.5 "/>
100
+ </symbol>
101
+ <symbol overflow="visible" id="glyph1-8">
102
+ <path style="stroke:none;" d="M 0.90625 -7.78125 L 0.90625 0 L 2.921875 0 L 2.921875 -4.140625 C 2.921875 -5.3125 3.515625 -5.90625 4.703125 -5.90625 C 4.90625 -5.90625 5.0625 -5.890625 5.328125 -5.84375 L 5.328125 -7.890625 C 5.21875 -7.90625 5.140625 -7.90625 5.078125 -7.90625 C 4.15625 -7.90625 3.359375 -7.296875 2.921875 -6.25 L 2.921875 -7.78125 L 0.90625 -7.78125 Z M 0.90625 -7.78125 "/>
103
+ </symbol>
104
+ <symbol overflow="visible" id="glyph1-9">
105
+ <path style="stroke:none;" d="M 4.34375 -7.90625 C 1.953125 -7.90625 0.5 -6.34375 0.5 -3.78125 C 0.5 -1.21875 1.953125 0.328125 4.34375 0.328125 C 6.71875 0.328125 8.203125 -1.234375 8.203125 -3.734375 C 8.203125 -6.375 6.765625 -7.90625 4.34375 -7.90625 Z M 4.34375 -6.28125 C 5.453125 -6.28125 6.1875 -5.28125 6.1875 -3.765625 C 6.1875 -2.3125 5.4375 -1.296875 4.34375 -1.296875 C 3.25 -1.296875 2.515625 -2.3125 2.515625 -3.78125 C 2.515625 -5.265625 3.25 -6.28125 4.34375 -6.28125 Z M 4.34375 -6.28125 "/>
106
+ </symbol>
107
+ <symbol overflow="visible" id="glyph1-10">
108
+ <path style="stroke:none;" d="M 4.515625 -7.625 L 3.3125 -7.625 L 3.3125 -8.390625 C 3.3125 -8.78125 3.484375 -8.984375 3.859375 -8.984375 C 4.03125 -8.984375 4.265625 -8.96875 4.4375 -8.953125 L 4.4375 -10.453125 C 4.0625 -10.484375 3.5625 -10.5 3.28125 -10.5 C 1.9375 -10.5 1.296875 -9.875 1.296875 -8.5625 L 1.296875 -7.625 L 0.203125 -7.625 L 0.203125 -6.28125 L 1.296875 -6.28125 L 1.296875 0 L 3.3125 0 L 3.3125 -6.28125 L 4.515625 -6.28125 L 4.515625 -7.625 Z M 4.515625 -7.625 "/>
109
+ </symbol>
110
+ <symbol overflow="visible" id="glyph1-11">
111
+ <path style="stroke:none;" d="M 8.828125 0 L 11.03125 -7.78125 L 8.953125 -7.78125 L 7.765625 -2.328125 L 6.59375 -7.78125 L 4.578125 -7.78125 L 3.40625 -2.328125 L 2.15625 -7.78125 L 0.078125 -7.78125 L 2.265625 0 L 4.34375 0 L 5.578125 -5.484375 L 6.734375 0 L 8.828125 0 Z M 8.828125 0 "/>
112
+ </symbol>
113
+ <symbol overflow="visible" id="glyph1-12">
114
+ <path style="stroke:none;" d="M 0.84375 -10.5 L 0.84375 0 L 2.859375 0 L 2.859375 -0.796875 C 3.359375 -0.03125 4.03125 0.328125 5.015625 0.328125 C 6.875 0.328125 8.28125 -1.4375 8.28125 -3.78125 C 8.28125 -4.84375 7.96875 -5.90625 7.453125 -6.65625 C 6.921875 -7.421875 5.96875 -7.90625 5.015625 -7.90625 C 4.046875 -7.90625 3.359375 -7.546875 2.859375 -6.765625 L 2.859375 -10.5 L 0.84375 -10.5 Z M 4.5625 -6.21875 C 5.5625 -6.21875 6.265625 -5.21875 6.265625 -3.78125 C 6.265625 -2.359375 5.5625 -1.359375 4.5625 -1.359375 C 3.546875 -1.359375 2.859375 -2.328125 2.859375 -3.8125 C 2.859375 -5.234375 3.5625 -6.21875 4.5625 -6.21875 Z M 4.5625 -6.21875 "/>
115
+ </symbol>
116
+ <symbol overflow="visible" id="glyph1-13">
117
+ <path style="stroke:none;" d="M 3.78125 -2.109375 L 1.625 -2.109375 L 1.625 0 L 3.78125 0 L 3.78125 -2.109375 Z M 3.78125 -7.484375 L 1.625 -7.484375 L 1.625 -5.390625 L 3.78125 -5.390625 L 3.78125 -7.484375 Z M 3.78125 -7.484375 "/>
118
+ </symbol>
119
+ <symbol overflow="visible" id="glyph1-14">
120
+ <path style="stroke:none;" d="M 3.109375 -8.1875 L 5 0 L 7.15625 0 L 9.015625 -8.1875 L 9.015625 0 L 11.171875 0 L 11.171875 -10.5 L 7.921875 -10.5 L 6.078125 -2.140625 L 4.171875 -10.5 L 0.953125 -10.5 L 0.953125 0 L 3.109375 0 L 3.109375 -8.1875 Z M 3.109375 -8.1875 "/>
121
+ </symbol>
122
+ <symbol overflow="visible" id="glyph1-15">
123
+ <path style="stroke:none;" d="M 7.515625 -4.875 C 7.375 -6.765625 6.109375 -7.90625 4.15625 -7.90625 C 1.84375 -7.90625 0.484375 -6.375 0.484375 -3.734375 C 0.484375 -1.171875 1.828125 0.328125 4.140625 0.328125 C 6.015625 0.328125 7.328125 -0.828125 7.515625 -2.6875 L 5.59375 -2.6875 C 5.328125 -1.6875 4.921875 -1.296875 4.15625 -1.296875 C 3.125 -1.296875 2.5 -2.21875 2.5 -3.734375 C 2.5 -4.46875 2.65625 -5.15625 2.890625 -5.625 C 3.125 -6.046875 3.578125 -6.28125 4.15625 -6.28125 C 4.96875 -6.28125 5.359375 -5.890625 5.59375 -4.875 L 7.515625 -4.875 Z M 7.515625 -4.875 "/>
124
+ </symbol>
125
+ <symbol overflow="visible" id="glyph1-16">
126
+ <path style="stroke:none;" d="M 7.375 -1.796875 L 3.046875 -1.796875 C 3.3125 -2.34375 3.625 -2.640625 5.125 -3.734375 C 6.90625 -5.03125 7.421875 -5.8125 7.421875 -7.1875 C 7.421875 -9.15625 6.0625 -10.4375 3.921875 -10.4375 C 1.796875 -10.4375 0.5625 -9.171875 0.5625 -7.015625 C 0.5625 -6.921875 0.5625 -6.8125 0.578125 -6.65625 L 2.5 -6.65625 L 2.5 -6.984375 C 2.5 -8.125 3.046875 -8.78125 3.96875 -8.78125 C 4.859375 -8.78125 5.40625 -8.171875 5.40625 -7.140625 C 5.40625 -6.015625 5.046875 -5.578125 2.796875 -3.96875 C 1.0625 -2.796875 0.53125 -1.890625 0.4375 0 L 7.375 0 L 7.375 -1.796875 Z M 7.375 -1.796875 "/>
127
+ </symbol>
128
+ <symbol overflow="visible" id="glyph1-17">
129
+ <path style="stroke:none;" d="M 3.9375 -10.4375 C 2.84375 -10.4375 1.90625 -9.96875 1.28125 -9.125 C 0.6875 -8.328125 0.421875 -7.015625 0.421875 -5.046875 C 0.421875 -3.234375 0.65625 -1.953125 1.140625 -1.1875 C 1.75 -0.21875 2.734375 0.328125 3.9375 0.328125 C 5.046875 0.328125 5.953125 -0.109375 6.578125 -0.984375 C 7.15625 -1.75 7.453125 -3.078125 7.453125 -4.984375 C 7.453125 -6.859375 7.21875 -8.125 6.734375 -8.921875 C 6.125 -9.890625 5.125 -10.4375 3.9375 -10.4375 Z M 3.9375 -8.796875 C 4.453125 -8.796875 4.875 -8.515625 5.109375 -7.984375 C 5.3125 -7.546875 5.4375 -6.421875 5.4375 -5.03125 C 5.4375 -3.890625 5.3125 -2.734375 5.171875 -2.328125 C 4.9375 -1.734375 4.515625 -1.390625 3.9375 -1.390625 C 3.40625 -1.390625 3 -1.671875 2.75 -2.1875 C 2.546875 -2.625 2.4375 -3.703125 2.4375 -5.0625 C 2.4375 -6.25 2.546875 -7.421875 2.6875 -7.84375 C 2.921875 -8.453125 3.359375 -8.796875 3.9375 -8.796875 Z M 3.9375 -8.796875 "/>
130
+ </symbol>
131
+ <symbol overflow="visible" id="glyph1-18">
132
+ <path style="stroke:none;" d="M 3.421875 -7.046875 L 3.421875 0 L 5.453125 0 L 5.453125 -10.21875 L 4.109375 -10.21875 C 3.78125 -9 2.734375 -8.390625 0.984375 -8.390625 L 0.984375 -7.046875 L 3.421875 -7.046875 Z M 3.421875 -7.046875 "/>
133
+ </symbol>
134
+ <symbol overflow="visible" id="glyph2-0">
135
+ <path style="stroke:none;" d=""/>
136
+ </symbol>
137
+ <symbol overflow="visible" id="glyph2-1">
138
+ <path style="stroke:none;" d="M -3.703125 -2.203125 L -3.703125 -4.953125 C -3.703125 -5.640625 -3.90625 -6.1875 -4.328125 -6.640625 C -4.8125 -7.171875 -5.375 -7.40625 -6.1875 -7.40625 C -7.828125 -7.40625 -8.75 -6.4375 -8.75 -4.703125 L -8.75 -1.09375 L 0 -1.09375 L 0 -2.203125 L -3.703125 -2.203125 Z M -4.6875 -2.203125 L -7.765625 -2.203125 L -7.765625 -4.53125 C -7.765625 -5.609375 -7.1875 -6.234375 -6.234375 -6.234375 C -5.265625 -6.234375 -4.6875 -5.609375 -4.6875 -4.53125 L -4.6875 -2.203125 Z M -4.6875 -2.203125 "/>
139
+ </symbol>
140
+ <symbol overflow="visible" id="glyph2-2">
141
+ <path style="stroke:none;" d="M -2.8125 -6.15625 C -3.765625 -6.15625 -4.34375 -6.078125 -4.8125 -5.90625 C -5.84375 -5.5 -6.46875 -4.53125 -6.46875 -3.359375 C -6.46875 -1.609375 -5.125 -0.484375 -3.0625 -0.484375 C -1 -0.484375 0.28125 -1.578125 0.28125 -3.34375 C 0.28125 -4.78125 -0.546875 -5.765625 -1.90625 -6.03125 L -1.90625 -5.015625 C -1.078125 -4.734375 -0.640625 -4.171875 -0.640625 -3.375 C -0.640625 -2.734375 -0.9375 -2.203125 -1.46875 -1.859375 C -1.828125 -1.625 -2.1875 -1.53125 -2.8125 -1.53125 L -2.8125 -6.15625 Z M -3.625 -1.546875 C -4.78125 -1.625 -5.546875 -2.34375 -5.546875 -3.34375 C -5.546875 -4.328125 -4.734375 -5.09375 -3.703125 -5.09375 C -3.671875 -5.09375 -3.640625 -5.09375 -3.625 -5.078125 L -3.625 -1.546875 Z M -3.625 -1.546875 "/>
142
+ </symbol>
143
+ <symbol overflow="visible" id="glyph2-3">
144
+ <path style="stroke:none;" d="M -6.28125 -0.828125 L 0 -0.828125 L 0 -1.84375 L -3.265625 -1.84375 C -4.15625 -1.84375 -4.75 -2.0625 -5.09375 -2.546875 C -5.328125 -2.859375 -5.40625 -3.15625 -5.40625 -3.859375 L -6.4375 -3.859375 C -6.453125 -3.6875 -6.46875 -3.59375 -6.46875 -3.46875 C -6.46875 -2.8125 -6.078125 -2.328125 -5.140625 -1.75 L -6.28125 -1.75 L -6.28125 -0.828125 Z M -6.28125 -0.828125 "/>
145
+ </symbol>
146
+ <symbol overflow="visible" id="glyph2-4">
147
+ <path style="stroke:none;" d="M -4.171875 -5.65625 C -4.78125 -5.609375 -5.1875 -5.46875 -5.53125 -5.234375 C -6.125 -4.796875 -6.46875 -4.046875 -6.46875 -3.171875 C -6.46875 -1.46875 -5.125 -0.375 -3.03125 -0.375 C -1.015625 -0.375 0.28125 -1.453125 0.28125 -3.15625 C 0.28125 -4.65625 -0.625 -5.609375 -2.15625 -5.71875 L -2.15625 -4.71875 C -1.15625 -4.546875 -0.640625 -4.03125 -0.640625 -3.1875 C -0.640625 -2.078125 -1.546875 -1.421875 -3.03125 -1.421875 C -4.609375 -1.421875 -5.546875 -2.0625 -5.546875 -3.15625 C -5.546875 -4 -5.046875 -4.53125 -4.171875 -4.640625 L -4.171875 -5.65625 Z M -4.171875 -5.65625 "/>
148
+ </symbol>
149
+ <symbol overflow="visible" id="glyph2-5">
150
+ <path style="stroke:none;" d="M -6.28125 -0.84375 L 0 -0.84375 L 0 -1.84375 L -3.46875 -1.84375 C -4.75 -1.84375 -5.59375 -2.515625 -5.59375 -3.546875 C -5.59375 -4.34375 -5.109375 -4.84375 -4.359375 -4.84375 L 0 -4.84375 L 0 -5.84375 L -4.75 -5.84375 C -5.796875 -5.84375 -6.46875 -5.0625 -6.46875 -3.859375 C -6.46875 -2.921875 -6.109375 -2.3125 -5.234375 -1.765625 L -6.28125 -1.765625 L -6.28125 -0.84375 Z M -6.28125 -0.84375 "/>
151
+ </symbol>
152
+ <symbol overflow="visible" id="glyph2-6">
153
+ <path style="stroke:none;" d="M -6.28125 -3.046875 L -6.28125 -2.015625 L -8.015625 -2.015625 L -8.015625 -1.015625 L -6.28125 -1.015625 L -6.28125 -0.171875 L -5.46875 -0.171875 L -5.46875 -1.015625 L -0.71875 -1.015625 C -0.078125 -1.015625 0.28125 -1.453125 0.28125 -2.234375 C 0.28125 -2.46875 0.25 -2.71875 0.1875 -3.046875 L -0.640625 -3.046875 C -0.609375 -2.921875 -0.59375 -2.765625 -0.59375 -2.5625 C -0.59375 -2.140625 -0.71875 -2.015625 -1.15625 -2.015625 L -5.46875 -2.015625 L -5.46875 -3.046875 L -6.28125 -3.046875 Z M -6.28125 -3.046875 "/>
154
+ </symbol>
155
+ <symbol overflow="visible" id="glyph2-7">
156
+ <path style="stroke:none;" d=""/>
157
+ </symbol>
158
+ <symbol overflow="visible" id="glyph2-8">
159
+ <path style="stroke:none;" d="M -8.75 -6.625 L -2.609375 -6.625 C -1.421875 -6.625 -0.703125 -5.765625 -0.703125 -4.375 C -0.703125 -3.71875 -0.859375 -3.1875 -1.15625 -2.765625 C -1.5 -2.34375 -1.9375 -2.140625 -2.609375 -2.140625 L -8.75 -2.140625 L -8.75 -1.015625 L -2.609375 -1.015625 C -0.828125 -1.015625 0.28125 -2.296875 0.28125 -4.375 C 0.28125 -6.421875 -0.859375 -7.734375 -2.609375 -7.734375 L -8.75 -7.734375 L -8.75 -6.625 Z M -8.75 -6.625 "/>
160
+ </symbol>
161
+ <symbol overflow="visible" id="glyph2-9">
162
+ <path style="stroke:none;" d="M -4.53125 -5.25 C -5.765625 -5.25 -6.46875 -4.421875 -6.46875 -2.96875 C -6.46875 -1.515625 -5.71875 -0.5625 -4.546875 -0.5625 C -3.5625 -0.5625 -3.09375 -1.0625 -2.734375 -2.5625 L -2.515625 -3.484375 C -2.34375 -4.1875 -2.09375 -4.46875 -1.625 -4.46875 C -1.046875 -4.46875 -0.640625 -3.875 -0.640625 -3 C -0.640625 -2.453125 -0.796875 -2 -1.0625 -1.75 C -1.25 -1.59375 -1.421875 -1.53125 -1.875 -1.46875 L -1.875 -0.40625 C -0.421875 -0.453125 0.28125 -1.265625 0.28125 -2.921875 C 0.28125 -4.5 -0.5 -5.515625 -1.71875 -5.515625 C -2.65625 -5.515625 -3.171875 -4.984375 -3.46875 -3.734375 L -3.703125 -2.765625 C -3.890625 -1.953125 -4.15625 -1.609375 -4.59375 -1.609375 C -5.171875 -1.609375 -5.546875 -2.125 -5.546875 -2.9375 C -5.546875 -3.75 -5.203125 -4.171875 -4.53125 -4.203125 L -4.53125 -5.25 Z M -4.53125 -5.25 "/>
163
+ </symbol>
164
+ <symbol overflow="visible" id="glyph2-10">
165
+ <path style="stroke:none;" d="M -0.59375 -6.421875 C -0.5625 -6.3125 -0.5625 -6.265625 -0.5625 -6.203125 C -0.5625 -5.859375 -0.75 -5.65625 -1.0625 -5.65625 L -4.75 -5.65625 C -5.875 -5.65625 -6.46875 -4.84375 -6.46875 -3.296875 C -6.46875 -2.390625 -6.203125 -1.625 -5.734375 -1.21875 C -5.40625 -0.921875 -5.046875 -0.796875 -4.421875 -0.78125 L -4.421875 -1.78125 C -5.203125 -1.875 -5.546875 -2.328125 -5.546875 -3.265625 C -5.546875 -4.15625 -5.203125 -4.671875 -4.609375 -4.671875 L -4.34375 -4.671875 C -3.921875 -4.671875 -3.75 -4.421875 -3.640625 -3.625 C -3.46875 -2.203125 -3.421875 -1.984375 -3.265625 -1.609375 C -2.96875 -0.875 -2.40625 -0.5 -1.578125 -0.5 C -0.4375 -0.5 0.28125 -1.296875 0.28125 -2.5625 C 0.28125 -3.359375 0 -4 -0.640625 -4.703125 C -0.015625 -4.78125 0.28125 -5.09375 0.28125 -5.734375 C 0.28125 -5.9375 0.25 -6.09375 0.171875 -6.421875 L -0.59375 -6.421875 Z M -1.984375 -4.671875 C -1.640625 -4.671875 -1.4375 -4.578125 -1.15625 -4.265625 C -0.796875 -3.859375 -0.59375 -3.375 -0.59375 -2.78125 C -0.59375 -2 -0.96875 -1.546875 -1.609375 -1.546875 C -2.265625 -1.546875 -2.609375 -1.984375 -2.765625 -3.0625 C -2.90625 -4.109375 -2.953125 -4.328125 -3.109375 -4.671875 L -1.984375 -4.671875 Z M -1.984375 -4.671875 "/>
166
+ </symbol>
167
+ <symbol overflow="visible" id="glyph2-11">
168
+ <path style="stroke:none;" d="M -6.28125 -4.9375 L -5.375 -4.9375 C -6.125 -4.4375 -6.46875 -3.828125 -6.46875 -3.03125 C -6.46875 -1.421875 -5.078125 -0.34375 -3.03125 -0.34375 C -2 -0.34375 -1.15625 -0.625 -0.5625 -1.140625 C -0.03125 -1.609375 0.28125 -2.28125 0.28125 -2.9375 C 0.28125 -3.734375 -0.0625 -4.28125 -0.859375 -4.84375 L -0.53125 -4.84375 C 0.328125 -4.84375 0.84375 -4.734375 1.1875 -4.484375 C 1.5625 -4.21875 1.78125 -3.703125 1.78125 -3.09375 C 1.78125 -2.640625 1.65625 -2.234375 1.4375 -1.953125 C 1.265625 -1.734375 1.09375 -1.625 0.71875 -1.578125 L 0.71875 -0.546875 C 1.90625 -0.65625 2.609375 -1.578125 2.609375 -3.0625 C 2.609375 -4 2.3125 -4.796875 1.8125 -5.203125 C 1.234375 -5.6875 0.4375 -5.875 -1.03125 -5.875 L -6.28125 -5.875 L -6.28125 -4.9375 Z M -5.546875 -3.125 C -5.546875 -4.21875 -4.625 -4.84375 -3.0625 -4.84375 C -1.5625 -4.84375 -0.640625 -4.203125 -0.640625 -3.140625 C -0.640625 -2.046875 -1.578125 -1.390625 -3.09375 -1.390625 C -4.609375 -1.390625 -5.546875 -2.0625 -5.546875 -3.125 Z M -5.546875 -3.125 "/>
169
+ </symbol>
170
+ <symbol overflow="visible" id="glyph2-12">
171
+ <path style="stroke:none;" d="M -8.515625 -3.296875 C -8.515625 -2.515625 -8.15625 -1.78125 -7.578125 -1.34375 C -6.828125 -0.796875 -5.6875 -0.515625 -4.109375 -0.515625 C -1.25 -0.515625 0.28125 -1.46875 0.28125 -3.296875 C 0.28125 -5.09375 -1.25 -6.078125 -4.046875 -6.078125 C -5.703125 -6.078125 -6.796875 -5.8125 -7.578125 -5.25 C -8.171875 -4.8125 -8.515625 -4.109375 -8.515625 -3.296875 Z M -7.578125 -3.296875 C -7.578125 -4.4375 -6.421875 -5 -4.140625 -5 C -1.734375 -5 -0.59375 -4.453125 -0.59375 -3.28125 C -0.59375 -2.15625 -1.78125 -1.59375 -4.109375 -1.59375 C -6.4375 -1.59375 -7.578125 -2.15625 -7.578125 -3.296875 Z M -7.578125 -3.296875 "/>
172
+ </symbol>
173
+ <symbol overflow="visible" id="glyph2-13">
174
+ <path style="stroke:none;" d="M -6.0625 -3.109375 L 0 -3.109375 L 0 -4.15625 L -8.515625 -4.15625 L -8.515625 -3.46875 C -7.203125 -3.09375 -7.015625 -2.859375 -6.8125 -1.21875 L -6.0625 -1.21875 L -6.0625 -3.109375 Z M -6.0625 -3.109375 "/>
175
+ </symbol>
176
+ <symbol overflow="visible" id="glyph2-14">
177
+ <path style="stroke:none;" d="M -1.046875 -6.078125 L -1.046875 -1.59375 C -1.734375 -1.703125 -2.1875 -2.09375 -2.796875 -3.125 L -3.4375 -4.328125 C -4.09375 -5.515625 -4.96875 -6.125 -6.015625 -6.125 C -6.71875 -6.125 -7.375 -5.84375 -7.84375 -5.34375 C -8.296875 -4.84375 -8.515625 -4.21875 -8.515625 -3.40625 C -8.515625 -2.328125 -8.125 -1.53125 -7.40625 -1.0625 C -6.953125 -0.75 -6.421875 -0.625 -5.5625 -0.59375 L -5.5625 -1.65625 C -6.125 -1.6875 -6.484375 -1.765625 -6.75 -1.90625 C -7.265625 -2.1875 -7.578125 -2.734375 -7.578125 -3.375 C -7.578125 -4.328125 -6.90625 -5.046875 -5.984375 -5.046875 C -5.3125 -5.046875 -4.734375 -4.65625 -4.3125 -3.90625 L -3.6875 -2.796875 C -2.671875 -1.015625 -1.875 -0.5 0 -0.40625 L 0 -6.078125 L -1.046875 -6.078125 Z M -1.046875 -6.078125 "/>
178
+ </symbol>
179
+ <symbol overflow="visible" id="glyph2-15">
180
+ <path style="stroke:none;" d="M -3.90625 -2.65625 L -3.90625 -2.78125 L -3.90625 -3.234375 C -3.90625 -4.390625 -3.390625 -4.984375 -2.359375 -4.984375 C -1.296875 -4.984375 -0.65625 -4.328125 -0.65625 -3.234375 C -0.65625 -2.078125 -1.234375 -1.515625 -2.46875 -1.4375 L -2.46875 -0.390625 C -1.78125 -0.4375 -1.34375 -0.546875 -0.953125 -0.75 C -0.140625 -1.1875 0.28125 -2.03125 0.28125 -3.1875 C 0.28125 -4.9375 -0.765625 -6.078125 -2.375 -6.078125 C -3.453125 -6.078125 -4.0625 -5.65625 -4.40625 -4.625 C -4.71875 -5.421875 -5.3125 -5.8125 -6.171875 -5.8125 C -7.625 -5.8125 -8.515625 -4.84375 -8.515625 -3.234375 C -8.515625 -1.515625 -7.578125 -0.59375 -5.765625 -0.5625 L -5.765625 -1.625 C -6.28125 -1.625 -6.5625 -1.6875 -6.828125 -1.8125 C -7.296875 -2.046875 -7.578125 -2.578125 -7.578125 -3.234375 C -7.578125 -4.171875 -7.03125 -4.734375 -6.125 -4.734375 C -5.53125 -4.734375 -5.171875 -4.53125 -4.984375 -4.0625 C -4.859375 -3.765625 -4.8125 -3.390625 -4.796875 -2.65625 L -3.90625 -2.65625 Z M -3.90625 -2.65625 "/>
181
+ </symbol>
182
+ <symbol overflow="visible" id="glyph2-16">
183
+ <path style="stroke:none;" d="M -2.046875 -3.921875 L 0 -3.921875 L 0 -4.984375 L -2.046875 -4.984375 L -2.046875 -6.234375 L -2.984375 -6.234375 L -2.984375 -4.984375 L -8.515625 -4.984375 L -8.515625 -4.203125 L -3.15625 -0.34375 L -2.046875 -0.34375 L -2.046875 -3.921875 Z M -2.984375 -3.921875 L -2.984375 -1.265625 L -6.703125 -3.921875 L -2.984375 -3.921875 Z M -2.984375 -3.921875 "/>
184
+ </symbol>
185
+ </g>
186
+ <clipPath id="clip1">
187
+ <path d="M 0 0 L 505 0 L 505 505 L 0 505 Z M 0 0 "/>
188
+ </clipPath>
189
+ <clipPath id="clip2">
190
+ <path d="M 0 0 L 505 0 L 505 505 L 0 505 Z M 0 0 "/>
191
+ </clipPath>
192
+ <clipPath id="clip3">
193
+ <path d="M 0 0 L 505 0 L 505 505 L 0 505 Z M 0 0 "/>
194
+ </clipPath>
195
+ <clipPath id="clip4">
196
+ <path d="M 0 0 L 505 0 L 505 505 L 0 505 Z M 0 0 "/>
197
+ </clipPath>
198
+ </defs>
199
+ <g id="surface0">
200
+ <rect x="0" y="0" width="504" height="504" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
201
+ <g clip-path="url(#clip1)" clip-rule="nonzero">
202
+ <path style="fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 74.398438 426.882812 L 129.253906 426.882812 L 129.253906 59.042969 L 74.398438 59.042969 Z M 74.398438 426.882812 "/>
203
+ <path style="fill-rule:nonzero;fill:rgb(100%,100%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 140.230469 426.882812 L 195.085938 426.882812 L 195.085938 183.359375 L 140.230469 183.359375 Z M 140.230469 426.882812 "/>
204
+ <path style="fill-rule:nonzero;fill:rgb(0%,100%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 206.058594 426.882812 L 260.914062 426.882812 L 260.914062 302.566406 L 206.058594 302.566406 Z M 206.058594 426.882812 "/>
205
+ <path style="fill-rule:nonzero;fill:rgb(0%,100%,100%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.886719 426.882812 L 326.742188 426.882812 L 326.742188 373.238281 L 271.886719 373.238281 Z M 271.886719 426.882812 "/>
206
+ <path style="fill-rule:nonzero;fill:rgb(100%,0%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.714844 426.882812 L 392.570312 426.882812 L 392.570312 404.746094 L 337.714844 404.746094 Z M 337.714844 426.882812 "/>
207
+ <path style="fill-rule:nonzero;fill:rgb(100%,0%,100%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 403.542969 426.882812 L 458.398438 426.882812 L 458.398438 386.863281 L 403.542969 386.863281 Z M 403.542969 426.882812 "/>
208
+ </g>
209
+ <g clip-path="url(#clip2)" clip-rule="nonzero">
210
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
211
+ <use xlink:href="#glyph0-1" x="81.328125" y="442.955078"/>
212
+ <use xlink:href="#glyph0-2" x="84.664062" y="442.955078"/>
213
+ <use xlink:href="#glyph0-3" x="91.335938" y="442.955078"/>
214
+ <use xlink:href="#glyph0-4" x="94.671875" y="442.955078"/>
215
+ <use xlink:href="#glyph0-5" x="101.34375" y="442.955078"/>
216
+ <use xlink:href="#glyph0-2" x="105.339844" y="442.955078"/>
217
+ <use xlink:href="#glyph0-4" x="112.011719" y="442.955078"/>
218
+ <use xlink:href="#glyph0-3" x="118.683594" y="442.955078"/>
219
+ </g>
220
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
221
+ <use xlink:href="#glyph0-6" x="79.328125" y="457.357422"/>
222
+ <use xlink:href="#glyph0-7" x="87.332031" y="457.357422"/>
223
+ <use xlink:href="#glyph0-8" x="93.332031" y="457.357422"/>
224
+ <use xlink:href="#glyph0-9" x="100.003906" y="457.357422"/>
225
+ <use xlink:href="#glyph0-10" x="102.667969" y="457.357422"/>
226
+ <use xlink:href="#glyph0-5" x="109.339844" y="457.357422"/>
227
+ <use xlink:href="#glyph0-4" x="113.335938" y="457.357422"/>
228
+ <use xlink:href="#glyph0-5" x="120.007812" y="457.357422"/>
229
+ </g>
230
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
231
+ <use xlink:href="#glyph0-11" x="149.15625" y="457.357422"/>
232
+ <use xlink:href="#glyph0-12" x="156.488281" y="457.357422"/>
233
+ <use xlink:href="#glyph0-5" x="159.152344" y="457.357422"/>
234
+ <use xlink:href="#glyph0-4" x="163.148438" y="457.357422"/>
235
+ <use xlink:href="#glyph0-13" x="169.820312" y="457.357422"/>
236
+ <use xlink:href="#glyph0-10" x="173.15625" y="457.357422"/>
237
+ <use xlink:href="#glyph0-7" x="179.828125" y="457.357422"/>
238
+ </g>
239
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
240
+ <use xlink:href="#glyph0-14" x="211.984375" y="457.357422"/>
241
+ <use xlink:href="#glyph0-15" x="220.648438" y="457.357422"/>
242
+ <use xlink:href="#glyph0-5" x="227.320312" y="457.357422"/>
243
+ <use xlink:href="#glyph0-10" x="231.316406" y="457.357422"/>
244
+ <use xlink:href="#glyph0-16" x="237.988281" y="457.357422"/>
245
+ <use xlink:href="#glyph0-4" x="247.984375" y="457.357422"/>
246
+ </g>
247
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
248
+ <use xlink:href="#glyph0-17" x="283.3125" y="457.357422"/>
249
+ <use xlink:href="#glyph0-18" x="291.316406" y="457.357422"/>
250
+ <use xlink:href="#glyph0-13" x="297.988281" y="457.357422"/>
251
+ <use xlink:href="#glyph0-18" x="301.324219" y="457.357422"/>
252
+ <use xlink:href="#glyph0-5" x="307.996094" y="457.357422"/>
253
+ <use xlink:href="#glyph0-12" x="311.992188" y="457.357422"/>
254
+ </g>
255
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
256
+ <use xlink:href="#glyph0-19" x="348.144531" y="457.357422"/>
257
+ <use xlink:href="#glyph0-8" x="357.480469" y="457.357422"/>
258
+ <use xlink:href="#glyph0-4" x="364.152344" y="457.357422"/>
259
+ <use xlink:href="#glyph0-5" x="370.824219" y="457.357422"/>
260
+ <use xlink:href="#glyph0-18" x="374.820312" y="457.357422"/>
261
+ </g>
262
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
263
+ <use xlink:href="#glyph0-20" x="412.972656" y="442.955078"/>
264
+ <use xlink:href="#glyph0-10" x="422.96875" y="442.955078"/>
265
+ <use xlink:href="#glyph0-21" x="429.640625" y="442.955078"/>
266
+ <use xlink:href="#glyph0-12" x="436.3125" y="442.955078"/>
267
+ <use xlink:href="#glyph0-9" x="438.976562" y="442.955078"/>
268
+ <use xlink:href="#glyph0-4" x="441.640625" y="442.955078"/>
269
+ </g>
270
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
271
+ <use xlink:href="#glyph0-21" x="406.472656" y="457.357422"/>
272
+ <use xlink:href="#glyph0-5" x="413.144531" y="457.357422"/>
273
+ <use xlink:href="#glyph0-10" x="417.140625" y="457.357422"/>
274
+ <use xlink:href="#glyph0-22" x="423.8125" y="457.357422"/>
275
+ <use xlink:href="#glyph0-23" x="432.476562" y="457.357422"/>
276
+ <use xlink:href="#glyph0-4" x="438.476562" y="457.357422"/>
277
+ <use xlink:href="#glyph0-5" x="445.148438" y="457.357422"/>
278
+ <use xlink:href="#glyph0-23" x="449.144531" y="457.357422"/>
279
+ </g>
280
+ </g>
281
+ <g clip-path="url(#clip3)" clip-rule="nonzero">
282
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
283
+ <use xlink:href="#glyph1-1" x="120.898438" y="34.116211"/>
284
+ <use xlink:href="#glyph1-2" x="131.299805" y="34.116211"/>
285
+ <use xlink:href="#glyph1-3" x="139.30957" y="34.116211"/>
286
+ <use xlink:href="#glyph1-4" x="147.319336" y="34.116211"/>
287
+ <use xlink:href="#glyph1-5" x="156.121094" y="34.116211"/>
288
+ <use xlink:href="#glyph1-6" x="164.130859" y="34.116211"/>
289
+ <use xlink:href="#glyph1-2" x="168.135742" y="34.116211"/>
290
+ <use xlink:href="#glyph1-7" x="176.145508" y="34.116211"/>
291
+ <use xlink:href="#glyph1-3" x="184.947266" y="34.116211"/>
292
+ <use xlink:href="#glyph1-8" x="192.957031" y="34.116211"/>
293
+ <use xlink:href="#glyph1-5" x="198.561523" y="34.116211"/>
294
+ <use xlink:href="#glyph1-6" x="206.571289" y="34.116211"/>
295
+ <use xlink:href="#glyph1-9" x="210.576172" y="34.116211"/>
296
+ <use xlink:href="#glyph1-10" x="219.37793" y="34.116211"/>
297
+ <use xlink:href="#glyph1-6" x="224.174805" y="34.116211"/>
298
+ <use xlink:href="#glyph1-11" x="228.179688" y="34.116211"/>
299
+ <use xlink:href="#glyph1-5" x="239.387695" y="34.116211"/>
300
+ <use xlink:href="#glyph1-12" x="247.397461" y="34.116211"/>
301
+ <use xlink:href="#glyph1-6" x="256.199219" y="34.116211"/>
302
+ <use xlink:href="#glyph1-12" x="260.204102" y="34.116211"/>
303
+ <use xlink:href="#glyph1-8" x="269.005859" y="34.116211"/>
304
+ <use xlink:href="#glyph1-9" x="274.610352" y="34.116211"/>
305
+ <use xlink:href="#glyph1-11" x="283.412109" y="34.116211"/>
306
+ <use xlink:href="#glyph1-2" x="294.620117" y="34.116211"/>
307
+ <use xlink:href="#glyph1-5" x="302.629883" y="34.116211"/>
308
+ <use xlink:href="#glyph1-8" x="310.639648" y="34.116211"/>
309
+ <use xlink:href="#glyph1-2" x="316.244141" y="34.116211"/>
310
+ <use xlink:href="#glyph1-13" x="324.253906" y="34.116211"/>
311
+ <use xlink:href="#glyph1-6" x="329.050781" y="34.116211"/>
312
+ <use xlink:href="#glyph1-14" x="333.055664" y="34.116211"/>
313
+ <use xlink:href="#glyph1-3" x="345.055664" y="34.116211"/>
314
+ <use xlink:href="#glyph1-8" x="353.06543" y="34.116211"/>
315
+ <use xlink:href="#glyph1-15" x="358.669922" y="34.116211"/>
316
+ <use xlink:href="#glyph1-7" x="366.679688" y="34.116211"/>
317
+ <use xlink:href="#glyph1-6" x="375.481445" y="34.116211"/>
318
+ <use xlink:href="#glyph1-16" x="379.486328" y="34.116211"/>
319
+ <use xlink:href="#glyph1-17" x="387.496094" y="34.116211"/>
320
+ <use xlink:href="#glyph1-18" x="395.505859" y="34.116211"/>
321
+ <use xlink:href="#glyph1-18" x="403.515625" y="34.116211"/>
322
+ </g>
323
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
324
+ <use xlink:href="#glyph2-1" x="13.833984" y="284.800781"/>
325
+ <use xlink:href="#glyph2-2" x="13.833984" y="276.796875"/>
326
+ <use xlink:href="#glyph2-3" x="13.833984" y="270.125"/>
327
+ <use xlink:href="#glyph2-4" x="13.833984" y="266.128906"/>
328
+ <use xlink:href="#glyph2-2" x="13.833984" y="260.128906"/>
329
+ <use xlink:href="#glyph2-5" x="13.833984" y="253.457031"/>
330
+ <use xlink:href="#glyph2-6" x="13.833984" y="246.785156"/>
331
+ <use xlink:href="#glyph2-7" x="13.833984" y="243.449219"/>
332
+ <use xlink:href="#glyph2-8" x="13.833984" y="240.113281"/>
333
+ <use xlink:href="#glyph2-9" x="13.833984" y="231.449219"/>
334
+ <use xlink:href="#glyph2-10" x="13.833984" y="225.449219"/>
335
+ <use xlink:href="#glyph2-11" x="13.833984" y="218.777344"/>
336
+ <use xlink:href="#glyph2-2" x="13.833984" y="212.105469"/>
337
+ </g>
338
+ </g>
339
+ <g clip-path="url(#clip4)" clip-rule="nonzero">
340
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 426.882812 L 59.039062 86.289062 "/>
341
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 426.882812 L 51.839844 426.882812 "/>
342
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 341.734375 L 51.839844 341.734375 "/>
343
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 256.585938 L 51.839844 256.585938 "/>
344
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 171.4375 L 51.839844 171.4375 "/>
345
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 86.289062 L 51.839844 86.289062 "/>
346
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
347
+ <use xlink:href="#glyph2-12" x="42.634766" y="430.382812"/>
348
+ </g>
349
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
350
+ <use xlink:href="#glyph2-13" x="42.634766" y="348.734375"/>
351
+ <use xlink:href="#glyph2-12" x="42.634766" y="342.0625"/>
352
+ </g>
353
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
354
+ <use xlink:href="#glyph2-14" x="42.634766" y="263.585938"/>
355
+ <use xlink:href="#glyph2-12" x="42.634766" y="256.914062"/>
356
+ </g>
357
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
358
+ <use xlink:href="#glyph2-15" x="42.634766" y="178.4375"/>
359
+ <use xlink:href="#glyph2-12" x="42.634766" y="171.765625"/>
360
+ </g>
361
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
362
+ <use xlink:href="#glyph2-16" x="42.634766" y="93.289062"/>
363
+ <use xlink:href="#glyph2-12" x="42.634766" y="86.617188"/>
364
+ </g>
365
+ </g>
366
+ </g>
367
+ </svg>