collectd-interface 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. data/README.md +134 -0
  2. data/bin/collectd-interface-daemon +401 -0
  3. data/bin/collectd-interface-plugins +95 -0
  4. data/graphs/cpus.erb +76 -0
  5. data/graphs/disk-traffic-root.erb +30 -0
  6. data/graphs/disk-traffic-srv.erb.disabled +30 -0
  7. data/graphs/disk-traffic-tmp.erb.disabled +30 -0
  8. data/graphs/disk-traffic-var.erb.disabled +30 -0
  9. data/graphs/gridengine-jobs.erb.disabled +32 -0
  10. data/graphs/load.erb +36 -0
  11. data/graphs/memory.erb +47 -0
  12. data/graphs/network-eth0.erb +26 -0
  13. data/graphs/network-lo.erb +26 -0
  14. data/graphs/processes.erb +66 -0
  15. data/public/images/cpus.png +0 -0
  16. data/public/images/cpus.svg +946 -0
  17. data/public/images/disk-traffic-root.png +0 -0
  18. data/public/images/disk-traffic-srv.png +0 -0
  19. data/public/images/disk-traffic-var.png +0 -0
  20. data/public/images/load.png +0 -0
  21. data/public/images/load.svg +638 -0
  22. data/public/images/memory.png +0 -0
  23. data/public/images/memory.svg +741 -0
  24. data/public/images/network-eth0.png +0 -0
  25. data/public/images/network-eth0.svg +609 -0
  26. data/public/images/network-lo.png +0 -0
  27. data/public/images/network-lo.svg +644 -0
  28. data/public/images/processes.png +0 -0
  29. data/public/images/processes.svg +832 -0
  30. data/public/readme/user-interface.png +0 -0
  31. data/public/script/toggle.js +9 -0
  32. data/public/style/default.css +275 -0
  33. data/public/style/nav.css +265 -0
  34. data/views/README.md +134 -0
  35. data/views/data.erb +3 -0
  36. data/views/graph.erb +19 -0
  37. data/views/readme.erb +3 -0
  38. data/views/report.erb +17 -0
  39. data/views/reports/disk-free.erb +20 -0
  40. data/views/reports/list-open-files-lustre.erb.disabled +44 -0
  41. data/views/reports/list-open-files-tmp.erb +44 -0
  42. data/views/reports/processes-cpu-usage.erb +39 -0
  43. data/views/reports/system-sockets.erb +32 -0
  44. data/views/show_values.erb +11 -0
  45. data/views/template/default.erb +21 -0
  46. data/views/template/header.erb +3 -0
  47. data/views/template/navigation.erb +9 -0
  48. data/views/template/options/data.erb +31 -0
  49. data/views/template/options/graph.erb +23 -0
  50. data/views/template/options/readme.erb +0 -0
  51. data/views/template/options/report.erb +11 -0
  52. metadata +128 -0
@@ -0,0 +1,26 @@
1
+ rrdtool graph <%= target %> -a <%= type.upcase %> \
2
+ --end now --start=end-<%= last %> \
3
+ --title='Network Traffic Interface "lo"' --vertical-label="Bits" \
4
+ --grid-dash 1:1 --width=400 --height=100 \
5
+ --alt-autoscale-max --border=0 --color=BACK#FFFFFF \
6
+ --tabwidth=10 \
7
+ DEF:rx_av=<%= rrd_path %>/interface/if_octets-lo.rrd:rx:AVERAGE \
8
+ DEF:rx_min=<%= rrd_path %>/interface/if_octets-lo.rrd:rx:MIN \
9
+ DEF:rx_max=<%= rrd_path %>/interface/if_octets-lo.rrd:rx:MAX \
10
+ DEF:tx_av=<%= rrd_path %>/interface/if_octets-lo.rrd:tx:AVERAGE \
11
+ DEF:tx_min=<%= rrd_path %>/interface/if_octets-lo.rrd:tx:MIN \
12
+ DEF:tx_max=<%= rrd_path %>/interface/if_octets-lo.rrd:tx:MAX \
13
+ AREA:rx_max<%= color[:green_light] %> \
14
+ AREA:rx_min#ffffff \
15
+ AREA:tx_max<%= color[:blue_light] %> \
16
+ AREA:tx_min#ffffff \
17
+ LINE1:rx_av<%= color[:green_dark] %>:"Recive " \
18
+ GPRINT:rx_min:MIN:"Min. %3.0lf%sb" \
19
+ GPRINT:rx_av:AVERAGE:"Avg. %3.0lf%sb" \
20
+ GPRINT:rx_max:MAX:"Max. %3.0lf%sb" \
21
+ GPRINT:rx_av:LAST:"Last %3.0lf%sb" \
22
+ LINE1:tx_av<%= color[:blue_dark] %>:"Transmit" \
23
+ GPRINT:tx_min:MIN:"Min. %3.0lf%sb" \
24
+ GPRINT:tx_av:AVERAGE:"Avg. %3.0lf%sb" \
25
+ GPRINT:tx_max:MAX:"Max. %3.0lf%sb" \
26
+ GPRINT:tx_av:LAST:"Last %3.0lf%sb" \
@@ -0,0 +1,66 @@
1
+ rrdtool graph <%= target %> -a <%= type.upcase%> \
2
+ --end now --start=end-<%= last %> \
3
+ --title='Process State' --vertical-label='Count' \
4
+ --grid-dash 1:1 --width=400 --height=100 \
5
+ --border=0 --color=BACK#FFFFFF \
6
+ --tabwidth=10 --lower-limit=0 \
7
+ DEF:sleep_av=<%= rrd_path %>/processes/ps_state-sleeping.rrd:value:AVERAGE \
8
+ DEF:sleep_min=<%= rrd_path %>/processes/ps_state-sleeping.rrd:value:MIN \
9
+ DEF:sleep_max=<%= rrd_path %>/processes/ps_state-sleeping.rrd:value:MAX \
10
+ DEF:run_av=<%= rrd_path %>/processes/ps_state-running.rrd:value:AVERAGE \
11
+ DEF:run_min=<%= rrd_path %>/processes/ps_state-running.rrd:value:MIN \
12
+ DEF:run_max=<%= rrd_path %>/processes/ps_state-running.rrd:value:MAX \
13
+ DEF:block_av=<%= rrd_path %>/processes/ps_state-blocked.rrd:value:AVERAGE \
14
+ DEF:block_min=<%= rrd_path %>/processes/ps_state-blocked.rrd:value:MIN \
15
+ DEF:block_max=<%= rrd_path %>/processes/ps_state-blocked.rrd:value:MAX \
16
+ DEF:stop_av=<%= rrd_path %>/processes/ps_state-stopped.rrd:value:AVERAGE \
17
+ DEF:stop_min=<%= rrd_path %>/processes/ps_state-stopped.rrd:value:MIN \
18
+ DEF:stop_max=<%= rrd_path %>/processes/ps_state-stopped.rrd:value:MAX \
19
+ DEF:page_av=<%= rrd_path %>/processes/ps_state-paging.rrd:value:AVERAGE \
20
+ DEF:page_min=<%= rrd_path %>/processes/ps_state-paging.rrd:value:MIN \
21
+ DEF:page_max=<%= rrd_path %>/processes/ps_state-paging.rrd:value:MAX \
22
+ DEF:zombi_av=<%= rrd_path %>/processes/ps_state-zombies.rrd:value:AVERAGE \
23
+ DEF:zombi_min=<%= rrd_path %>/processes/ps_state-zombies.rrd:value:MIN \
24
+ DEF:zombi_max=<%= rrd_path %>/processes/ps_state-zombies.rrd:value:MAX \
25
+ CDEF:sleep=sleep_av,sleep_av,UNKN,IF \
26
+ CDEF:run=run_av,sleep_av,run_av,+,UNKN,IF \
27
+ CDEF:block=block_av,sleep_av,run_av,block_av,+,+,UNKN,IF \
28
+ CDEF:stop=stop_av,sleep_av,run_av,block_av,stop_av,+,+,+,UNKN,IF \
29
+ CDEF:page=page_av,sleep_av,run_av,block_av,stop_av,page_av,+,+,+,+,UNKN,IF \
30
+ CDEF:zombi=zombi_av,sleep_av,run_av,block_av,stop_av,page_av,zombi_av,+,+,+,+,+,UNKN,IF \
31
+ AREA:sleep_av<%= color[:blue_light] %> \
32
+ AREA:run_av<%= color[:green_light] %>::STACK \
33
+ AREA:block_av<%= color[:yellow_light] %>::STACK \
34
+ AREA:stop_av<%= color[:red_light] %>::STACK \
35
+ AREA:page_av<%= color[:orange_light] %>::STACK \
36
+ AREA:zombi_av<%= color[:purple_light] %>::STACK \
37
+ LINE1:sleep<%= color[:blue_dark] %>:"Sleeping" \
38
+ GPRINT:sleep_min:MIN:"Min. %5.0lf" \
39
+ GPRINT:sleep_av:AVERAGE:"Avg. %5.0lf" \
40
+ GPRINT:sleep_max:MAX:"Max. %5.0lf" \
41
+ GPRINT:sleep_av:LAST:"Last %5.0lf" \
42
+ LINE1:run<%= color[:green_dark] %>:"Running " \
43
+ GPRINT:run_min:MIN:"Min. %5.0lf" \
44
+ GPRINT:run_av:AVERAGE:"Avg. %5.0lf" \
45
+ GPRINT:run_max:MAX:"Max. %5.0lf" \
46
+ GPRINT:run_av:LAST:"Last %5.0lf" \
47
+ LINE1:block<%= color[:yellow_dark] %>:"Blocked " \
48
+ GPRINT:block_min:MIN:"Min. %5.0lf" \
49
+ GPRINT:block_av:AVERAGE:"Avg. %5.0lf" \
50
+ GPRINT:block_max:MAX:"Max. %5.0lf" \
51
+ GPRINT:block_av:LAST:"Last %5.0lf" \
52
+ LINE1:stop<%= color[:red_dark] %>:"Stopped " \
53
+ GPRINT:stop_min:MIN:"Min. %5.0lf" \
54
+ GPRINT:stop_av:AVERAGE:"Avg. %5.0lf" \
55
+ GPRINT:stop_max:MAX:"Max. %5.0lf" \
56
+ GPRINT:stop_av:LAST:"Last %5.0lf" \
57
+ LINE1:page<%= color[:orange_dark] %>:"Paging " \
58
+ GPRINT:page_min:MIN:"Min. %5.0lf" \
59
+ GPRINT:page_av:AVERAGE:"Avg. %5.0lf" \
60
+ GPRINT:page_max:MAX:"Max. %5.0lf" \
61
+ GPRINT:page_av:LAST:"Last %5.0lf" \
62
+ LINE1:zombi<%= color[:purple_dark] %>:"Zombies " \
63
+ GPRINT:zombi_min:MIN:"Min. %5.0lf" \
64
+ GPRINT:zombi_av:AVERAGE:"Avg. %5.0lf" \
65
+ GPRINT:zombi_max:MAX:"Max. %5.0lf" \
66
+ GPRINT:zombi_av:LAST:"Last %5.0lf" \
Binary file
@@ -0,0 +1,946 @@
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="497pt" height="271pt" viewBox="0 0 497 271" version="1.1">
3
+ <defs>
4
+ <g>
5
+ <symbol overflow="visible" id="glyph0-0">
6
+ <path style="stroke:none;" d="M 1 -7 L 2.25 -7 L 3.5 -3.84375 L 4.75 -7 L 6 -7 L 6 0 L 5 0 L 5 -5.078125 L 4.140625 -3 L 2.859375 -3 L 2 -5.078125 L 2 0 L 1 0 Z M 1 -7 "/>
7
+ </symbol>
8
+ <symbol overflow="visible" id="glyph0-1">
9
+ <path style="stroke:none;" d="M 3.5 -4 C 3.007812 -4 2.632812 -3.875 2.375 -3.625 C 2.125 -3.375 2 -3 2 -2.5 C 2 -2.007812 2.125 -1.632812 2.375 -1.375 C 2.632812 -1.125 3.007812 -1 3.5 -1 C 3.988281 -1 4.359375 -1.125 4.609375 -1.375 C 4.867188 -1.632812 5 -2.007812 5 -2.5 C 5 -3 4.867188 -3.375 4.609375 -3.625 C 4.359375 -3.875 3.988281 -4 3.5 -4 Z M 3.5 -5 C 4.3125 -5 4.929688 -4.785156 5.359375 -4.359375 C 5.785156 -3.929688 6 -3.3125 6 -2.5 C 6 -1.6875 5.785156 -1.066406 5.359375 -0.640625 C 4.929688 -0.210938 4.3125 0 3.5 0 C 2.6875 0 2.066406 -0.210938 1.640625 -0.640625 C 1.210938 -1.066406 1 -1.6875 1 -2.5 C 1 -3.3125 1.210938 -3.929688 1.640625 -4.359375 C 2.066406 -4.785156 2.6875 -5 3.5 -5 Z M 3.5 -5 "/>
10
+ </symbol>
11
+ <symbol overflow="visible" id="glyph0-2">
12
+ <path style="stroke:none;" d="M 6 -2.8125 L 6 0 L 5 0 L 5 -2.8125 C 5 -3.21875 4.890625 -3.515625 4.671875 -3.703125 C 4.453125 -3.898438 4.113281 -4 3.65625 -4 C 3.125 -4 2.710938 -3.875 2.421875 -3.625 C 2.140625 -3.375 2 -3.019531 2 -2.5625 L 2 0 L 1 0 L 1 -5 L 2 -5 L 2 -3.859375 C 2.195312 -4.234375 2.460938 -4.515625 2.796875 -4.703125 C 3.128906 -4.898438 3.519531 -5 3.96875 -5 C 4.65625 -5 5.164062 -4.816406 5.5 -4.453125 C 5.832031 -4.085938 6 -3.539062 6 -2.8125 Z M 6 -2.8125 "/>
13
+ </symbol>
14
+ <symbol overflow="visible" id="glyph0-3">
15
+ <path style="stroke:none;" d=""/>
16
+ </symbol>
17
+ <symbol overflow="visible" id="glyph0-4">
18
+ <path style="stroke:none;" d="M 3 -3.5 C 3 -3.632812 3.046875 -3.75 3.140625 -3.84375 C 3.234375 -3.945312 3.347656 -4 3.484375 -4 C 3.628906 -4 3.75 -3.945312 3.84375 -3.84375 C 3.945312 -3.75 4 -3.632812 4 -3.5 C 4 -3.363281 3.945312 -3.242188 3.84375 -3.140625 C 3.75 -3.046875 3.628906 -3 3.484375 -3 C 3.347656 -3 3.234375 -3.046875 3.140625 -3.140625 C 3.046875 -3.234375 3 -3.351562 3 -3.5 Z M 3.5 -6 C 3 -6 2.625 -5.789062 2.375 -5.375 C 2.125 -4.96875 2 -4.34375 2 -3.5 C 2 -2.65625 2.125 -2.023438 2.375 -1.609375 C 2.625 -1.203125 3 -1 3.5 -1 C 4 -1 4.375 -1.203125 4.625 -1.609375 C 4.875 -2.023438 5 -2.65625 5 -3.5 C 5 -4.34375 4.875 -4.96875 4.625 -5.375 C 4.375 -5.789062 4 -6 3.5 -6 Z M 3.5 -7 C 4.320312 -7 4.941406 -6.703125 5.359375 -6.109375 C 5.785156 -5.523438 6 -4.65625 6 -3.5 C 6 -2.34375 5.785156 -1.46875 5.359375 -0.875 C 4.941406 -0.289062 4.320312 0 3.5 0 C 2.675781 0 2.050781 -0.289062 1.625 -0.875 C 1.207031 -1.46875 1 -2.34375 1 -3.5 C 1 -4.65625 1.207031 -5.523438 1.625 -6.109375 C 2.050781 -6.703125 2.675781 -7 3.5 -7 Z M 3.5 -7 "/>
19
+ </symbol>
20
+ <symbol overflow="visible" id="glyph0-5">
21
+ <path style="stroke:none;" d="M 2 -5 L 3 -5 L 3 -4 L 2 -4 Z M 2 -1 L 3 -1 L 3 0 L 2 0 Z M 2 -1 "/>
22
+ </symbol>
23
+ <symbol overflow="visible" id="glyph0-6">
24
+ <path style="stroke:none;" d="M 1 -1 L 3 -1 L 3 -6 L 1 -6 L 1 -7 L 4 -7 L 4 -1 L 6 -1 L 6 0 L 1 0 Z M 1 -1 "/>
25
+ </symbol>
26
+ <symbol overflow="visible" id="glyph0-7">
27
+ <path style="stroke:none;" d="M 2.234375 -1 L 6.046875 -1 L 6.046875 0 L 1 0 L 1 -1 C 1.71875 -1.550781 2.347656 -2.039062 2.890625 -2.46875 C 3.429688 -2.894531 3.804688 -3.195312 4.015625 -3.375 C 4.398438 -3.71875 4.660156 -3.992188 4.796875 -4.203125 C 4.929688 -4.421875 5 -4.644531 5 -4.875 C 5 -5.21875 4.851562 -5.488281 4.5625 -5.6875 C 4.269531 -5.894531 3.875 -6 3.375 -6 C 3.019531 -6 2.644531 -5.914062 2.25 -5.75 C 1.851562 -5.582031 1.4375 -5.332031 1 -5 L 1 -6 C 1.382812 -6.332031 1.765625 -6.582031 2.140625 -6.75 C 2.515625 -6.914062 2.882812 -7 3.25 -7 C 4.070312 -7 4.734375 -6.828125 5.234375 -6.484375 C 5.742188 -6.140625 6 -5.6875 6 -5.125 C 6.082031 -4.84375 6.078125 -4.554688 5.984375 -4.265625 C 5.898438 -3.984375 5.722656 -3.671875 5.453125 -3.328125 C 5.316406 -3.140625 5.03125 -2.875 4.59375 -2.53125 C 4.15625 -2.1875 3.367188 -1.675781 2.234375 -1 Z M 2.234375 -1 "/>
28
+ </symbol>
29
+ <symbol overflow="visible" id="glyph0-8">
30
+ <path style="stroke:none;" d="M 4 -5.421875 L 2.3125 -3 L 4 -3 Z M 3.875 -7 L 5 -7 L 5 -3 L 6 -3 L 6 -2 L 5 -2 L 5 0 L 4 0 L 4 -2 L 1 -2 L 1 -2.84375 Z M 3.875 -7 "/>
31
+ </symbol>
32
+ <symbol overflow="visible" id="glyph0-9">
33
+ <path style="stroke:none;" d="M 6 -7 L 6 -6 C 5.75 -6 5.484375 -6 5.203125 -6 C 4.921875 -6 4.628906 -6 4.328125 -6 C 3.554688 -6 2.972656 -5.734375 2.578125 -5.203125 C 2.191406 -4.671875 2 -3.890625 2 -2.859375 C 2.164062 -3.222656 2.390625 -3.503906 2.671875 -3.703125 C 2.960938 -3.898438 3.300781 -4 3.6875 -4 C 4.414062 -4 4.984375 -3.820312 5.390625 -3.46875 C 5.796875 -3.125 6 -2.632812 6 -2 C 6 -1.363281 5.785156 -0.867188 5.359375 -0.515625 C 4.941406 -0.171875 4.351562 0 3.59375 0 C 2.695312 0 2.039062 -0.28125 1.625 -0.84375 C 1.207031 -1.40625 1 -2.289062 1 -3.5 C 1 -4.632812 1.28125 -5.5 1.84375 -6.09375 C 2.414062 -6.695312 3.234375 -7 4.296875 -7 C 4.585938 -7 4.875 -7 5.15625 -7 C 5.445312 -7 5.726562 -7 6 -7 Z M 3.515625 -3 C 3.046875 -3 2.675781 -2.910156 2.40625 -2.734375 C 2.132812 -2.554688 2 -2.3125 2 -2 C 2 -1.6875 2.132812 -1.441406 2.40625 -1.265625 C 2.675781 -1.085938 3.046875 -1 3.515625 -1 C 4.003906 -1 4.375 -1.082031 4.625 -1.25 C 4.875 -1.414062 5 -1.664062 5 -2 C 5 -2.332031 4.875 -2.582031 4.625 -2.75 C 4.375 -2.914062 4.003906 -3 3.515625 -3 Z M 3.515625 -3 "/>
34
+ </symbol>
35
+ <symbol overflow="visible" id="glyph0-10">
36
+ <path style="stroke:none;" d="M 3.5 -3 C 3.019531 -3 2.648438 -2.910156 2.390625 -2.734375 C 2.128906 -2.566406 2 -2.320312 2 -2 C 2 -1.6875 2.128906 -1.441406 2.390625 -1.265625 C 2.660156 -1.085938 3.03125 -1 3.5 -1 C 3.976562 -1 4.347656 -1.082031 4.609375 -1.25 C 4.867188 -1.425781 5 -1.675781 5 -2 C 5 -2.3125 4.863281 -2.554688 4.59375 -2.734375 C 4.332031 -2.910156 3.96875 -3 3.5 -3 Z M 2.4375 -3.53125 C 1.988281 -3.632812 1.632812 -3.828125 1.375 -4.109375 C 1.125 -4.398438 1 -4.75 1 -5.15625 C 1 -5.71875 1.222656 -6.164062 1.671875 -6.5 C 2.117188 -6.832031 2.726562 -7 3.5 -7 C 4.269531 -7 4.878906 -6.832031 5.328125 -6.5 C 5.773438 -6.164062 6 -5.71875 6 -5.15625 C 6 -4.75 5.867188 -4.398438 5.609375 -4.109375 C 5.359375 -3.828125 5.007812 -3.632812 4.5625 -3.53125 C 5.03125 -3.4375 5.382812 -3.242188 5.625 -2.953125 C 5.875 -2.671875 6 -2.300781 6 -1.84375 C 6 -1.269531 5.773438 -0.816406 5.328125 -0.484375 C 4.890625 -0.160156 4.28125 0 3.5 0 C 2.71875 0 2.101562 -0.160156 1.65625 -0.484375 C 1.21875 -0.804688 1 -1.257812 1 -1.84375 C 1 -2.300781 1.117188 -2.671875 1.359375 -2.953125 C 1.609375 -3.242188 1.96875 -3.4375 2.4375 -3.53125 Z M 2 -4.984375 C 2 -4.671875 2.125 -4.425781 2.375 -4.25 C 2.632812 -4.082031 3.007812 -4 3.5 -4 C 3.988281 -4 4.359375 -4.082031 4.609375 -4.25 C 4.867188 -4.425781 5 -4.671875 5 -4.984375 C 5 -5.316406 4.867188 -5.566406 4.609375 -5.734375 C 4.359375 -5.910156 3.988281 -6 3.5 -6 C 3.007812 -6 2.632812 -5.910156 2.375 -5.734375 C 2.125 -5.566406 2 -5.316406 2 -4.984375 Z M 2 -4.984375 "/>
37
+ </symbol>
38
+ <symbol overflow="visible" id="glyph1-0">
39
+ <path style="stroke:none;" d="M -1 -1 L -2 -1 C -1.664062 -1.375 -1.414062 -1.757812 -1.25 -2.15625 C -1.082031 -2.5625 -1 -2.976562 -1 -3.40625 C -1 -4 -1.132812 -4.410156 -1.40625 -4.640625 C -1.675781 -4.878906 -2.179688 -5 -2.921875 -5 L -7 -5 L -7 -3 L -8 -3 L -8 -6 L -2.921875 -6 C -1.859375 -6 -1.101562 -5.789062 -0.65625 -5.375 C -0.21875 -4.957031 0 -4.265625 0 -3.296875 C 0 -2.921875 -0.078125 -2.546875 -0.234375 -2.171875 C -0.398438 -1.796875 -0.65625 -1.40625 -1 -1 Z M -1 -1 "/>
40
+ </symbol>
41
+ <symbol overflow="visible" id="glyph1-1">
42
+ <path style="stroke:none;" d="M -6 -1 L -6 -4 L -1 -4 L -1 -6 L 0 -6 L 0 -1 L -1 -1 L -1 -3 L -5 -3 L -5 -1 Z M -9 -3 L -9 -4 L -8 -4 L -8 -3 Z M -9 -3 "/>
43
+ </symbol>
44
+ <symbol overflow="visible" id="glyph1-2">
45
+ <path style="stroke:none;" d="M -9 -6 L -8 -6 L -8 -4.921875 C -8 -4.578125 -7.898438 -4.335938 -7.703125 -4.203125 C -7.515625 -4.066406 -7.179688 -4 -6.703125 -4 L -6 -4 L -6 -6 L -5 -6 L -5 -4 L 0 -4 L 0 -3 L -5 -3 L -5 -1 L -6 -1 L -6 -3 L -6.546875 -3 C -7.390625 -3 -8.007812 -3.148438 -8.40625 -3.453125 C -8.800781 -3.753906 -9 -4.222656 -9 -4.859375 Z M -9 -6 "/>
46
+ </symbol>
47
+ <symbol overflow="visible" id="glyph1-3">
48
+ <path style="stroke:none;" d="M -3.625 -6 L -3 -6 L -3 -1.96875 L -2.953125 -1.96875 C -2.328125 -1.96875 -1.84375 -2.132812 -1.5 -2.46875 C -1.164062 -2.8125 -1 -3.296875 -1 -3.921875 C -1 -4.234375 -1 -4.5625 -1 -4.90625 C -1 -5.25 -1 -5.613281 -1 -6 L 0 -6 C 0 -5.625 0 -5.265625 0 -4.921875 C 0 -4.585938 0 -4.257812 0 -3.9375 C 0 -3.007812 -0.265625 -2.285156 -0.796875 -1.765625 C -1.328125 -1.253906 -2.0625 -1 -3 -1 C -3.914062 -1 -4.644531 -1.238281 -5.1875 -1.71875 C -5.726562 -2.207031 -6 -2.859375 -6 -3.671875 C -6 -4.390625 -5.785156 -4.957031 -5.359375 -5.375 C -4.941406 -5.789062 -4.363281 -6 -3.625 -6 Z M -4 -5 C -4.320312 -4.988281 -4.566406 -4.863281 -4.734375 -4.625 C -4.910156 -4.382812 -5 -4.039062 -5 -3.59375 C -5 -3.15625 -4.910156 -2.789062 -4.734375 -2.5 C -4.554688 -2.21875 -4.3125 -2.050781 -4 -2 Z M -4 -5 "/>
49
+ </symbol>
50
+ <symbol overflow="visible" id="glyph1-4">
51
+ <path style="stroke:none;" d="M -6 -6 L -5 -6 C -5 -5.632812 -5 -5.265625 -5 -4.890625 C -5 -4.515625 -5 -4.128906 -5 -3.734375 C -5 -3.148438 -4.9375 -2.710938 -4.8125 -2.421875 C -4.695312 -2.140625 -4.519531 -2 -4.28125 -2 C -4.101562 -2.007812 -3.960938 -2.117188 -3.859375 -2.328125 C -3.753906 -2.535156 -3.628906 -3.050781 -3.484375 -3.875 L -3.390625 -4.375 C -3.296875 -4.90625 -3.113281 -5.304688 -2.84375 -5.578125 C -2.582031 -5.859375 -2.238281 -6 -1.8125 -6 C -1.238281 -6 -0.789062 -5.757812 -0.46875 -5.28125 C -0.15625 -4.800781 0 -4.128906 0 -3.265625 C 0 -2.929688 0 -2.578125 0 -2.203125 C 0 -1.835938 0 -1.4375 0 -1 L -1 -1 C -1 -1.4375 -1 -1.851562 -1 -2.25 C -1 -2.644531 -1 -3.019531 -1 -3.375 C -1 -3.894531 -1.066406 -4.296875 -1.203125 -4.578125 C -1.347656 -4.859375 -1.546875 -5 -1.796875 -5 C -2.160156 -5 -2.410156 -4.441406 -2.546875 -3.328125 L -2.5625 -3.28125 L -2.640625 -2.8125 C -2.742188 -2.1875 -2.925781 -1.726562 -3.1875 -1.4375 C -3.445312 -1.144531 -3.796875 -1 -4.234375 -1 C -4.796875 -1 -5.226562 -1.238281 -5.53125 -1.71875 C -5.84375 -2.195312 -6 -2.882812 -6 -3.78125 C -6 -4.175781 -6 -4.554688 -6 -4.921875 C -6 -5.285156 -6 -5.644531 -6 -6 Z M -6 -6 "/>
52
+ </symbol>
53
+ <symbol overflow="visible" id="glyph2-0">
54
+ <path style="stroke:none;" d="M 8 -1 C 7.613281 -0.664062 7.21875 -0.414062 6.8125 -0.25 C 6.40625 -0.0820312 5.976562 0 5.53125 0 C 4.09375 0 2.976562 -0.390625 2.1875 -1.171875 C 1.394531 -1.960938 1 -3.070312 1 -4.5 C 1 -5.914062 1.394531 -7.019531 2.1875 -7.8125 C 2.988281 -8.601562 4.101562 -9 5.53125 -9 C 5.976562 -9 6.40625 -8.914062 6.8125 -8.75 C 7.21875 -8.582031 7.613281 -8.332031 8 -8 L 8 -7 C 7.59375 -7.320312 7.148438 -7.566406 6.671875 -7.734375 C 6.203125 -7.910156 5.734375 -8 5.265625 -8 C 4.171875 -8 3.351562 -7.707031 2.8125 -7.125 C 2.269531 -6.539062 2 -5.664062 2 -4.5 C 2 -3.332031 2.269531 -2.457031 2.8125 -1.875 C 3.351562 -1.289062 4.171875 -1 5.265625 -1 C 5.742188 -1 6.21875 -1.082031 6.6875 -1.25 C 7.15625 -1.425781 7.59375 -1.675781 8 -2 Z M 8 -1 "/>
55
+ </symbol>
56
+ <symbol overflow="visible" id="glyph2-1">
57
+ <path style="stroke:none;" d="M 2 -8 L 2 -4 L 4.203125 -4 C 5.078125 -4 5.757812 -4.175781 6.25 -4.53125 C 6.75 -4.882812 7 -5.375 7 -6 C 7 -6.632812 6.753906 -7.125 6.265625 -7.46875 C 5.773438 -7.820312 5.085938 -8 4.203125 -8 Z M 1 -9 L 4.203125 -9 C 5.453125 -9 6.394531 -8.742188 7.03125 -8.234375 C 7.675781 -7.722656 8 -6.976562 8 -6 C 8 -5.007812 7.675781 -4.257812 7.03125 -3.75 C 6.394531 -3.25 5.453125 -3 4.203125 -3 L 2 -3 L 2 0 L 1 0 Z M 1 -9 "/>
58
+ </symbol>
59
+ <symbol overflow="visible" id="glyph2-2">
60
+ <path style="stroke:none;" d="M 1 -3.578125 L 1 -9 L 2 -9 L 2 -3.03125 C 2 -2.601562 2.015625 -2.296875 2.046875 -2.109375 C 2.085938 -1.929688 2.15625 -1.796875 2.25 -1.703125 C 2.445312 -1.472656 2.734375 -1.296875 3.109375 -1.171875 C 3.492188 -1.054688 3.957031 -1 4.5 -1 C 5.039062 -1 5.5 -1.054688 5.875 -1.171875 C 6.25 -1.296875 6.539062 -1.472656 6.75 -1.703125 C 6.84375 -1.796875 6.90625 -1.929688 6.9375 -2.109375 C 6.976562 -2.296875 7 -2.601562 7 -3.03125 L 7 -9 L 8 -9 L 8 -3.578125 C 8 -2.671875 7.925781 -2.023438 7.78125 -1.640625 C 7.644531 -1.253906 7.398438 -0.941406 7.046875 -0.703125 C 6.722656 -0.460938 6.347656 -0.285156 5.921875 -0.171875 C 5.503906 -0.0546875 5.03125 0 4.5 0 C 3.976562 0 3.503906 -0.0546875 3.078125 -0.171875 C 2.660156 -0.285156 2.285156 -0.460938 1.953125 -0.703125 C 1.609375 -0.941406 1.363281 -1.253906 1.21875 -1.640625 C 1.070312 -2.035156 1 -2.679688 1 -3.578125 Z M 1 -3.578125 "/>
61
+ </symbol>
62
+ <symbol overflow="visible" id="glyph2-3">
63
+ <path style="stroke:none;" d=""/>
64
+ </symbol>
65
+ <symbol overflow="visible" id="glyph2-4">
66
+ <path style="stroke:none;" d="M 7 -6 L 7 -5 C 6.539062 -5.332031 6.078125 -5.582031 5.609375 -5.75 C 5.140625 -5.914062 4.660156 -6 4.171875 -6 C 3.441406 -6 2.894531 -5.914062 2.53125 -5.75 C 2.175781 -5.582031 2 -5.328125 2 -4.984375 C 2.007812 -4.773438 2.15625 -4.609375 2.4375 -4.484375 C 2.71875 -4.367188 3.410156 -4.238281 4.515625 -4.09375 L 5.1875 -4.03125 C 5.789062 -3.914062 6.242188 -3.6875 6.546875 -3.34375 C 6.859375 -3.007812 7.007812 -2.570312 7 -2.03125 C 7 -1.394531 6.707031 -0.894531 6.125 -0.53125 C 5.550781 -0.175781 4.75 0 3.71875 0 C 3.3125 0 2.882812 -0.0820312 2.4375 -0.25 C 2 -0.414062 1.519531 -0.664062 1 -1 L 1 -2 C 1.539062 -1.664062 2.0625 -1.414062 2.5625 -1.25 C 3.0625 -1.082031 3.53125 -1 3.96875 -1 C 4.613281 -1 5.113281 -1.09375 5.46875 -1.28125 C 5.820312 -1.476562 6 -1.753906 6 -2.109375 C 6 -2.609375 5.257812 -2.957031 3.78125 -3.15625 L 3.703125 -3.171875 L 3.078125 -3.234375 C 2.359375 -3.359375 1.832031 -3.5625 1.5 -3.84375 C 1.164062 -4.132812 1 -4.53125 1 -5.03125 C 1 -5.65625 1.285156 -6.140625 1.859375 -6.484375 C 2.441406 -6.828125 3.265625 -7 4.328125 -7 C 4.804688 -7 5.265625 -6.914062 5.703125 -6.75 C 6.140625 -6.582031 6.570312 -6.332031 7 -6 Z M 7 -6 "/>
67
+ </symbol>
68
+ <symbol overflow="visible" id="glyph2-5">
69
+ <path style="stroke:none;" d="M 4.765625 -3 L 4.328125 -3 C 3.554688 -3 2.972656 -2.910156 2.578125 -2.734375 C 2.191406 -2.566406 2 -2.3125 2 -1.96875 C 2 -1.664062 2.144531 -1.425781 2.4375 -1.25 C 2.726562 -1.082031 3.132812 -1 3.65625 -1 C 4.382812 -1 4.957031 -1.160156 5.375 -1.484375 C 5.789062 -1.804688 6 -2.25 6 -2.8125 L 6 -3 Z M 7 -3.53125 L 7 0 L 6 0 L 6 -1.1875 C 5.738281 -0.78125 5.40625 -0.476562 5 -0.28125 C 4.59375 -0.09375 4.101562 0 3.53125 0 C 2.757812 0 2.144531 -0.171875 1.6875 -0.515625 C 1.226562 -0.867188 1 -1.335938 1 -1.921875 C 1 -2.609375 1.269531 -3.125 1.8125 -3.46875 C 2.363281 -3.820312 3.164062 -4 4.21875 -4 L 6 -4 L 6 -4.15625 C 6 -4.800781 5.863281 -5.269531 5.59375 -5.5625 C 5.320312 -5.851562 4.882812 -6 4.28125 -6 C 3.90625 -6 3.519531 -5.910156 3.125 -5.734375 C 2.738281 -5.566406 2.363281 -5.320312 2 -5 L 2 -6 C 2.40625 -6.332031 2.789062 -6.582031 3.15625 -6.75 C 3.53125 -6.914062 3.890625 -7 4.234375 -7 C 4.785156 -7 5.253906 -6.90625 5.640625 -6.71875 C 6.023438 -6.53125 6.335938 -6.25 6.578125 -5.875 C 6.734375 -5.644531 6.84375 -5.363281 6.90625 -5.03125 C 6.96875 -4.695312 7 -4.195312 7 -3.53125 Z M 7 -3.53125 "/>
70
+ </symbol>
71
+ <symbol overflow="visible" id="glyph2-6">
72
+ <path style="stroke:none;" d="M 6 -3.5 C 6 -4.320312 5.832031 -4.941406 5.5 -5.359375 C 5.164062 -5.785156 4.679688 -6 4.046875 -6 C 3.378906 -6 2.867188 -5.785156 2.515625 -5.359375 C 2.171875 -4.941406 2 -4.320312 2 -3.5 C 2 -2.6875 2.175781 -2.066406 2.53125 -1.640625 C 2.882812 -1.210938 3.394531 -1 4.0625 -1 C 4.6875 -1 5.164062 -1.210938 5.5 -1.640625 C 5.832031 -2.066406 6 -2.6875 6 -3.5 Z M 7 -0.515625 C 7 0.640625 6.75 1.515625 6.25 2.109375 C 5.75 2.703125 5.015625 3 4.046875 3 C 3.722656 3 3.382812 2.910156 3.03125 2.734375 C 2.6875 2.566406 2.34375 2.320312 2 2 L 2 1 C 2.425781 1.34375 2.8125 1.59375 3.15625 1.75 C 3.507812 1.914062 3.832031 2 4.125 2 C 4.78125 2 5.253906 1.8125 5.546875 1.4375 C 5.847656 1.0625 6 0.46875 6 -0.34375 L 6 -1.1875 C 5.800781 -0.789062 5.53125 -0.492188 5.1875 -0.296875 C 4.84375 -0.0976562 4.421875 0 3.921875 0 C 3.035156 0 2.328125 -0.316406 1.796875 -0.953125 C 1.265625 -1.585938 1 -2.4375 1 -3.5 C 1 -4.5625 1.265625 -5.410156 1.796875 -6.046875 C 2.328125 -6.679688 3.035156 -7 3.921875 -7 C 4.410156 -7 4.828125 -6.90625 5.171875 -6.71875 C 5.515625 -6.539062 5.789062 -6.257812 6 -5.875 L 6 -7 L 7 -7 Z M 7 -0.515625 "/>
73
+ </symbol>
74
+ <symbol overflow="visible" id="glyph2-7">
75
+ <path style="stroke:none;" d="M 7 -3.625 L 7 -3 L 1.96875 -3 L 1.96875 -2.984375 C 1.96875 -2.347656 2.179688 -1.859375 2.609375 -1.515625 C 3.035156 -1.171875 3.632812 -1 4.40625 -1 C 4.789062 -1 5.195312 -1.082031 5.625 -1.25 C 6.050781 -1.414062 6.507812 -1.664062 7 -2 L 7 -1 C 6.550781 -0.664062 6.117188 -0.414062 5.703125 -0.25 C 5.296875 -0.0820312 4.898438 0 4.515625 0 C 3.410156 0 2.546875 -0.304688 1.921875 -0.921875 C 1.304688 -1.546875 1 -2.40625 1 -3.5 C 1 -4.5625 1.289062 -5.410156 1.875 -6.046875 C 2.457031 -6.679688 3.234375 -7 4.203125 -7 C 5.066406 -7 5.75 -6.695312 6.25 -6.09375 C 6.75 -5.488281 7 -4.664062 7 -3.625 Z M 6 -4 C 5.976562 -4.65625 5.804688 -5.148438 5.484375 -5.484375 C 5.171875 -5.828125 4.71875 -6 4.125 -6 C 3.53125 -6 3.046875 -5.820312 2.671875 -5.46875 C 2.296875 -5.113281 2.070312 -4.625 2 -4 Z M 6 -4 "/>
76
+ </symbol>
77
+ <symbol overflow="visible" id="glyph3-0">
78
+ <path style="stroke:none;" d="M 3.453125 3.625 C 3.378906 3.851562 3.25 4.050781 3.0625 4.21875 C 2.875 4.382812 2.5 4.585938 1.9375 4.828125 L 0 6 L 0 4.84375 L 1.703125 3.796875 C 2.179688 3.535156 2.492188 3.328125 2.640625 3.171875 C 2.796875 3.015625 2.882812 2.832031 2.90625 2.625 L 3 2 L 0 2 L 0 1 L 6 1 L 6 2.84375 C 6 3.539062 5.878906 4.070312 5.640625 4.4375 C 5.398438 4.8125 5.054688 5 4.609375 5 C 4.285156 5 4.019531 4.878906 3.8125 4.640625 C 3.613281 4.398438 3.492188 4.0625 3.453125 3.625 Z M 5 2 L 4 2 L 4 2.875 C 4 3.25 4.039062 3.53125 4.125 3.71875 C 4.207031 3.90625 4.332031 4 4.5 4 C 4.65625 4 4.773438 3.898438 4.859375 3.703125 C 4.953125 3.503906 5 3.21875 5 2.84375 Z M 5 2 "/>
79
+ </symbol>
80
+ <symbol overflow="visible" id="glyph3-1">
81
+ <path style="stroke:none;" d="M 1 2.34375 C 1 2.957031 1.140625 3.382812 1.421875 3.625 C 1.710938 3.875 2.238281 4 3 4 C 3.757812 4 4.28125 3.875 4.5625 3.625 C 4.851562 3.382812 5 2.957031 5 2.34375 L 5 2 L 1 2 Z M 6 2.359375 C 6 3.265625 5.753906 3.929688 5.265625 4.359375 C 4.773438 4.785156 4.019531 5 3 5 C 1.96875 5 1.207031 4.785156 0.71875 4.359375 C 0.238281 3.929688 0 3.265625 0 2.359375 L 0 1 L 6 1 Z M 6 2.359375 "/>
82
+ </symbol>
83
+ <symbol overflow="visible" id="glyph3-2">
84
+ <path style="stroke:none;" d="M 6 0 L 6 5 L 5 5 L 5 3 L 0 3 L 0 2 L 5 2 L 5 0 Z M 6 0 "/>
85
+ </symbol>
86
+ <symbol overflow="visible" id="glyph3-3">
87
+ <path style="stroke:none;" d="M 3 4 C 3.71875 4 4.226562 3.921875 4.53125 3.765625 C 4.84375 3.609375 5 3.351562 5 3 C 5 2.644531 4.84375 2.390625 4.53125 2.234375 C 4.226562 2.078125 3.71875 2 3 2 C 2.28125 2 1.765625 2.078125 1.453125 2.234375 C 1.148438 2.390625 1 2.644531 1 3 C 1 3.351562 1.148438 3.609375 1.453125 3.765625 C 1.765625 3.921875 2.28125 4 3 4 Z M 3 5 C 1.988281 5 1.234375 4.832031 0.734375 4.5 C 0.242188 4.175781 0 3.675781 0 3 C 0 2.320312 0.242188 1.816406 0.734375 1.484375 C 1.234375 1.160156 1.988281 1 3 1 C 4.007812 1 4.757812 1.160156 5.25 1.484375 C 5.75 1.816406 6 2.320312 6 3 C 6 3.675781 5.75 4.175781 5.25 4.5 C 4.757812 4.832031 4.007812 5 3 5 Z M 3 5 "/>
88
+ </symbol>
89
+ <symbol overflow="visible" id="glyph3-4">
90
+ <path style="stroke:none;" d="M 6 1 L 6 2 L 1 2 L 1 5 L 0 5 L 0 1 Z M 6 1 "/>
91
+ </symbol>
92
+ <symbol overflow="visible" id="glyph3-5">
93
+ <path style="stroke:none;" d=""/>
94
+ </symbol>
95
+ <symbol overflow="visible" id="glyph3-6">
96
+ <path style="stroke:none;" d="M 6 3 L 6 4 L -1 1 L -1 0 Z M 6 3 "/>
97
+ </symbol>
98
+ <symbol overflow="visible" id="glyph3-7">
99
+ <path style="stroke:none;" d="M 2 2 L 1 2 L 1 2.9375 C 1 3.320312 1.035156 3.59375 1.109375 3.75 C 1.179688 3.914062 1.304688 4 1.484375 4 C 1.660156 4 1.789062 3.910156 1.875 3.734375 C 1.957031 3.566406 2 3.300781 2 2.9375 Z M 5 2 L 3 2 L 3 2.921875 C 3 3.296875 3.082031 3.566406 3.25 3.734375 C 3.414062 3.910156 3.679688 4 4.046875 4 C 4.390625 4 4.632812 3.914062 4.78125 3.75 C 4.925781 3.582031 5 3.304688 5 2.921875 Z M 6 1 L 6 2.9375 C 6 3.59375 5.832031 4.097656 5.5 4.453125 C 5.175781 4.816406 4.710938 5 4.109375 5 C 3.648438 5 3.285156 4.894531 3.015625 4.6875 C 2.753906 4.488281 2.59375 4.1875 2.53125 3.78125 C 2.488281 4.164062 2.359375 4.460938 2.140625 4.671875 C 1.921875 4.890625 1.640625 5 1.296875 5 C 0.867188 5 0.546875 4.828125 0.328125 4.484375 C 0.109375 4.140625 0 3.625 0 2.9375 L 0 1 Z M 6 1 "/>
100
+ </symbol>
101
+ <symbol overflow="visible" id="glyph3-8">
102
+ <path style="stroke:none;" d="M 6 1 L 6 4 L 5 4 L 5 3 L 1 3 L 1 4 L 0 4 L 0 1 L 1 1 L 1 2 L 5 2 L 5 1 Z M 6 1 "/>
103
+ </symbol>
104
+ <symbol overflow="visible" id="glyph3-9">
105
+ <path style="stroke:none;" d="M 6 1 L 6 5 L 5 5 L 5 2 L 3 2 L 3 5 L 2 5 L 2 2 L 1 2 L 1 5 L 0 5 L 0 1 Z M 6 1 "/>
106
+ </symbol>
107
+ <symbol overflow="visible" id="glyph3-10">
108
+ <path style="stroke:none;" d="M 6 1 L 6 2 L 3.328125 2 L 6 4.46875 L 6 5.390625 L 3.546875 3.125 L 0 5.453125 L 0 4.25 L 2.8125 2.421875 L 2.34375 2 L 0 2 L 0 1 Z M 6 1 "/>
109
+ </symbol>
110
+ <symbol overflow="visible" id="glyph4-0">
111
+ <path style="stroke:none;" d=""/>
112
+ </symbol>
113
+ <symbol overflow="visible" id="glyph4-1">
114
+ <path style="stroke:none;" d="M 7 -7 L 7 -6 C 6.550781 -6.332031 6.097656 -6.582031 5.640625 -6.75 C 5.191406 -6.914062 4.734375 -7 4.265625 -7 C 3.566406 -7 3.015625 -6.882812 2.609375 -6.65625 C 2.203125 -6.425781 2 -6.113281 2 -5.71875 C 2.007812 -5.445312 2.140625 -5.226562 2.390625 -5.0625 C 2.648438 -4.90625 3.125 -4.765625 3.8125 -4.640625 L 4.5625 -4.53125 C 5.414062 -4.34375 6.035156 -4.0625 6.421875 -3.6875 C 6.816406 -3.320312 7.007812 -2.820312 7 -2.1875 C 7 -1.476562 6.71875 -0.9375 6.15625 -0.5625 C 5.59375 -0.1875 4.773438 0 3.703125 0 C 3.253906 0 2.804688 -0.0820312 2.359375 -0.25 C 1.910156 -0.414062 1.457031 -0.664062 1 -1 L 1 -2 C 1.507812 -1.65625 1.992188 -1.398438 2.453125 -1.234375 C 2.910156 -1.078125 3.375 -1 3.84375 -1 C 4.519531 -1 5.046875 -1.109375 5.421875 -1.328125 C 5.804688 -1.554688 6 -1.875 6 -2.28125 C 6 -2.65625 5.863281 -2.9375 5.59375 -3.125 C 5.320312 -3.320312 4.847656 -3.472656 4.171875 -3.578125 L 3.421875 -3.6875 C 2.578125 -3.84375 1.960938 -4.082031 1.578125 -4.40625 C 1.191406 -4.738281 1 -5.179688 1 -5.734375 C 1 -6.421875 1.304688 -6.96875 1.921875 -7.375 C 2.535156 -7.789062 3.351562 -8 4.375 -8 C 4.769531 -8 5.1875 -7.914062 5.625 -7.75 C 6.0625 -7.582031 6.519531 -7.332031 7 -7 Z M 7 -7 "/>
115
+ </symbol>
116
+ <symbol overflow="visible" id="glyph4-2">
117
+ <path style="stroke:none;" d="M 4.484375 -2.171875 C 4.328125 -1.753906 4.125 -1.207031 3.875 -0.53125 C 3.539062 0.394531 3.3125 0.960938 3.1875 1.171875 C 3.03125 1.453125 2.832031 1.660156 2.59375 1.796875 C 2.351562 1.929688 2.078125 2 1.765625 2 L 1 2 L 1 1 L 1.546875 1 C 1.828125 1 2.046875 0.921875 2.203125 0.765625 C 2.359375 0.609375 2.554688 0.175781 2.796875 -0.53125 L 0.75 -6 L 1.796875 -6 L 3.359375 -2.015625 L 4.9375 -6 L 6 -6 Z M 4.484375 -2.171875 "/>
118
+ </symbol>
119
+ <symbol overflow="visible" id="glyph4-3">
120
+ <path style="stroke:none;" d="M 6 -6 L 6 -5 C 5.632812 -5 5.265625 -5 4.890625 -5 C 4.515625 -5 4.128906 -5 3.734375 -5 C 3.148438 -5 2.710938 -4.9375 2.421875 -4.8125 C 2.140625 -4.695312 2 -4.519531 2 -4.28125 C 2.007812 -4.101562 2.117188 -3.960938 2.328125 -3.859375 C 2.535156 -3.753906 3.050781 -3.628906 3.875 -3.484375 L 4.375 -3.390625 C 4.90625 -3.296875 5.304688 -3.113281 5.578125 -2.84375 C 5.859375 -2.582031 6 -2.238281 6 -1.8125 C 6 -1.238281 5.757812 -0.789062 5.28125 -0.46875 C 4.800781 -0.15625 4.128906 0 3.265625 0 C 2.929688 0 2.578125 0 2.203125 0 C 1.835938 0 1.4375 0 1 0 L 1 -1 C 1.4375 -1 1.851562 -1 2.25 -1 C 2.644531 -1 3.019531 -1 3.375 -1 C 3.894531 -1 4.296875 -1.066406 4.578125 -1.203125 C 4.859375 -1.347656 5 -1.546875 5 -1.796875 C 5 -2.160156 4.441406 -2.410156 3.328125 -2.546875 L 3.28125 -2.5625 L 2.8125 -2.640625 C 2.1875 -2.742188 1.726562 -2.925781 1.4375 -3.1875 C 1.144531 -3.445312 1 -3.796875 1 -4.234375 C 1 -4.796875 1.238281 -5.226562 1.71875 -5.53125 C 2.195312 -5.84375 2.882812 -6 3.78125 -6 C 4.175781 -6 4.554688 -6 4.921875 -6 C 5.285156 -6 5.644531 -6 6 -6 Z M 6 -6 "/>
121
+ </symbol>
122
+ <symbol overflow="visible" id="glyph4-4">
123
+ <path style="stroke:none;" d="M 3 -8 L 3 -6 L 5 -6 L 5 -5 L 3 -5 L 3 -2.0625 C 3 -1.664062 3.070312 -1.390625 3.21875 -1.234375 C 3.375 -1.078125 3.640625 -1 4.015625 -1 L 5 -1 L 5 0 L 3.921875 0 C 3.210938 0 2.710938 -0.148438 2.421875 -0.453125 C 2.140625 -0.765625 2 -1.300781 2 -2.0625 L 2 -5 L 0 -5 L 0 -6 L 2 -6 L 2 -8 Z M 3 -8 "/>
124
+ </symbol>
125
+ <symbol overflow="visible" id="glyph4-5">
126
+ <path style="stroke:none;" d="M 6 -3.625 L 6 -3 L 1.96875 -3 L 1.96875 -2.953125 C 1.96875 -2.328125 2.132812 -1.84375 2.46875 -1.5 C 2.8125 -1.164062 3.296875 -1 3.921875 -1 C 4.234375 -1 4.5625 -1 4.90625 -1 C 5.25 -1 5.613281 -1 6 -1 L 6 0 C 5.625 0 5.265625 0 4.921875 0 C 4.585938 0 4.257812 0 3.9375 0 C 3.007812 0 2.285156 -0.265625 1.765625 -0.796875 C 1.253906 -1.328125 1 -2.0625 1 -3 C 1 -3.914062 1.238281 -4.644531 1.71875 -5.1875 C 2.207031 -5.726562 2.859375 -6 3.671875 -6 C 4.390625 -6 4.957031 -5.785156 5.375 -5.359375 C 5.789062 -4.941406 6 -4.363281 6 -3.625 Z M 5 -4 C 4.988281 -4.320312 4.863281 -4.566406 4.625 -4.734375 C 4.382812 -4.910156 4.039062 -5 3.59375 -5 C 3.15625 -5 2.789062 -4.910156 2.5 -4.734375 C 2.21875 -4.554688 2.050781 -4.3125 2 -4 Z M 5 -4 "/>
127
+ </symbol>
128
+ <symbol overflow="visible" id="glyph4-6">
129
+ <path style="stroke:none;" d="M 3.828125 -5.109375 C 3.929688 -5.410156 4.066406 -5.632812 4.234375 -5.78125 C 4.398438 -5.925781 4.601562 -6 4.84375 -6 C 5.257812 -6 5.554688 -5.804688 5.734375 -5.421875 C 5.910156 -5.046875 6 -4.328125 6 -3.265625 L 6 0 L 5 0 L 5 -3.234375 C 5 -4.023438 4.960938 -4.515625 4.890625 -4.703125 C 4.828125 -4.898438 4.707031 -5 4.53125 -5 C 4.320312 -5 4.179688 -4.894531 4.109375 -4.6875 C 4.035156 -4.488281 4 -4.003906 4 -3.234375 L 4 0 L 3 0 L 3 -3.234375 C 3 -4.035156 2.960938 -4.53125 2.890625 -4.71875 C 2.816406 -4.90625 2.6875 -5 2.5 -5 C 2.3125 -5 2.179688 -4.894531 2.109375 -4.6875 C 2.035156 -4.488281 2 -4.003906 2 -3.234375 L 2 0 L 1 0 L 1 -6 L 2 -6 L 2 -5.25 C 2.101562 -5.488281 2.226562 -5.671875 2.375 -5.796875 C 2.53125 -5.929688 2.703125 -6 2.890625 -6 C 3.117188 -6 3.3125 -5.925781 3.46875 -5.78125 C 3.625 -5.632812 3.742188 -5.410156 3.828125 -5.109375 Z M 3.828125 -5.109375 "/>
130
+ </symbol>
131
+ <symbol overflow="visible" id="glyph4-7">
132
+ <path style="stroke:none;" d="M 1 -8 L 2.234375 -8 L 4 -4.046875 L 5.765625 -8 L 7 -8 L 7 0 L 6 0 L 6 -6.484375 L 4.421875 -3 L 3.578125 -3 L 2 -6.484375 L 2 0 L 1 0 Z M 1 -8 "/>
133
+ </symbol>
134
+ <symbol overflow="visible" id="glyph4-8">
135
+ <path style="stroke:none;" d="M 1 -6 L 4 -6 L 4 -1 L 6 -1 L 6 0 L 1 0 L 1 -1 L 3 -1 L 3 -5 L 1 -5 Z M 3 -9 L 4 -9 L 4 -8 L 3 -8 Z M 3 -9 "/>
136
+ </symbol>
137
+ <symbol overflow="visible" id="glyph4-9">
138
+ <path style="stroke:none;" d="M 6 -3.515625 L 6 0 L 5 0 L 5 -3.515625 C 5 -4.023438 4.890625 -4.398438 4.671875 -4.640625 C 4.453125 -4.878906 4.113281 -5 3.65625 -5 C 3.125 -5 2.710938 -4.84375 2.421875 -4.53125 C 2.140625 -4.226562 2 -3.785156 2 -3.203125 L 2 0 L 1 0 L 1 -6 L 2 -6 L 2 -4.828125 C 2.195312 -5.210938 2.460938 -5.503906 2.796875 -5.703125 C 3.128906 -5.898438 3.519531 -6 3.96875 -6 C 4.65625 -6 5.164062 -5.789062 5.5 -5.375 C 5.832031 -4.96875 6 -4.347656 6 -3.515625 Z M 6 -3.515625 "/>
139
+ </symbol>
140
+ <symbol overflow="visible" id="glyph4-10">
141
+ <path style="stroke:none;" d="M 3 -2 L 4 -2 L 4 0 L 3 0 Z M 3 -2 "/>
142
+ </symbol>
143
+ <symbol overflow="visible" id="glyph4-11">
144
+ <path style="stroke:none;" d="M 4 -4.5 C 4 -4.632812 4.046875 -4.75 4.140625 -4.84375 C 4.234375 -4.945312 4.347656 -5 4.484375 -5 C 4.628906 -5 4.75 -4.945312 4.84375 -4.84375 C 4.945312 -4.75 5 -4.632812 5 -4.5 C 5 -4.363281 4.945312 -4.242188 4.84375 -4.140625 C 4.75 -4.046875 4.628906 -4 4.484375 -4 C 4.347656 -4 4.234375 -4.046875 4.140625 -4.140625 C 4.046875 -4.234375 4 -4.351562 4 -4.5 Z M 4 -7 C 3.320312 -7 2.816406 -6.75 2.484375 -6.25 C 2.160156 -5.757812 2 -5.007812 2 -4 C 2 -2.988281 2.160156 -2.234375 2.484375 -1.734375 C 2.816406 -1.242188 3.320312 -1 4 -1 C 4.675781 -1 5.175781 -1.242188 5.5 -1.734375 C 5.832031 -2.234375 6 -2.988281 6 -4 C 6 -5.007812 5.832031 -5.757812 5.5 -6.25 C 5.175781 -6.75 4.675781 -7 4 -7 Z M 4 -8 C 4.988281 -8 5.734375 -7.660156 6.234375 -6.984375 C 6.742188 -6.304688 7 -5.3125 7 -4 C 7 -2.6875 6.742188 -1.691406 6.234375 -1.015625 C 5.734375 -0.335938 4.988281 0 4 0 C 3.007812 0 2.257812 -0.335938 1.75 -1.015625 C 1.25 -1.691406 1 -2.6875 1 -4 C 1 -5.3125 1.25 -6.304688 1.75 -6.984375 C 2.257812 -7.660156 3.007812 -8 4 -8 Z M 4 -8 "/>
145
+ </symbol>
146
+ <symbol overflow="visible" id="glyph4-12">
147
+ <path style="stroke:none;" d="M 4 -6.640625 L 2.921875 -3 L 5.078125 -3 Z M 3.359375 -8 L 4.640625 -8 L 7 0 L 5.953125 0 L 5.359375 -2 L 2.625 -2 L 2.046875 0 L 1 0 Z M 3.359375 -8 "/>
148
+ </symbol>
149
+ <symbol overflow="visible" id="glyph4-13">
150
+ <path style="stroke:none;" d="M 1 -6 L 2.046875 -6 L 3.5 -0.96875 L 4.953125 -6 L 6 -6 L 4.078125 0 L 2.921875 0 Z M 1 -6 "/>
151
+ </symbol>
152
+ <symbol overflow="visible" id="glyph4-14">
153
+ <path style="stroke:none;" d="M 5 -3 C 5 -3.65625 4.875 -4.148438 4.625 -4.484375 C 4.375 -4.828125 4.007812 -5 3.53125 -5 C 3.03125 -5 2.648438 -4.828125 2.390625 -4.484375 C 2.128906 -4.148438 2 -3.65625 2 -3 C 2 -2.351562 2.128906 -1.859375 2.390625 -1.515625 C 2.660156 -1.171875 3.046875 -1 3.546875 -1 C 4.015625 -1 4.375 -1.171875 4.625 -1.515625 C 4.875 -1.859375 5 -2.351562 5 -3 Z M 6 -0.515625 C 6 0.304688 5.796875 0.929688 5.390625 1.359375 C 4.992188 1.785156 4.410156 2 3.640625 2 C 3.378906 2 3.109375 2 2.828125 2 C 2.554688 2 2.28125 2 2 2 L 2 1 C 2.320312 1 2.613281 1 2.875 1 C 3.132812 1 3.375 1 3.59375 1 C 4.082031 1 4.4375 0.890625 4.65625 0.671875 C 4.882812 0.460938 5 0.125 5 -0.34375 L 5 -1.15625 C 4.84375 -0.769531 4.625 -0.476562 4.34375 -0.28125 C 4.070312 -0.09375 3.738281 0 3.34375 0 C 2.632812 0 2.066406 -0.269531 1.640625 -0.8125 C 1.210938 -1.351562 1 -2.082031 1 -3 C 1 -3.914062 1.210938 -4.644531 1.640625 -5.1875 C 2.066406 -5.726562 2.632812 -6 3.34375 -6 C 3.726562 -6 4.054688 -5.910156 4.328125 -5.734375 C 4.609375 -5.554688 4.832031 -5.28125 5 -4.90625 L 5 -6 L 6 -6 Z M 6 -0.515625 "/>
154
+ </symbol>
155
+ <symbol overflow="visible" id="glyph4-15">
156
+ <path style="stroke:none;" d="M 2.546875 -1 L 7.046875 -1 L 7.046875 0 L 1 0 L 1 -1 C 1.90625 -1.664062 2.695312 -2.253906 3.375 -2.765625 C 4.050781 -3.273438 4.515625 -3.640625 4.765625 -3.859375 C 5.253906 -4.265625 5.582031 -4.59375 5.75 -4.84375 C 5.914062 -5.101562 6 -5.367188 6 -5.640625 C 6 -6.066406 5.816406 -6.398438 5.453125 -6.640625 C 5.097656 -6.878906 4.601562 -7 3.96875 -7 C 3.519531 -7 3.050781 -6.914062 2.5625 -6.75 C 2.070312 -6.582031 1.550781 -6.332031 1 -6 L 1 -7 C 1.46875 -7.332031 1.925781 -7.582031 2.375 -7.75 C 2.820312 -7.914062 3.265625 -8 3.703125 -8 C 4.691406 -8 5.488281 -7.796875 6.09375 -7.390625 C 6.695312 -6.992188 7 -6.46875 7 -5.8125 C 7.019531 -5.476562 6.957031 -5.144531 6.8125 -4.8125 C 6.664062 -4.476562 6.429688 -4.113281 6.109375 -3.71875 C 5.921875 -3.488281 5.566406 -3.175781 5.046875 -2.78125 C 4.523438 -2.382812 3.691406 -1.789062 2.546875 -1 Z M 2.546875 -1 "/>
157
+ </symbol>
158
+ <symbol overflow="visible" id="glyph4-16">
159
+ <path style="stroke:none;" d="M 4.078125 -3 L 3.75 -3 C 3.164062 -3 2.726562 -2.910156 2.4375 -2.734375 C 2.144531 -2.566406 2 -2.3125 2 -1.96875 C 2 -1.664062 2.109375 -1.425781 2.328125 -1.25 C 2.546875 -1.082031 2.847656 -1 3.234375 -1 C 3.785156 -1 4.21875 -1.160156 4.53125 -1.484375 C 4.84375 -1.804688 5 -2.25 5 -2.8125 L 5 -3 Z M 6 -3.53125 L 6 0 L 5 0 L 5 -1.1875 C 4.789062 -0.78125 4.523438 -0.476562 4.203125 -0.28125 C 3.878906 -0.09375 3.488281 0 3.03125 0 C 2.40625 0 1.910156 -0.171875 1.546875 -0.515625 C 1.179688 -0.867188 1 -1.335938 1 -1.921875 C 1 -2.609375 1.222656 -3.125 1.671875 -3.46875 C 2.128906 -3.820312 2.796875 -4 3.671875 -4 L 5 -4 L 5 -4.15625 C 5 -4.445312 4.863281 -4.660156 4.59375 -4.796875 C 4.320312 -4.929688 3.882812 -5 3.28125 -5 C 2.90625 -5 2.519531 -5 2.125 -5 C 1.738281 -5 1.363281 -5 1 -5 L 1 -6 C 1.40625 -6 1.789062 -6 2.15625 -6 C 2.53125 -6 2.890625 -6 3.234375 -6 C 3.785156 -6 4.253906 -5.929688 4.640625 -5.796875 C 5.023438 -5.660156 5.335938 -5.460938 5.578125 -5.203125 C 5.734375 -5.035156 5.84375 -4.832031 5.90625 -4.59375 C 5.96875 -4.363281 6 -4.007812 6 -3.53125 Z M 6 -3.53125 "/>
160
+ </symbol>
161
+ <symbol overflow="visible" id="glyph4-17">
162
+ <path style="stroke:none;" d="M 6 -6 L 4 -3.125 L 6 0 L 4.8125 0 L 3.5 -2.0625 L 2.1875 0 L 1 0 L 3 -3.125 L 1 -6 L 2.21875 -6 L 3.5 -4.15625 L 4.78125 -6 Z M 6 -6 "/>
163
+ </symbol>
164
+ <symbol overflow="visible" id="glyph4-18">
165
+ <path style="stroke:none;" d="M 5.390625 -4.5 C 5.910156 -4.351562 6.304688 -4.097656 6.578125 -3.734375 C 6.859375 -3.378906 7 -2.929688 7 -2.390625 C 7 -1.648438 6.703125 -1.066406 6.109375 -0.640625 C 5.523438 -0.210938 4.710938 0 3.671875 0 C 3.234375 0 2.785156 -0.0820312 2.328125 -0.25 C 1.878906 -0.425781 1.4375 -0.675781 1 -1 L 1 -2 C 1.457031 -1.664062 1.90625 -1.414062 2.34375 -1.25 C 2.789062 -1.082031 3.238281 -1 3.6875 -1 C 4.425781 -1 4.992188 -1.128906 5.390625 -1.390625 C 5.796875 -1.648438 6 -2.023438 6 -2.515625 C 6 -2.972656 5.757812 -3.332031 5.28125 -3.59375 C 4.8125 -3.863281 4.175781 -4 3.375 -4 L 2 -4 L 2 -5 L 3.375 -5 C 4.195312 -5 4.835938 -5.082031 5.296875 -5.25 C 5.765625 -5.425781 6 -5.671875 6 -5.984375 C 6 -6.304688 5.816406 -6.554688 5.453125 -6.734375 C 5.085938 -6.910156 4.566406 -7 3.890625 -7 C 3.441406 -7 2.976562 -6.914062 2.5 -6.75 C 2.019531 -6.582031 1.519531 -6.332031 1 -6 L 1 -7 C 1.5625 -7.332031 2.0625 -7.582031 2.5 -7.75 C 2.9375 -7.914062 3.328125 -8 3.671875 -8 C 4.679688 -8 5.488281 -7.820312 6.09375 -7.46875 C 6.695312 -7.113281 7 -6.644531 7 -6.0625 C 7 -5.664062 6.859375 -5.332031 6.578125 -5.0625 C 6.304688 -4.800781 5.910156 -4.613281 5.390625 -4.5 Z M 5.390625 -4.5 "/>
166
+ </symbol>
167
+ <symbol overflow="visible" id="glyph4-19">
168
+ <path style="stroke:none;" d="M 1 -8 L 2 -8 L 2 -1 L 7 -1 L 7 0 L 1 0 Z M 1 -8 "/>
169
+ </symbol>
170
+ <symbol overflow="visible" id="glyph4-20">
171
+ <path style="stroke:none;" d="M 1 -8 L 6 -8 L 6 -7 L 2 -7 L 2 -4.8125 C 2.207031 -4.875 2.414062 -4.921875 2.625 -4.953125 C 2.84375 -4.984375 3.0625 -5 3.28125 -5 C 4.425781 -5 5.332031 -4.773438 6 -4.328125 C 6.664062 -3.878906 7 -3.269531 7 -2.5 C 7 -1.726562 6.691406 -1.117188 6.078125 -0.671875 C 5.460938 -0.222656 4.617188 0 3.546875 0 C 3.035156 0 2.566406 0 2.140625 0 C 1.710938 0 1.332031 0 1 0 L 1 -1 C 1.425781 -1 1.851562 -1 2.28125 -1 C 2.707031 -1 3.144531 -1 3.59375 -1 C 4.363281 -1 4.957031 -1.128906 5.375 -1.390625 C 5.789062 -1.648438 6 -2.019531 6 -2.5 C 6 -2.96875 5.757812 -3.332031 5.28125 -3.59375 C 4.8125 -3.863281 4.15625 -4 3.3125 -4 C 2.90625 -4 2.503906 -4 2.109375 -4 C 1.722656 -4 1.351562 -4 1 -4 Z M 1 -8 "/>
172
+ </symbol>
173
+ <symbol overflow="visible" id="glyph4-21">
174
+ <path style="stroke:none;" d="M 1 -3.25 L 1 -8 L 2 -8 L 2 -2.78125 C 2 -2.40625 2.015625 -2.132812 2.046875 -1.96875 C 2.078125 -1.8125 2.128906 -1.691406 2.203125 -1.609375 C 2.359375 -1.410156 2.585938 -1.257812 2.890625 -1.15625 C 3.191406 -1.050781 3.5625 -1 4 -1 C 4.4375 -1 4.800781 -1.050781 5.09375 -1.15625 C 5.394531 -1.257812 5.628906 -1.410156 5.796875 -1.609375 C 5.867188 -1.691406 5.921875 -1.8125 5.953125 -1.96875 C 5.984375 -2.132812 6 -2.398438 6 -2.765625 L 6 -8 L 7 -8 L 7 -3.25 C 7 -2.425781 6.9375 -1.835938 6.8125 -1.484375 C 6.695312 -1.140625 6.488281 -0.851562 6.1875 -0.625 C 5.90625 -0.414062 5.582031 -0.257812 5.21875 -0.15625 C 4.851562 -0.0507812 4.445312 0 4 0 C 3.550781 0 3.144531 -0.0507812 2.78125 -0.15625 C 2.414062 -0.257812 2.09375 -0.414062 1.8125 -0.625 C 1.519531 -0.851562 1.3125 -1.144531 1.1875 -1.5 C 1.0625 -1.851562 1 -2.4375 1 -3.25 Z M 1 -3.25 "/>
175
+ </symbol>
176
+ <symbol overflow="visible" id="glyph4-22">
177
+ <path style="stroke:none;" d="M 6 -4 C 5.800781 -4 5.601562 -4.164062 5.40625 -4.5 C 5.207031 -4.832031 4.988281 -5 4.75 -5 C 4.175781 -5 3.738281 -4.835938 3.4375 -4.515625 C 3.144531 -4.191406 3 -3.726562 3 -3.125 L 3 0 L 2 0 L 2 -6 L 3 -6 L 3 -5 C 3.15625 -5.320312 3.390625 -5.566406 3.703125 -5.734375 C 4.015625 -5.910156 4.382812 -6 4.8125 -6 C 5.039062 -6 5.25 -6 5.4375 -6 C 5.632812 -6 5.820312 -5.664062 6 -5 Z M 6 -4 "/>
178
+ </symbol>
179
+ <symbol overflow="visible" id="glyph4-23">
180
+ <path style="stroke:none;" d="M 4 -4 C 3.363281 -4 2.867188 -3.867188 2.515625 -3.609375 C 2.171875 -3.347656 2 -2.976562 2 -2.5 C 2 -2.03125 2.175781 -1.660156 2.53125 -1.390625 C 2.882812 -1.128906 3.375 -1 4 -1 C 4.632812 -1 5.125 -1.128906 5.46875 -1.390625 C 5.820312 -1.648438 6 -2.019531 6 -2.5 C 6 -2.976562 5.820312 -3.347656 5.46875 -3.609375 C 5.113281 -3.867188 4.625 -4 4 -4 Z M 2.578125 -4.53125 C 2.078125 -4.632812 1.6875 -4.828125 1.40625 -5.109375 C 1.132812 -5.398438 1 -5.75 1 -6.15625 C 1 -6.71875 1.265625 -7.164062 1.796875 -7.5 C 2.335938 -7.832031 3.070312 -8 4 -8 C 4.925781 -8 5.65625 -7.832031 6.1875 -7.5 C 6.726562 -7.164062 7 -6.71875 7 -6.15625 C 7 -5.75 6.859375 -5.398438 6.578125 -5.109375 C 6.304688 -4.828125 5.921875 -4.632812 5.421875 -4.53125 C 5.929688 -4.40625 6.320312 -4.160156 6.59375 -3.796875 C 6.863281 -3.429688 7 -2.957031 7 -2.375 C 7 -1.625 6.734375 -1.039062 6.203125 -0.625 C 5.671875 -0.207031 4.9375 0 4 0 C 3.0625 0 2.328125 -0.207031 1.796875 -0.625 C 1.265625 -1.039062 1 -1.617188 1 -2.359375 C 1 -2.941406 1.132812 -3.414062 1.40625 -3.78125 C 1.675781 -4.15625 2.066406 -4.40625 2.578125 -4.53125 Z M 2 -5.984375 C 2 -5.671875 2.171875 -5.425781 2.515625 -5.25 C 2.859375 -5.082031 3.351562 -5 4 -5 C 4.644531 -5 5.140625 -5.082031 5.484375 -5.25 C 5.828125 -5.425781 6 -5.671875 6 -5.984375 C 6 -6.316406 5.828125 -6.566406 5.484375 -6.734375 C 5.148438 -6.910156 4.65625 -7 4 -7 C 3.351562 -7 2.859375 -6.910156 2.515625 -6.734375 C 2.171875 -6.566406 2 -6.316406 2 -5.984375 Z M 2 -5.984375 "/>
181
+ </symbol>
182
+ <symbol overflow="visible" id="glyph4-24">
183
+ <path style="stroke:none;" d="M 3.984375 -4 C 4.609375 -4 5.097656 -4.128906 5.453125 -4.390625 C 5.816406 -4.660156 6 -5.03125 6 -5.5 C 6 -5.96875 5.816406 -6.332031 5.453125 -6.59375 C 5.097656 -6.863281 4.609375 -7 3.984375 -7 C 3.328125 -7 2.832031 -6.867188 2.5 -6.609375 C 2.164062 -6.359375 2 -5.988281 2 -5.5 C 2 -5 2.160156 -4.625 2.484375 -4.375 C 2.816406 -4.125 3.316406 -4 3.984375 -4 Z M 1 0 L 1 -1 C 1.3125 -1 1.644531 -1 2 -1 C 2.351562 -1 2.71875 -1 3.09375 -1 C 4.050781 -1 4.773438 -1.269531 5.265625 -1.8125 C 5.753906 -2.351562 6 -3.148438 6 -4.203125 C 5.800781 -3.816406 5.519531 -3.519531 5.15625 -3.3125 C 4.789062 -3.101562 4.375 -3 3.90625 -3 C 2.976562 -3 2.257812 -3.21875 1.75 -3.65625 C 1.25 -4.09375 1 -4.710938 1 -5.515625 C 1 -6.304688 1.25 -6.914062 1.75 -7.34375 C 2.25 -7.78125 2.960938 -8 3.890625 -8 C 4.960938 -8 5.75 -7.675781 6.25 -7.03125 C 6.75 -6.382812 7 -5.375 7 -4 C 7 -2.695312 6.660156 -1.703125 5.984375 -1.015625 C 5.304688 -0.335938 4.320312 0 3.03125 0 C 2.6875 0 2.34375 0 2 0 C 1.65625 0 1.320312 0 1 0 Z M 1 0 "/>
184
+ </symbol>
185
+ <symbol overflow="visible" id="glyph4-25">
186
+ <path style="stroke:none;" d="M 1 -1 L 3 -1 L 3 -7 L 1 -7 L 1 -8 L 4 -8 L 4 -1 L 6 -1 L 6 0 L 1 0 Z M 1 -1 "/>
187
+ </symbol>
188
+ <symbol overflow="visible" id="glyph4-26">
189
+ <path style="stroke:none;" d="M 1 -8 L 7 -8 L 7 -7.546875 L 3.125 0 L 2 0 L 5.59375 -7 L 1 -7 Z M 1 -8 "/>
190
+ </symbol>
191
+ <symbol overflow="visible" id="glyph4-27">
192
+ <path style="stroke:none;" d="M 1 -8 L 6 -8 L 6 -7 L 4 -7 L 4 -1 L 6 -1 L 6 0 L 1 0 L 1 -1 L 3 -1 L 3 -7 L 1 -7 Z M 1 -8 "/>
193
+ </symbol>
194
+ <symbol overflow="visible" id="glyph4-28">
195
+ <path style="stroke:none;" d="M 5 -4.9375 L 5 -9 L 6 -9 L 6 0 L 5 0 L 5 -1.0625 C 4.832031 -0.71875 4.609375 -0.453125 4.328125 -0.265625 C 4.054688 -0.0859375 3.738281 0 3.375 0 C 2.632812 0 2.050781 -0.265625 1.625 -0.796875 C 1.207031 -1.335938 1 -2.078125 1 -3.015625 C 1 -3.941406 1.210938 -4.671875 1.640625 -5.203125 C 2.066406 -5.734375 2.644531 -6 3.375 -6 C 3.738281 -6 4.0625 -5.90625 4.34375 -5.71875 C 4.625 -5.539062 4.84375 -5.28125 5 -4.9375 Z M 2 -3 C 2 -2.34375 2.125 -1.84375 2.375 -1.5 C 2.625 -1.164062 2.992188 -1 3.484375 -1 C 3.984375 -1 4.359375 -1.164062 4.609375 -1.5 C 4.867188 -1.84375 5 -2.34375 5 -3 C 5 -3.65625 4.867188 -4.148438 4.609375 -4.484375 C 4.359375 -4.828125 3.984375 -5 3.484375 -5 C 2.992188 -5 2.625 -4.828125 2.375 -4.484375 C 2.125 -4.148438 2 -3.65625 2 -3 Z M 2 -3 "/>
196
+ </symbol>
197
+ <symbol overflow="visible" id="glyph4-29">
198
+ <path style="stroke:none;" d="M 3 -2.375 C 3 -1.914062 3.070312 -1.570312 3.21875 -1.34375 C 3.375 -1.113281 3.601562 -1 3.90625 -1 L 5 -1 L 5 0 L 3.8125 0 C 3.238281 0 2.789062 -0.203125 2.46875 -0.609375 C 2.15625 -1.023438 2 -1.613281 2 -2.375 L 2 -8 L 0 -8 L 0 -9 L 3 -9 Z M 3 -2.375 "/>
199
+ </symbol>
200
+ <symbol overflow="visible" id="glyph4-30">
201
+ <path style="stroke:none;" d="M 7 -8 L 7 -7 C 6.6875 -7 6.351562 -7 6 -7 C 5.644531 -7 5.28125 -7 4.90625 -7 C 3.945312 -7 3.222656 -6.726562 2.734375 -6.1875 C 2.242188 -5.644531 2 -4.847656 2 -3.796875 C 2.207031 -4.179688 2.488281 -4.476562 2.84375 -4.6875 C 3.207031 -4.894531 3.625 -5 4.09375 -5 C 5.019531 -5 5.734375 -4.78125 6.234375 -4.34375 C 6.742188 -3.914062 7 -3.300781 7 -2.5 C 7 -1.707031 6.742188 -1.09375 6.234375 -0.65625 C 5.734375 -0.21875 5.023438 0 4.109375 0 C 3.035156 0 2.25 -0.316406 1.75 -0.953125 C 1.25 -1.597656 1 -2.613281 1 -4 C 1 -5.300781 1.335938 -6.289062 2.015625 -6.96875 C 2.691406 -7.65625 3.675781 -8 4.96875 -8 C 5.3125 -8 5.65625 -8 6 -8 C 6.34375 -8 6.675781 -8 7 -8 Z M 4.03125 -4 C 3.394531 -4 2.894531 -3.863281 2.53125 -3.59375 C 2.175781 -3.332031 2 -2.96875 2 -2.5 C 2 -2.03125 2.175781 -1.660156 2.53125 -1.390625 C 2.894531 -1.128906 3.394531 -1 4.03125 -1 C 4.675781 -1 5.164062 -1.125 5.5 -1.375 C 5.832031 -1.632812 6 -2.007812 6 -2.5 C 6 -3 5.832031 -3.375 5.5 -3.625 C 5.164062 -3.875 4.675781 -4 4.03125 -4 Z M 4.03125 -4 "/>
202
+ </symbol>
203
+ <symbol overflow="visible" id="glyph4-31">
204
+ <path style="stroke:none;" d="M 5 -6.859375 L 2.21875 -3 L 5 -3 Z M 4.59375 -8 L 6 -8 L 6 -3 L 7 -3 L 7 -2 L 6 -2 L 6 0 L 5 0 L 5 -2 L 1 -2 L 1 -3.015625 Z M 4.59375 -8 "/>
205
+ </symbol>
206
+ <symbol overflow="visible" id="glyph4-32">
207
+ <path style="stroke:none;" d="M 1 -8 L 2.1875 -8 L 6 -1.546875 L 6 -8 L 7 -8 L 7 0 L 5.8125 0 L 2 -6.421875 L 2 0 L 1 0 Z M 1 -8 "/>
208
+ </symbol>
209
+ <symbol overflow="visible" id="glyph4-33">
210
+ <path style="stroke:none;" d="M 6 0 C 5.71875 0 5.425781 0 5.125 0 C 4.820312 0 4.507812 0 4.1875 0 C 3.1875 0 2.40625 -0.265625 1.84375 -0.796875 C 1.28125 -1.328125 1 -2.0625 1 -3 C 1 -3.9375 1.28125 -4.671875 1.84375 -5.203125 C 2.40625 -5.734375 3.1875 -6 4.1875 -6 C 4.5 -6 4.800781 -6 5.09375 -6 C 5.394531 -6 5.695312 -6 6 -6 L 6 -5 C 5.707031 -5 5.414062 -5 5.125 -5 C 4.832031 -5 4.503906 -5 4.140625 -5 C 3.453125 -5 2.921875 -4.828125 2.546875 -4.484375 C 2.179688 -4.140625 2 -3.644531 2 -3 C 2 -2.363281 2.179688 -1.867188 2.546875 -1.515625 C 2.921875 -1.171875 3.453125 -1 4.140625 -1 C 4.515625 -1 4.851562 -1 5.15625 -1 C 5.457031 -1 5.738281 -1 6 -1 Z M 6 0 "/>
211
+ </symbol>
212
+ <symbol overflow="visible" id="glyph4-34">
213
+ <path style="stroke:none;" d="M 6 -4 C 6 -5.070312 5.84375 -5.835938 5.53125 -6.296875 C 5.21875 -6.765625 4.707031 -7 4 -7 C 3.289062 -7 2.78125 -6.765625 2.46875 -6.296875 C 2.15625 -5.835938 2 -5.070312 2 -4 C 2 -2.925781 2.15625 -2.15625 2.46875 -1.6875 C 2.78125 -1.226562 3.289062 -1 4 -1 C 4.707031 -1 5.21875 -1.226562 5.53125 -1.6875 C 5.84375 -2.144531 6 -2.914062 6 -4 Z M 7 -4 C 7 -2.65625 6.75 -1.648438 6.25 -0.984375 C 5.757812 -0.328125 5.007812 0 4 0 C 2.988281 0 2.234375 -0.328125 1.734375 -0.984375 C 1.242188 -1.640625 1 -2.644531 1 -4 C 1 -5.34375 1.242188 -6.34375 1.734375 -7 C 2.234375 -7.664062 2.988281 -8 4 -8 C 5.007812 -8 5.757812 -7.664062 6.25 -7 C 6.75 -6.34375 7 -5.34375 7 -4 Z M 7 -4 "/>
214
+ </symbol>
215
+ <symbol overflow="visible" id="glyph4-35">
216
+ <path style="stroke:none;" d="M 0 -8 L 1.015625 -8 L 1.640625 -2.421875 L 3.109375 -7 L 3.890625 -7 L 5.484375 -2.453125 L 5.984375 -8 L 7 -8 L 5.859375 0 L 5.15625 0 L 3.5 -5.421875 L 1.96875 0 L 1.015625 0 Z M 0 -8 "/>
217
+ </symbol>
218
+ <symbol overflow="visible" id="glyph4-36">
219
+ <path style="stroke:none;" d="M 5.265625 -3.453125 C 5.566406 -3.378906 5.820312 -3.25 6.03125 -3.0625 C 6.25 -2.875 6.515625 -2.5 6.828125 -1.9375 L 8 0 L 6.84375 0 L 5.78125 -1.734375 C 5.53125 -2.347656 5.253906 -2.734375 4.953125 -2.890625 C 4.660156 -3.046875 4.226562 -3.113281 3.65625 -3.09375 L 2 -3 L 2 0 L 1 0 L 1 -8 L 3.671875 -8 C 4.742188 -8 5.566406 -7.785156 6.140625 -7.359375 C 6.710938 -6.929688 7 -6.3125 7 -5.5 C 7 -4.9375 6.847656 -4.472656 6.546875 -4.109375 C 6.242188 -3.753906 5.816406 -3.535156 5.265625 -3.453125 Z M 2 -7 L 2 -4 L 3.734375 -4 C 4.492188 -4 5.0625 -4.117188 5.4375 -4.359375 C 5.8125 -4.609375 6 -4.988281 6 -5.5 C 6 -5.976562 5.800781 -6.347656 5.40625 -6.609375 C 5.007812 -6.867188 4.429688 -7 3.671875 -7 Z M 2 -7 "/>
220
+ </symbol>
221
+ <symbol overflow="visible" id="glyph4-37">
222
+ <path style="stroke:none;" d="M 4.265625 0 C 4.234375 0 4.191406 0 4.140625 0 C 4.085938 0 4.046875 0 4.015625 0 C 3.003906 0 2.25 -0.328125 1.75 -0.984375 C 1.25 -1.648438 1 -2.65625 1 -4 C 1 -5.34375 1.242188 -6.34375 1.734375 -7 C 2.234375 -7.664062 2.988281 -8 4 -8 C 5.007812 -8 5.757812 -7.671875 6.25 -7.015625 C 6.75 -6.359375 7 -5.359375 7 -4.015625 C 7 -3.015625 6.878906 -2.207031 6.640625 -1.59375 C 6.398438 -0.976562 6.035156 -0.546875 5.546875 -0.296875 L 6.640625 0.578125 L 5.890625 1 Z M 6 -4 C 6 -5.070312 5.84375 -5.835938 5.53125 -6.296875 C 5.21875 -6.765625 4.707031 -7 4 -7 C 3.289062 -7 2.78125 -6.765625 2.46875 -6.296875 C 2.15625 -5.835938 2 -5.070312 2 -4 C 2 -2.925781 2.15625 -2.15625 2.46875 -1.6875 C 2.78125 -1.226562 3.289062 -1 4 -1 C 4.707031 -1 5.21875 -1.226562 5.53125 -1.6875 C 5.84375 -2.144531 6 -2.914062 6 -4 Z M 6 -4 "/>
223
+ </symbol>
224
+ <symbol overflow="visible" id="glyph4-38">
225
+ <path style="stroke:none;" d="M 3.5 -5 C 3.007812 -5 2.632812 -4.828125 2.375 -4.484375 C 2.125 -4.148438 2 -3.65625 2 -3 C 2 -2.34375 2.125 -1.84375 2.375 -1.5 C 2.632812 -1.164062 3.007812 -1 3.5 -1 C 3.988281 -1 4.359375 -1.164062 4.609375 -1.5 C 4.867188 -1.84375 5 -2.34375 5 -3 C 5 -3.65625 4.867188 -4.148438 4.609375 -4.484375 C 4.359375 -4.828125 3.988281 -5 3.5 -5 Z M 3.5 -6 C 4.3125 -6 4.929688 -5.738281 5.359375 -5.21875 C 5.785156 -4.707031 6 -3.96875 6 -3 C 6 -2.019531 5.785156 -1.273438 5.359375 -0.765625 C 4.929688 -0.253906 4.3125 0 3.5 0 C 2.6875 0 2.066406 -0.253906 1.640625 -0.765625 C 1.210938 -1.273438 1 -2.019531 1 -3 C 1 -3.96875 1.210938 -4.707031 1.640625 -5.21875 C 2.066406 -5.738281 2.6875 -6 3.5 -6 Z M 3.5 -6 "/>
226
+ </symbol>
227
+ <symbol overflow="visible" id="glyph4-39">
228
+ <path style="stroke:none;" d="M 6 -9 L 6 -8 L 4.921875 -8 C 4.578125 -8 4.335938 -7.898438 4.203125 -7.703125 C 4.066406 -7.515625 4 -7.179688 4 -6.703125 L 4 -6 L 6 -6 L 6 -5 L 4 -5 L 4 0 L 3 0 L 3 -5 L 1 -5 L 1 -6 L 3 -6 L 3 -6.546875 C 3 -7.390625 3.148438 -8.007812 3.453125 -8.40625 C 3.753906 -8.800781 4.222656 -9 4.859375 -9 Z M 6 -9 "/>
229
+ </symbol>
230
+ </g>
231
+ <clipPath id="clip1">
232
+ <path d="M 67 32 L 467 32 L 467 134 L 67 134 Z M 67 32 "/>
233
+ </clipPath>
234
+ </defs>
235
+ <g id="surface2">
236
+ <rect x="0" y="0" width="497" height="271" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
237
+ <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 67 133 L 467 133 L 467 33 L 67 33 Z M 67 133 "/>
238
+ <g clip-path="url(#clip1)" clip-rule="nonzero">
239
+ <path style=" stroke:none;fill-rule:nonzero;fill:rgb(96.078431%,96.078431%,96.078431%);fill-opacity:0.533333;" d="M 344 43.765625 L 344 133.199219 L 466 133.199219 L 466 45.964844 L 465 45.964844 L 465 46.226562 L 463 46.226562 L 463 45.625 L 462 45.625 L 462 45.796875 L 461 45.796875 L 461 45.464844 L 460 45.464844 L 460 44.875 L 458 44.875 L 458 44.925781 L 457 44.925781 L 457 45.480469 L 456 45.480469 L 456 45.183594 L 454 45.183594 L 454 45.453125 L 453 45.453125 L 453 45.804688 L 452 45.804688 L 452 45.519531 L 450 45.519531 L 450 44.78125 L 449 44.78125 L 449 44.933594 L 448 44.933594 L 448 45.03125 L 447 45.03125 L 447 45.445312 L 445 45.445312 L 445 45.171875 L 444 45.171875 L 444 45.464844 L 443 45.464844 L 443 45.175781 L 441 45.175781 L 441 45.28125 L 440 45.28125 L 440 45.738281 L 439 45.738281 L 439 44.546875 L 437 44.546875 L 437 44.875 L 436 44.875 L 436 45.46875 L 435 45.46875 L 435 45.441406 L 434 45.441406 L 434 45.65625 L 432 45.65625 L 432 45.546875 L 431 45.546875 L 431 44.71875 L 430 44.71875 L 430 44.792969 L 428 44.792969 L 428 44.855469 L 427 44.855469 L 427 45.984375 L 426 45.984375 L 426 45.304688 L 425 45.304688 L 425 44.644531 L 423 44.644531 L 423 44.355469 L 422 44.355469 L 422 44.238281 L 421 44.238281 L 421 44.242188 L 419 44.242188 L 419 44.914062 L 418 44.914062 L 418 44.148438 L 417 44.148438 L 417 44.152344 L 415 44.152344 L 415 44.171875 L 414 44.171875 L 414 44.15625 L 413 44.15625 L 413 44.035156 L 412 44.035156 L 412 44.355469 L 410 44.355469 L 410 45.480469 L 409 45.480469 L 409 45.09375 L 408 45.09375 L 408 45.539062 L 406 45.539062 L 406 45.148438 L 405 45.148438 L 405 44.816406 L 404 44.816406 L 404 44.859375 L 402 44.859375 L 402 45.238281 L 401 45.238281 L 401 45.898438 L 400 45.898438 L 400 45.667969 L 399 45.667969 L 399 45.339844 L 397 45.339844 L 397 45.355469 L 396 45.355469 L 396 45.429688 L 395 45.429688 L 395 45.570312 L 393 45.570312 L 393 45.609375 L 392 45.609375 L 392 45.550781 L 391 45.550781 L 391 45.691406 L 390 45.691406 L 390 45.09375 L 388 45.09375 L 388 45.894531 L 387 45.894531 L 387 46.769531 L 386 46.769531 L 386 44.796875 L 384 44.796875 L 384 44.953125 L 383 44.953125 L 383 45.109375 L 382 45.109375 L 382 44.9375 L 380 44.9375 L 380 48.605469 L 379 48.605469 L 379 49.171875 L 378 49.171875 L 378 49.261719 L 377 49.261719 L 377 49.296875 L 375 49.296875 L 375 48.050781 L 374 48.050781 L 374 46.871094 L 373 46.871094 L 373 45.785156 L 371 45.785156 L 371 45.355469 L 370 45.355469 L 370 45.351562 L 369 45.351562 L 369 46.570312 L 367 46.570312 L 367 44.78125 L 366 44.78125 L 366 45.183594 L 365 45.183594 L 365 45.519531 L 364 45.519531 L 364 44.140625 L 362 44.140625 L 362 44.6875 L 361 44.6875 L 361 44.171875 L 360 44.171875 L 360 44.261719 L 358 44.261719 L 358 44.125 L 357 44.125 L 357 44.171875 L 356 44.171875 L 356 44.132812 L 355 44.132812 L 355 44.140625 L 353 44.140625 L 353 44.058594 L 352 44.058594 L 352 44.089844 L 351 44.089844 L 351 45.269531 L 349 45.269531 L 349 45.652344 L 348 45.652344 L 348 44.148438 L 347 44.148438 L 347 44.28125 L 345 44.28125 L 345 43.765625 Z M 344 43.765625 "/>
240
+ <path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,94.117647%,0%);stroke-opacity:0.666667;stroke-miterlimit:10;" d="M 344 132.921875 L 345 132.921875 L 345 132.9375 L 347 132.9375 L 347 132.96875 L 348 132.96875 L 348 132.839844 L 349 132.839844 L 349 132.878906 L 351 132.878906 L 351 132.960938 L 356 132.960938 L 356 132.957031 L 357 132.957031 L 357 132.960938 L 358 132.960938 L 358 132.957031 L 360 132.957031 L 360 132.960938 L 361 132.960938 L 361 132.953125 L 362 132.953125 L 362 132.949219 L 364 132.949219 L 364 132.773438 L 365 132.773438 L 365 132.816406 L 366 132.816406 L 366 132.902344 L 367 132.902344 L 367 132.644531 L 369 132.644531 L 369 132.777344 L 370 132.777344 L 370 132.800781 L 371 132.800781 L 371 132.582031 L 373 132.582031 L 373 132.429688 L 374 132.429688 L 374 132.515625 L 375 132.515625 L 375 132.375 L 377 132.375 L 377 132.335938 L 378 132.335938 L 378 132.378906 L 379 132.378906 L 379 132.386719 L 380 132.386719 L 380 132.6875 L 383 132.6875 L 383 132.699219 L 384 132.699219 L 384 132.695312 L 386 132.695312 L 386 132.601562 L 387 132.601562 L 387 132.625 L 388 132.625 L 388 132.644531 L 390 132.644531 L 390 132.515625 L 391 132.515625 L 391 132.558594 L 395 132.558594 L 395 132.597656 L 396 132.597656 L 396 132.628906 L 399 132.628906 L 399 132.523438 L 400 132.523438 L 400 132.542969 L 401 132.542969 L 401 132.695312 L 402 132.695312 L 402 132.78125 L 404 132.78125 L 404 132.824219 L 405 132.824219 L 405 132.800781 L 406 132.800781 L 406 132.675781 L 408 132.675781 L 408 132.8125 L 409 132.8125 L 409 132.609375 L 410 132.609375 L 410 132.921875 L 412 132.921875 L 412 132.957031 L 414 132.957031 L 414 132.953125 L 415 132.953125 L 415 132.957031 L 417 132.957031 L 417 132.953125 L 418 132.953125 L 418 132.839844 L 419 132.839844 L 419 132.945312 L 421 132.945312 L 421 132.949219 L 423 132.949219 L 423 132.820312 L 425 132.820312 L 425 132.78125 L 426 132.78125 L 426 132.585938 L 427 132.585938 L 427 132.796875 L 428 132.796875 L 428 132.871094 L 431 132.871094 L 431 132.742188 L 432 132.742188 L 432 132.761719 L 434 132.761719 L 434 132.765625 L 435 132.765625 L 435 132.699219 L 436 132.699219 L 436 132.863281 L 437 132.863281 L 437 132.855469 L 439 132.855469 L 439 132.722656 L 440 132.722656 L 440 132.855469 L 441 132.855469 L 441 132.785156 L 443 132.785156 L 443 132.734375 L 444 132.734375 L 444 132.835938 L 445 132.835938 L 445 132.722656 L 447 132.722656 L 447 132.875 L 448 132.875 L 448 132.78125 L 449 132.78125 L 449 132.824219 L 450 132.824219 L 450 132.664062 L 452 132.664062 L 452 132.734375 L 453 132.734375 L 453 132.792969 L 454 132.792969 L 454 132.761719 L 456 132.761719 L 456 132.792969 L 457 132.792969 L 457 132.796875 L 458 132.796875 L 458 132.773438 L 460 132.773438 L 460 132.566406 L 461 132.566406 L 461 132.542969 L 462 132.542969 L 462 132.640625 L 463 132.640625 L 463 132.476562 L 465 132.476562 L 465 132.488281 L 466 132.488281 "/>
241
+ <path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:0.666667;stroke-miterlimit:10;" d="M 344 132.792969 L 345 132.792969 L 345 132.929688 L 347 132.929688 L 347 132.941406 L 348 132.941406 L 348 131.617188 L 349 131.617188 L 349 131.730469 L 351 131.730469 L 351 132.929688 L 352 132.929688 L 352 132.949219 L 353 132.949219 L 353 132.875 L 355 132.875 L 355 132.914062 L 356 132.914062 L 356 132.867188 L 357 132.867188 L 357 132.890625 L 358 132.890625 L 358 132.761719 L 360 132.761719 L 360 132.839844 L 361 132.839844 L 361 132.332031 L 362 132.332031 L 362 132.886719 L 364 132.886719 L 364 131.738281 L 365 131.738281 L 365 132.1875 L 366 132.1875 L 366 132.386719 L 367 132.386719 L 367 130.863281 L 369 130.863281 L 369 131.871094 L 370 131.871094 L 370 131.878906 L 371 131.878906 L 371 131.640625 L 373 131.640625 L 373 130.726562 L 374 130.726562 L 374 129.488281 L 375 129.488281 L 375 128.394531 L 377 128.394531 L 377 128.492188 L 378 128.492188 L 378 128.496094 L 379 128.496094 L 379 129.089844 L 380 129.089844 L 380 132.433594 L 382 132.433594 L 382 132.289062 L 383 132.289062 L 383 132.433594 L 384 132.433594 L 384 132.570312 L 386 132.570312 L 386 130.753906 L 387 130.753906 L 387 131.644531 L 388 131.644531 L 388 132.339844 L 390 132.339844 L 390 131.910156 L 391 131.910156 L 391 132.035156 L 392 132.035156 L 392 131.9375 L 393 131.9375 L 393 131.933594 L 395 131.933594 L 395 132.101562 L 396 132.101562 L 396 132.039062 L 397 132.039062 L 397 132.109375 L 399 132.109375 L 399 131.90625 L 400 131.90625 L 400 131.605469 L 401 131.605469 L 401 132.15625 L 402 132.15625 L 402 132.378906 L 404 132.378906 L 404 132.410156 L 405 132.410156 L 405 132.125 L 406 132.125 L 406 131.894531 L 408 131.894531 L 408 132.164062 L 409 132.164062 L 409 132.003906 L 410 132.003906 L 410 132.796875 L 412 132.796875 L 412 132.957031 L 413 132.957031 L 413 132.878906 L 414 132.878906 L 414 132.867188 L 415 132.867188 L 415 132.882812 L 417 132.882812 L 417 132.875 L 418 132.875 L 418 132.324219 L 419 132.324219 L 419 132.851562 L 421 132.851562 L 421 132.808594 L 422 132.808594 L 422 132.726562 L 423 132.726562 L 423 132.53125 L 425 132.53125 L 425 131.976562 L 426 131.976562 L 426 131.511719 L 427 131.511719 L 427 132.441406 L 428 132.441406 L 428 132.394531 L 430 132.394531 L 430 132.472656 L 431 132.472656 L 431 131.816406 L 432 131.816406 L 432 131.671875 L 434 131.671875 L 434 131.792969 L 435 131.792969 L 435 131.871094 L 436 131.871094 L 436 132.394531 L 437 132.394531 L 437 132.519531 L 439 132.519531 L 439 131.617188 L 440 131.617188 L 440 131.894531 L 441 131.894531 L 441 132.113281 L 443 132.113281 L 443 131.890625 L 444 131.890625 L 444 132.019531 L 445 132.019531 L 445 131.871094 L 447 131.871094 L 447 132.179688 L 448 132.179688 L 448 132.277344 L 449 132.277344 L 449 132.417969 L 450 132.417969 L 450 131.910156 L 452 131.910156 L 452 131.5625 L 453 131.5625 L 453 131.835938 L 454 131.835938 L 454 132.113281 L 456 132.113281 L 456 131.832031 L 457 131.832031 L 457 132.332031 L 458 132.332031 L 458 132.394531 L 460 132.394531 L 460 132.054688 L 461 132.054688 L 461 131.75 L 462 131.75 L 462 131.832031 L 463 131.832031 L 463 131.417969 L 465 131.417969 L 465 131.632812 L 466 131.632812 "/>
242
+ <path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(80%,80%,80%);stroke-opacity:0.666667;stroke-miterlimit:10;" d="M 344 43.964844 L 345 43.964844 L 345 44.484375 L 347 44.484375 L 347 44.347656 L 348 44.347656 L 348 45.851562 L 349 45.851562 L 349 45.46875 L 351 45.46875 L 351 44.289062 L 352 44.289062 L 352 44.257812 L 353 44.257812 L 353 44.34375 L 355 44.34375 L 355 44.332031 L 356 44.332031 L 356 44.371094 L 357 44.371094 L 357 44.328125 L 358 44.328125 L 358 44.460938 L 360 44.460938 L 360 44.371094 L 361 44.371094 L 361 44.890625 L 362 44.890625 L 362 44.339844 L 364 44.339844 L 364 45.722656 L 365 45.722656 L 365 45.382812 L 366 45.382812 L 366 44.980469 L 367 44.980469 L 367 46.769531 L 369 46.769531 L 369 45.550781 L 370 45.550781 L 370 45.558594 L 371 45.558594 L 371 45.988281 L 373 45.988281 L 373 47.074219 L 374 47.074219 L 374 48.25 L 375 48.25 L 375 49.496094 L 377 49.496094 L 377 49.460938 L 378 49.460938 L 378 49.371094 L 379 49.371094 L 379 48.804688 L 380 48.804688 L 380 45.136719 L 382 45.136719 L 382 45.308594 L 383 45.308594 L 383 45.152344 L 384 45.152344 L 384 45 L 386 45 L 386 46.96875 L 387 46.96875 L 387 46.097656 L 388 46.097656 L 388 45.292969 L 390 45.292969 L 390 45.894531 L 391 45.894531 L 391 45.75 L 392 45.75 L 392 45.808594 L 393 45.808594 L 393 45.769531 L 395 45.769531 L 395 45.628906 L 396 45.628906 L 396 45.554688 L 397 45.554688 L 397 45.542969 L 399 45.542969 L 399 45.867188 L 400 45.867188 L 400 46.097656 L 401 46.097656 L 401 45.4375 L 402 45.4375 L 402 45.058594 L 404 45.058594 L 404 45.019531 L 405 45.019531 L 405 45.347656 L 406 45.347656 L 406 45.742188 L 408 45.742188 L 408 45.292969 L 409 45.292969 L 409 45.679688 L 410 45.679688 L 410 44.554688 L 412 44.554688 L 412 44.234375 L 413 44.234375 L 413 44.355469 L 414 44.355469 L 414 44.371094 L 415 44.371094 L 415 44.351562 L 417 44.351562 L 417 44.347656 L 418 44.347656 L 418 45.113281 L 419 45.113281 L 419 44.441406 L 421 44.441406 L 421 44.4375 L 422 44.4375 L 422 44.558594 L 423 44.558594 L 423 44.84375 L 425 44.84375 L 425 45.507812 L 426 45.507812 L 426 46.183594 L 427 46.183594 L 427 45.054688 L 428 45.054688 L 428 44.992188 L 430 44.992188 L 430 44.921875 L 431 44.921875 L 431 45.746094 L 432 45.746094 L 432 45.855469 L 434 45.855469 L 434 45.640625 L 435 45.640625 L 435 45.671875 L 436 45.671875 L 436 45.074219 L 437 45.074219 L 437 44.746094 L 439 44.746094 L 439 45.9375 L 440 45.9375 L 440 45.484375 L 441 45.484375 L 441 45.375 L 443 45.375 L 443 45.664062 L 444 45.664062 L 444 45.371094 L 445 45.371094 L 445 45.648438 L 447 45.648438 L 447 45.234375 L 448 45.234375 L 448 45.132812 L 449 45.132812 L 449 44.980469 L 450 44.980469 L 450 45.71875 L 452 45.71875 L 452 46.003906 L 453 46.003906 L 453 45.652344 L 454 45.652344 L 454 45.382812 L 456 45.382812 L 456 45.679688 L 457 45.679688 L 457 45.125 L 458 45.125 L 458 45.078125 L 460 45.078125 L 460 45.664062 L 461 45.664062 L 461 45.996094 L 462 45.996094 L 462 45.828125 L 463 45.828125 L 463 46.425781 L 465 46.425781 L 465 46.164062 L 466 46.164062 "/>
243
+ <path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,0%);stroke-opacity:0.666667;stroke-miterlimit:10;" d="M 344 133 L 345 133 L 345 132.886719 L 347 132.886719 L 347 133 L 365 133 L 365 132.953125 L 366 132.953125 L 366 132.984375 L 367 132.984375 L 367 132.960938 L 369 132.960938 L 369 132.996094 L 370 132.996094 L 370 132.984375 L 371 132.984375 L 371 132.996094 L 388 132.996094 L 388 133 L 466 133 "/>
244
+ <path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,27.058824%,0%);stroke-opacity:0.666667;stroke-miterlimit:10;" d="M 344 132.714844 L 345 132.714844 L 345 132.898438 L 347 132.898438 L 347 132.914062 L 348 132.914062 L 348 132.867188 L 349 132.867188 L 349 132.941406 L 352 132.941406 L 352 132.953125 L 353 132.953125 L 353 132.941406 L 355 132.941406 L 355 132.917969 L 356 132.917969 L 356 132.925781 L 357 132.925781 L 357 132.945312 L 360 132.945312 L 360 132.949219 L 362 132.949219 L 362 132.945312 L 364 132.945312 L 364 132.914062 L 365 132.914062 L 365 132.804688 L 366 132.804688 L 366 132.875 L 367 132.875 L 367 132.917969 L 369 132.917969 L 369 132.945312 L 370 132.945312 L 370 132.929688 L 371 132.929688 L 371 132.9375 L 373 132.9375 L 373 132.941406 L 374 132.941406 L 374 132.890625 L 375 132.890625 L 375 132.902344 L 377 132.902344 L 377 132.875 L 378 132.875 L 378 132.914062 L 379 132.914062 L 379 132.894531 L 380 132.894531 L 380 132.878906 L 382 132.878906 L 382 132.871094 L 383 132.871094 L 383 132.882812 L 386 132.882812 L 386 132.839844 L 387 132.839844 L 387 132.800781 L 388 132.800781 L 388 132.847656 L 390 132.847656 L 390 132.835938 L 391 132.835938 L 391 132.800781 L 392 132.800781 L 392 132.839844 L 393 132.839844 L 393 132.875 L 395 132.875 L 395 132.851562 L 396 132.851562 L 396 132.886719 L 397 132.886719 L 397 132.855469 L 399 132.855469 L 399 132.84375 L 400 132.84375 L 400 132.902344 L 401 132.902344 L 401 132.882812 L 402 132.882812 L 402 132.898438 L 404 132.898438 L 404 132.875 L 405 132.875 L 405 132.867188 L 406 132.867188 L 406 132.824219 L 408 132.824219 L 408 132.863281 L 409 132.863281 L 409 132.84375 L 410 132.84375 L 410 132.898438 L 412 132.898438 L 412 132.933594 L 413 132.933594 L 413 132.9375 L 415 132.9375 L 415 132.929688 L 417 132.929688 L 417 132.945312 L 418 132.945312 L 418 132.855469 L 419 132.855469 L 419 132.902344 L 422 132.902344 L 422 132.917969 L 423 132.917969 L 423 132.886719 L 425 132.886719 L 425 132.878906 L 426 132.878906 L 426 132.859375 L 427 132.859375 L 427 132.863281 L 428 132.863281 L 428 132.859375 L 430 132.859375 L 430 132.882812 L 431 132.882812 L 431 132.855469 L 432 132.855469 L 432 132.84375 L 434 132.84375 L 434 132.90625 L 435 132.90625 L 435 132.894531 L 437 132.894531 L 437 132.917969 L 439 132.917969 L 439 132.859375 L 440 132.859375 L 440 132.910156 L 441 132.910156 L 441 132.867188 L 443 132.867188 L 443 132.863281 L 444 132.863281 L 444 132.890625 L 445 132.890625 L 445 132.902344 L 448 132.902344 L 448 132.898438 L 449 132.898438 L 449 132.921875 L 450 132.921875 L 450 132.84375 L 452 132.84375 L 452 132.839844 L 453 132.839844 L 453 132.863281 L 454 132.863281 L 454 132.878906 L 456 132.878906 L 456 132.832031 L 457 132.832031 L 457 132.882812 L 458 132.882812 L 458 132.894531 L 460 132.894531 L 460 132.878906 L 461 132.878906 L 461 132.84375 L 462 132.84375 L 462 132.863281 L 463 132.863281 L 463 132.875 L 465 132.875 L 465 132.828125 L 466 132.828125 "/>
245
+ <path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:0.666667;stroke-miterlimit:10;" d="M 344 133 L 466 133 "/>
246
+ <path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,100%,100%);stroke-opacity:0.666667;stroke-miterlimit:10;" d="M 344 133 L 466 133 "/>
247
+ <path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,100%);stroke-opacity:0.666667;stroke-miterlimit:10;" d="M 344 132.984375 L 348 132.984375 L 348 132.96875 L 349 132.96875 L 349 132.972656 L 351 132.972656 L 351 132.984375 L 355 132.984375 L 355 132.980469 L 356 132.980469 L 356 132.984375 L 364 132.984375 L 364 132.96875 L 365 132.96875 L 365 132.957031 L 366 132.957031 L 366 132.972656 L 367 132.972656 L 367 132.953125 L 369 132.953125 L 369 132.96875 L 370 132.96875 L 370 132.964844 L 371 132.964844 L 371 132.976562 L 373 132.976562 L 373 132.964844 L 374 132.964844 L 374 132.96875 L 375 132.96875 L 375 132.964844 L 377 132.964844 L 377 132.96875 L 380 132.96875 L 380 132.972656 L 382 132.972656 L 382 132.96875 L 384 132.96875 L 384 132.972656 L 386 132.972656 L 386 132.957031 L 387 132.957031 L 387 132.96875 L 388 132.96875 L 388 132.972656 L 390 132.972656 L 390 132.960938 L 391 132.960938 L 391 132.964844 L 392 132.964844 L 392 132.972656 L 396 132.972656 L 396 132.976562 L 399 132.976562 L 399 132.972656 L 400 132.972656 L 400 132.964844 L 402 132.964844 L 402 132.96875 L 404 132.96875 L 404 132.972656 L 405 132.972656 L 405 132.96875 L 409 132.96875 L 409 132.960938 L 410 132.960938 L 410 132.980469 L 412 132.980469 L 412 132.984375 L 414 132.984375 L 414 132.976562 L 415 132.976562 L 415 132.984375 L 418 132.984375 L 418 132.972656 L 419 132.972656 L 419 132.984375 L 423 132.984375 L 423 132.980469 L 425 132.980469 L 425 132.96875 L 428 132.96875 L 428 132.972656 L 430 132.972656 L 430 132.976562 L 431 132.976562 L 431 132.964844 L 434 132.964844 L 434 132.96875 L 436 132.96875 L 436 132.976562 L 437 132.976562 L 437 132.96875 L 444 132.96875 L 444 132.972656 L 445 132.972656 L 445 132.964844 L 448 132.964844 L 448 132.96875 L 450 132.96875 L 450 132.964844 L 453 132.964844 L 453 132.96875 L 454 132.96875 L 454 132.964844 L 456 132.964844 L 456 132.972656 L 457 132.972656 L 457 132.96875 L 460 132.96875 L 460 132.972656 L 461 132.972656 L 461 132.957031 L 462 132.957031 L 462 132.960938 L 463 132.960938 L 463 132.964844 L 465 132.964844 L 465 132.972656 L 466 132.972656 "/>
248
+ </g>
249
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 69 31 L 69 33 "/>
250
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 69 133 L 69 135 "/>
251
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 69 134 L 69 32 "/>
252
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 102 31 L 102 33 "/>
253
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 102 133 L 102 135 "/>
254
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 102 134 L 102 32 "/>
255
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 119 31 L 119 33 "/>
256
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 119 133 L 119 135 "/>
257
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 119 134 L 119 32 "/>
258
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 135 31 L 135 33 "/>
259
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 135 133 L 135 135 "/>
260
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 135 134 L 135 32 "/>
261
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 152 31 L 152 33 "/>
262
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 152 133 L 152 135 "/>
263
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 152 134 L 152 32 "/>
264
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 169 31 L 169 33 "/>
265
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 169 133 L 169 135 "/>
266
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 169 134 L 169 32 "/>
267
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 202 31 L 202 33 "/>
268
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 202 133 L 202 135 "/>
269
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 202 134 L 202 32 "/>
270
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 219 31 L 219 33 "/>
271
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 219 133 L 219 135 "/>
272
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 219 134 L 219 32 "/>
273
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 235 31 L 235 33 "/>
274
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 235 133 L 235 135 "/>
275
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 235 134 L 235 32 "/>
276
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 252 31 L 252 33 "/>
277
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 252 133 L 252 135 "/>
278
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 252 134 L 252 32 "/>
279
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 269 31 L 269 33 "/>
280
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 269 133 L 269 135 "/>
281
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 269 134 L 269 32 "/>
282
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 302 31 L 302 33 "/>
283
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 302 133 L 302 135 "/>
284
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 302 134 L 302 32 "/>
285
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 319 31 L 319 33 "/>
286
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 319 133 L 319 135 "/>
287
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 319 134 L 319 32 "/>
288
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 335 31 L 335 33 "/>
289
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 335 133 L 335 135 "/>
290
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 335 134 L 335 32 "/>
291
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 352 31 L 352 33 "/>
292
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 352 133 L 352 135 "/>
293
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 352 134 L 352 32 "/>
294
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 369 31 L 369 33 "/>
295
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 369 133 L 369 135 "/>
296
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 369 134 L 369 32 "/>
297
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 402 31 L 402 33 "/>
298
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 402 133 L 402 135 "/>
299
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 402 134 L 402 32 "/>
300
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 419 31 L 419 33 "/>
301
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 419 133 L 419 135 "/>
302
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 419 134 L 419 32 "/>
303
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 435 31 L 435 33 "/>
304
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 435 133 L 435 135 "/>
305
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 435 134 L 435 32 "/>
306
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 452 31 L 452 33 "/>
307
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 452 133 L 452 135 "/>
308
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 452 134 L 452 32 "/>
309
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(87%,31%,31%);stroke-opacity:0.6;stroke-miterlimit:10;" d="M 85 31 L 85 33 "/>
310
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(87%,31%,31%);stroke-opacity:0.6;stroke-miterlimit:10;" d="M 85 133 L 85 136 "/>
311
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(87%,31%,31%);stroke-opacity:0.6;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 85 136 L 85 31 "/>
312
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(87%,31%,31%);stroke-opacity:0.6;stroke-miterlimit:10;" d="M 185 31 L 185 33 "/>
313
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(87%,31%,31%);stroke-opacity:0.6;stroke-miterlimit:10;" d="M 185 133 L 185 136 "/>
314
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(87%,31%,31%);stroke-opacity:0.6;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 185 136 L 185 31 "/>
315
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(87%,31%,31%);stroke-opacity:0.6;stroke-miterlimit:10;" d="M 285 31 L 285 33 "/>
316
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(87%,31%,31%);stroke-opacity:0.6;stroke-miterlimit:10;" d="M 285 133 L 285 136 "/>
317
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(87%,31%,31%);stroke-opacity:0.6;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 285 136 L 285 31 "/>
318
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(87%,31%,31%);stroke-opacity:0.6;stroke-miterlimit:10;" d="M 385 31 L 385 33 "/>
319
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(87%,31%,31%);stroke-opacity:0.6;stroke-miterlimit:10;" d="M 385 133 L 385 136 "/>
320
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(87%,31%,31%);stroke-opacity:0.6;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 385 136 L 385 31 "/>
321
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
322
+ <use xlink:href="#glyph0-0" x="158" y="146"/>
323
+ <use xlink:href="#glyph0-1" x="164" y="146"/>
324
+ <use xlink:href="#glyph0-2" x="170" y="146"/>
325
+ <use xlink:href="#glyph0-3" x="176" y="146"/>
326
+ <use xlink:href="#glyph0-4" x="182" y="146"/>
327
+ <use xlink:href="#glyph0-4" x="188" y="146"/>
328
+ <use xlink:href="#glyph0-5" x="194" y="146"/>
329
+ <use xlink:href="#glyph0-4" x="200" y="146"/>
330
+ <use xlink:href="#glyph0-4" x="206" y="146"/>
331
+ </g>
332
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
333
+ <use xlink:href="#glyph0-0" x="358" y="146"/>
334
+ <use xlink:href="#glyph0-1" x="364" y="146"/>
335
+ <use xlink:href="#glyph0-2" x="370" y="146"/>
336
+ <use xlink:href="#glyph0-3" x="376" y="146"/>
337
+ <use xlink:href="#glyph0-6" x="382" y="146"/>
338
+ <use xlink:href="#glyph0-7" x="388" y="146"/>
339
+ <use xlink:href="#glyph0-5" x="394" y="146"/>
340
+ <use xlink:href="#glyph0-4" x="400" y="146"/>
341
+ <use xlink:href="#glyph0-4" x="406" y="146"/>
342
+ </g>
343
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
344
+ <use xlink:href="#glyph0-3" x="36" y="137"/>
345
+ <use xlink:href="#glyph0-3" x="42" y="137"/>
346
+ <use xlink:href="#glyph0-3" x="48" y="137"/>
347
+ <use xlink:href="#glyph0-4" x="54" y="137"/>
348
+ </g>
349
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(87%,31%,31%);stroke-opacity:0.6;stroke-miterlimit:10;" d="M 65 133 L 67 133 "/>
350
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(87%,31%,31%);stroke-opacity:0.6;stroke-miterlimit:10;" d="M 467 133 L 469 133 "/>
351
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(87%,31%,31%);stroke-opacity:0.6;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 65 133 L 469 133 "/>
352
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 65 127.445312 L 67 127.445312 "/>
353
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 467 127.445312 L 469 127.445312 "/>
354
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 66 127.445312 L 468 127.445312 "/>
355
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 65 121.890625 L 67 121.890625 "/>
356
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 467 121.890625 L 469 121.890625 "/>
357
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 66 121.890625 L 468 121.890625 "/>
358
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 65 116.332031 L 67 116.332031 "/>
359
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 467 116.332031 L 469 116.332031 "/>
360
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 66 116.332031 L 468 116.332031 "/>
361
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
362
+ <use xlink:href="#glyph0-3" x="36" y="114.777344"/>
363
+ <use xlink:href="#glyph0-7" x="42" y="114.777344"/>
364
+ <use xlink:href="#glyph0-4" x="48" y="114.777344"/>
365
+ <use xlink:href="#glyph0-4" x="54" y="114.777344"/>
366
+ </g>
367
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(87%,31%,31%);stroke-opacity:0.6;stroke-miterlimit:10;" d="M 65 110.777344 L 67 110.777344 "/>
368
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(87%,31%,31%);stroke-opacity:0.6;stroke-miterlimit:10;" d="M 467 110.777344 L 469 110.777344 "/>
369
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(87%,31%,31%);stroke-opacity:0.6;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 65 110.777344 L 469 110.777344 "/>
370
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 65 105.222656 L 67 105.222656 "/>
371
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 467 105.222656 L 469 105.222656 "/>
372
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 66 105.222656 L 468 105.222656 "/>
373
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 65 99.667969 L 67 99.667969 "/>
374
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 467 99.667969 L 469 99.667969 "/>
375
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 66 99.667969 L 468 99.667969 "/>
376
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 65 94.109375 L 67 94.109375 "/>
377
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 467 94.109375 L 469 94.109375 "/>
378
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 66 94.109375 L 468 94.109375 "/>
379
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
380
+ <use xlink:href="#glyph0-3" x="36" y="92.554688"/>
381
+ <use xlink:href="#glyph0-8" x="42" y="92.554688"/>
382
+ <use xlink:href="#glyph0-4" x="48" y="92.554688"/>
383
+ <use xlink:href="#glyph0-4" x="54" y="92.554688"/>
384
+ </g>
385
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(87%,31%,31%);stroke-opacity:0.6;stroke-miterlimit:10;" d="M 65 88.554688 L 67 88.554688 "/>
386
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(87%,31%,31%);stroke-opacity:0.6;stroke-miterlimit:10;" d="M 467 88.554688 L 469 88.554688 "/>
387
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(87%,31%,31%);stroke-opacity:0.6;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 65 88.554688 L 469 88.554688 "/>
388
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 65 83 L 67 83 "/>
389
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 467 83 L 469 83 "/>
390
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 66 83 L 468 83 "/>
391
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 65 77.445312 L 67 77.445312 "/>
392
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 467 77.445312 L 469 77.445312 "/>
393
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 66 77.445312 L 468 77.445312 "/>
394
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 65 71.890625 L 67 71.890625 "/>
395
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 467 71.890625 L 469 71.890625 "/>
396
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 66 71.890625 L 468 71.890625 "/>
397
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
398
+ <use xlink:href="#glyph0-3" x="36" y="70.332031"/>
399
+ <use xlink:href="#glyph0-9" x="42" y="70.332031"/>
400
+ <use xlink:href="#glyph0-4" x="48" y="70.332031"/>
401
+ <use xlink:href="#glyph0-4" x="54" y="70.332031"/>
402
+ </g>
403
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(87%,31%,31%);stroke-opacity:0.6;stroke-miterlimit:10;" d="M 65 66.332031 L 67 66.332031 "/>
404
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(87%,31%,31%);stroke-opacity:0.6;stroke-miterlimit:10;" d="M 467 66.332031 L 469 66.332031 "/>
405
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(87%,31%,31%);stroke-opacity:0.6;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 65 66.332031 L 469 66.332031 "/>
406
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 65 60.777344 L 67 60.777344 "/>
407
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 467 60.777344 L 469 60.777344 "/>
408
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 66 60.777344 L 468 60.777344 "/>
409
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 65 55.222656 L 67 55.222656 "/>
410
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 467 55.222656 L 469 55.222656 "/>
411
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 66 55.222656 L 468 55.222656 "/>
412
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 65 49.667969 L 67 49.667969 "/>
413
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 467 49.667969 L 469 49.667969 "/>
414
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 66 49.667969 L 468 49.667969 "/>
415
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
416
+ <use xlink:href="#glyph0-3" x="36" y="48.109375"/>
417
+ <use xlink:href="#glyph0-10" x="42" y="48.109375"/>
418
+ <use xlink:href="#glyph0-4" x="48" y="48.109375"/>
419
+ <use xlink:href="#glyph0-4" x="54" y="48.109375"/>
420
+ </g>
421
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(87%,31%,31%);stroke-opacity:0.6;stroke-miterlimit:10;" d="M 65 44.109375 L 67 44.109375 "/>
422
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(87%,31%,31%);stroke-opacity:0.6;stroke-miterlimit:10;" d="M 467 44.109375 L 469 44.109375 "/>
423
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(87%,31%,31%);stroke-opacity:0.6;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 65 44.109375 L 469 44.109375 "/>
424
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 65 38.554688 L 67 38.554688 "/>
425
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 467 38.554688 L 469 38.554688 "/>
426
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 66 38.554688 L 468 38.554688 "/>
427
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 65 33 L 67 33 "/>
428
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-miterlimit:10;" d="M 467 33 L 469 33 "/>
429
+ <path style="fill:none;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(56%,56%,56%);stroke-opacity:0.75;stroke-dasharray:1,1;stroke-miterlimit:10;" d="M 66 33 L 468 33 "/>
430
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
431
+ <use xlink:href="#glyph1-0" x="14" y="107"/>
432
+ <use xlink:href="#glyph1-1" x="14" y="100"/>
433
+ <use xlink:href="#glyph1-2" x="14" y="93"/>
434
+ <use xlink:href="#glyph1-2" x="14" y="86"/>
435
+ <use xlink:href="#glyph1-1" x="14" y="79"/>
436
+ <use xlink:href="#glyph1-3" x="14" y="72"/>
437
+ <use xlink:href="#glyph1-4" x="14" y="65"/>
438
+ </g>
439
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
440
+ <use xlink:href="#glyph2-0" x="231" y="18"/>
441
+ <use xlink:href="#glyph2-1" x="239" y="18"/>
442
+ <use xlink:href="#glyph2-2" x="247" y="18"/>
443
+ <use xlink:href="#glyph2-3" x="255" y="18"/>
444
+ <use xlink:href="#glyph2-2" x="263" y="18"/>
445
+ <use xlink:href="#glyph2-4" x="271" y="18"/>
446
+ <use xlink:href="#glyph2-5" x="279" y="18"/>
447
+ <use xlink:href="#glyph2-6" x="287" y="18"/>
448
+ <use xlink:href="#glyph2-7" x="295" y="18"/>
449
+ </g>
450
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:0.3;">
451
+ <use xlink:href="#glyph3-0" x="485" y="5"/>
452
+ <use xlink:href="#glyph3-0" x="485" y="10"/>
453
+ <use xlink:href="#glyph3-1" x="485" y="15"/>
454
+ <use xlink:href="#glyph3-2" x="485" y="20"/>
455
+ <use xlink:href="#glyph3-3" x="485" y="25"/>
456
+ <use xlink:href="#glyph3-3" x="485" y="30"/>
457
+ <use xlink:href="#glyph3-4" x="485" y="35"/>
458
+ <use xlink:href="#glyph3-5" x="485" y="40"/>
459
+ <use xlink:href="#glyph3-6" x="485" y="45"/>
460
+ <use xlink:href="#glyph3-5" x="485" y="50"/>
461
+ <use xlink:href="#glyph3-2" x="485" y="55"/>
462
+ <use xlink:href="#glyph3-3" x="485" y="60"/>
463
+ <use xlink:href="#glyph3-7" x="485" y="65"/>
464
+ <use xlink:href="#glyph3-8" x="485" y="70"/>
465
+ <use xlink:href="#glyph3-5" x="485" y="75"/>
466
+ <use xlink:href="#glyph3-3" x="485" y="80"/>
467
+ <use xlink:href="#glyph3-9" x="485" y="85"/>
468
+ <use xlink:href="#glyph3-2" x="485" y="90"/>
469
+ <use xlink:href="#glyph3-8" x="485" y="95"/>
470
+ <use xlink:href="#glyph3-10" x="485" y="100"/>
471
+ <use xlink:href="#glyph3-9" x="485" y="105"/>
472
+ <use xlink:href="#glyph3-0" x="485" y="110"/>
473
+ </g>
474
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
475
+ <use xlink:href="#glyph4-0" x="16" y="163"/>
476
+ <use xlink:href="#glyph4-0" x="23" y="163"/>
477
+ <use xlink:href="#glyph4-1" x="30" y="163"/>
478
+ <use xlink:href="#glyph4-2" x="37" y="163"/>
479
+ <use xlink:href="#glyph4-3" x="44" y="163"/>
480
+ <use xlink:href="#glyph4-4" x="51" y="163"/>
481
+ <use xlink:href="#glyph4-5" x="58" y="163"/>
482
+ <use xlink:href="#glyph4-6" x="65" y="163"/>
483
+ </g>
484
+ <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 16 154.238281 L 16 162.640625 L 24.398438 162.640625 L 24.398438 154.238281 Z M 16 154.238281 "/>
485
+ <path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,94.117647%,0%);fill-opacity:0.666667;" d="M 16 154.238281 L 16 162.640625 L 24.398438 162.640625 L 24.398438 154.238281 Z M 16 154.238281 "/>
486
+ <path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16 162.640625 L 24.398438 162.640625 L 24.398438 154.238281 L 16 154.238281 Z M 16 162.640625 "/>
487
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
488
+ <use xlink:href="#glyph4-7" x="88" y="163"/>
489
+ <use xlink:href="#glyph4-8" x="95" y="163"/>
490
+ <use xlink:href="#glyph4-9" x="102" y="163"/>
491
+ <use xlink:href="#glyph4-10" x="109" y="163"/>
492
+ <use xlink:href="#glyph4-0" x="116" y="163"/>
493
+ <use xlink:href="#glyph4-0" x="123" y="163"/>
494
+ <use xlink:href="#glyph4-0" x="130" y="163"/>
495
+ <use xlink:href="#glyph4-11" x="137" y="163"/>
496
+ </g>
497
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
498
+ <use xlink:href="#glyph4-12" x="160" y="163"/>
499
+ <use xlink:href="#glyph4-13" x="167" y="163"/>
500
+ <use xlink:href="#glyph4-14" x="174" y="163"/>
501
+ <use xlink:href="#glyph4-10" x="181" y="163"/>
502
+ <use xlink:href="#glyph4-0" x="188" y="163"/>
503
+ <use xlink:href="#glyph4-0" x="195" y="163"/>
504
+ <use xlink:href="#glyph4-0" x="202" y="163"/>
505
+ <use xlink:href="#glyph4-15" x="209" y="163"/>
506
+ </g>
507
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
508
+ <use xlink:href="#glyph4-7" x="232" y="163"/>
509
+ <use xlink:href="#glyph4-16" x="239" y="163"/>
510
+ <use xlink:href="#glyph4-17" x="246" y="163"/>
511
+ <use xlink:href="#glyph4-10" x="253" y="163"/>
512
+ <use xlink:href="#glyph4-0" x="260" y="163"/>
513
+ <use xlink:href="#glyph4-0" x="267" y="163"/>
514
+ <use xlink:href="#glyph4-15" x="274" y="163"/>
515
+ <use xlink:href="#glyph4-18" x="281" y="163"/>
516
+ </g>
517
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
518
+ <use xlink:href="#glyph4-19" x="304" y="163"/>
519
+ <use xlink:href="#glyph4-16" x="311" y="163"/>
520
+ <use xlink:href="#glyph4-3" x="318" y="163"/>
521
+ <use xlink:href="#glyph4-4" x="325" y="163"/>
522
+ <use xlink:href="#glyph4-0" x="332" y="163"/>
523
+ <use xlink:href="#glyph4-0" x="339" y="163"/>
524
+ <use xlink:href="#glyph4-0" x="346" y="163"/>
525
+ <use xlink:href="#glyph4-20" x="353" y="163"/>
526
+ <use xlink:href="#glyph4-0" x="360" y="163"/>
527
+ </g>
528
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
529
+ <use xlink:href="#glyph4-0" x="16" y="177"/>
530
+ <use xlink:href="#glyph4-0" x="23" y="177"/>
531
+ <use xlink:href="#glyph4-21" x="30" y="177"/>
532
+ <use xlink:href="#glyph4-3" x="37" y="177"/>
533
+ <use xlink:href="#glyph4-5" x="44" y="177"/>
534
+ <use xlink:href="#glyph4-22" x="51" y="177"/>
535
+ <use xlink:href="#glyph4-3" x="58" y="177"/>
536
+ </g>
537
+ <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 16 168.238281 L 16 176.640625 L 24.398438 176.640625 L 24.398438 168.238281 Z M 16 168.238281 "/>
538
+ <path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:0.666667;" d="M 16 168.238281 L 16 176.640625 L 24.398438 176.640625 L 24.398438 168.238281 Z M 16 168.238281 "/>
539
+ <path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16 176.640625 L 24.398438 176.640625 L 24.398438 168.238281 L 16 168.238281 Z M 16 176.640625 "/>
540
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
541
+ <use xlink:href="#glyph4-7" x="81" y="177"/>
542
+ <use xlink:href="#glyph4-8" x="88" y="177"/>
543
+ <use xlink:href="#glyph4-9" x="95" y="177"/>
544
+ <use xlink:href="#glyph4-10" x="102" y="177"/>
545
+ <use xlink:href="#glyph4-0" x="109" y="177"/>
546
+ <use xlink:href="#glyph4-11" x="116" y="177"/>
547
+ <use xlink:href="#glyph4-10" x="123" y="177"/>
548
+ <use xlink:href="#glyph4-11" x="130" y="177"/>
549
+ <use xlink:href="#glyph4-11" x="137" y="177"/>
550
+ </g>
551
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
552
+ <use xlink:href="#glyph4-12" x="160" y="177"/>
553
+ <use xlink:href="#glyph4-13" x="167" y="177"/>
554
+ <use xlink:href="#glyph4-14" x="174" y="177"/>
555
+ <use xlink:href="#glyph4-10" x="181" y="177"/>
556
+ <use xlink:href="#glyph4-0" x="188" y="177"/>
557
+ <use xlink:href="#glyph4-23" x="195" y="177"/>
558
+ <use xlink:href="#glyph4-10" x="202" y="177"/>
559
+ <use xlink:href="#glyph4-24" x="209" y="177"/>
560
+ <use xlink:href="#glyph4-11" x="216" y="177"/>
561
+ </g>
562
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
563
+ <use xlink:href="#glyph4-7" x="239" y="177"/>
564
+ <use xlink:href="#glyph4-16" x="246" y="177"/>
565
+ <use xlink:href="#glyph4-17" x="253" y="177"/>
566
+ <use xlink:href="#glyph4-10" x="260" y="177"/>
567
+ <use xlink:href="#glyph4-0" x="267" y="177"/>
568
+ <use xlink:href="#glyph4-25" x="274" y="177"/>
569
+ <use xlink:href="#glyph4-26" x="281" y="177"/>
570
+ <use xlink:href="#glyph4-23" x="288" y="177"/>
571
+ <use xlink:href="#glyph4-10" x="295" y="177"/>
572
+ <use xlink:href="#glyph4-26" x="302" y="177"/>
573
+ <use xlink:href="#glyph4-25" x="309" y="177"/>
574
+ </g>
575
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
576
+ <use xlink:href="#glyph4-19" x="332" y="177"/>
577
+ <use xlink:href="#glyph4-16" x="339" y="177"/>
578
+ <use xlink:href="#glyph4-3" x="346" y="177"/>
579
+ <use xlink:href="#glyph4-4" x="353" y="177"/>
580
+ <use xlink:href="#glyph4-0" x="360" y="177"/>
581
+ <use xlink:href="#glyph4-25" x="367" y="177"/>
582
+ <use xlink:href="#glyph4-15" x="374" y="177"/>
583
+ <use xlink:href="#glyph4-10" x="381" y="177"/>
584
+ <use xlink:href="#glyph4-15" x="388" y="177"/>
585
+ <use xlink:href="#glyph4-24" x="395" y="177"/>
586
+ <use xlink:href="#glyph4-0" x="402" y="177"/>
587
+ </g>
588
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
589
+ <use xlink:href="#glyph4-0" x="16" y="191"/>
590
+ <use xlink:href="#glyph4-0" x="23" y="191"/>
591
+ <use xlink:href="#glyph4-27" x="30" y="191"/>
592
+ <use xlink:href="#glyph4-28" x="37" y="191"/>
593
+ <use xlink:href="#glyph4-29" x="44" y="191"/>
594
+ <use xlink:href="#glyph4-5" x="51" y="191"/>
595
+ </g>
596
+ <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 16 182.238281 L 16 190.640625 L 24.398438 190.640625 L 24.398438 182.238281 Z M 16 182.238281 "/>
597
+ <path style=" stroke:none;fill-rule:nonzero;fill:rgb(80%,80%,80%);fill-opacity:0.666667;" d="M 16 182.238281 L 16 190.640625 L 24.398438 190.640625 L 24.398438 182.238281 Z M 16 182.238281 "/>
598
+ <path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16 190.640625 L 24.398438 190.640625 L 24.398438 182.238281 L 16 182.238281 Z M 16 190.640625 "/>
599
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
600
+ <use xlink:href="#glyph4-7" x="74" y="191"/>
601
+ <use xlink:href="#glyph4-8" x="81" y="191"/>
602
+ <use xlink:href="#glyph4-9" x="88" y="191"/>
603
+ <use xlink:href="#glyph4-10" x="95" y="191"/>
604
+ <use xlink:href="#glyph4-0" x="102" y="191"/>
605
+ <use xlink:href="#glyph4-30" x="109" y="191"/>
606
+ <use xlink:href="#glyph4-11" x="116" y="191"/>
607
+ <use xlink:href="#glyph4-31" x="123" y="191"/>
608
+ <use xlink:href="#glyph4-10" x="130" y="191"/>
609
+ <use xlink:href="#glyph4-23" x="137" y="191"/>
610
+ <use xlink:href="#glyph4-20" x="144" y="191"/>
611
+ </g>
612
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
613
+ <use xlink:href="#glyph4-12" x="167" y="191"/>
614
+ <use xlink:href="#glyph4-13" x="174" y="191"/>
615
+ <use xlink:href="#glyph4-14" x="181" y="191"/>
616
+ <use xlink:href="#glyph4-10" x="188" y="191"/>
617
+ <use xlink:href="#glyph4-0" x="195" y="191"/>
618
+ <use xlink:href="#glyph4-26" x="202" y="191"/>
619
+ <use xlink:href="#glyph4-23" x="209" y="191"/>
620
+ <use xlink:href="#glyph4-26" x="216" y="191"/>
621
+ <use xlink:href="#glyph4-10" x="223" y="191"/>
622
+ <use xlink:href="#glyph4-30" x="230" y="191"/>
623
+ <use xlink:href="#glyph4-31" x="237" y="191"/>
624
+ </g>
625
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
626
+ <use xlink:href="#glyph4-7" x="260" y="191"/>
627
+ <use xlink:href="#glyph4-16" x="267" y="191"/>
628
+ <use xlink:href="#glyph4-17" x="274" y="191"/>
629
+ <use xlink:href="#glyph4-10" x="281" y="191"/>
630
+ <use xlink:href="#glyph4-0" x="288" y="191"/>
631
+ <use xlink:href="#glyph4-23" x="295" y="191"/>
632
+ <use xlink:href="#glyph4-31" x="302" y="191"/>
633
+ <use xlink:href="#glyph4-18" x="309" y="191"/>
634
+ <use xlink:href="#glyph4-10" x="316" y="191"/>
635
+ <use xlink:href="#glyph4-23" x="323" y="191"/>
636
+ <use xlink:href="#glyph4-24" x="330" y="191"/>
637
+ </g>
638
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
639
+ <use xlink:href="#glyph4-19" x="353" y="191"/>
640
+ <use xlink:href="#glyph4-16" x="360" y="191"/>
641
+ <use xlink:href="#glyph4-3" x="367" y="191"/>
642
+ <use xlink:href="#glyph4-4" x="374" y="191"/>
643
+ <use xlink:href="#glyph4-0" x="381" y="191"/>
644
+ <use xlink:href="#glyph4-26" x="388" y="191"/>
645
+ <use xlink:href="#glyph4-23" x="395" y="191"/>
646
+ <use xlink:href="#glyph4-25" x="402" y="191"/>
647
+ <use xlink:href="#glyph4-10" x="409" y="191"/>
648
+ <use xlink:href="#glyph4-20" x="416" y="191"/>
649
+ <use xlink:href="#glyph4-18" x="423" y="191"/>
650
+ <use xlink:href="#glyph4-0" x="430" y="191"/>
651
+ </g>
652
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
653
+ <use xlink:href="#glyph4-0" x="16" y="205"/>
654
+ <use xlink:href="#glyph4-0" x="23" y="205"/>
655
+ <use xlink:href="#glyph4-32" x="30" y="205"/>
656
+ <use xlink:href="#glyph4-8" x="37" y="205"/>
657
+ <use xlink:href="#glyph4-33" x="44" y="205"/>
658
+ <use xlink:href="#glyph4-5" x="51" y="205"/>
659
+ </g>
660
+ <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 16 196.238281 L 16 204.640625 L 24.398438 204.640625 L 24.398438 196.238281 Z M 16 196.238281 "/>
661
+ <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,0%);fill-opacity:0.666667;" d="M 16 196.238281 L 16 204.640625 L 24.398438 204.640625 L 24.398438 196.238281 Z M 16 196.238281 "/>
662
+ <path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16 204.640625 L 24.398438 204.640625 L 24.398438 196.238281 L 16 196.238281 Z M 16 204.640625 "/>
663
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
664
+ <use xlink:href="#glyph4-7" x="74" y="205"/>
665
+ <use xlink:href="#glyph4-8" x="81" y="205"/>
666
+ <use xlink:href="#glyph4-9" x="88" y="205"/>
667
+ <use xlink:href="#glyph4-10" x="95" y="205"/>
668
+ <use xlink:href="#glyph4-0" x="102" y="205"/>
669
+ <use xlink:href="#glyph4-11" x="109" y="205"/>
670
+ <use xlink:href="#glyph4-10" x="116" y="205"/>
671
+ <use xlink:href="#glyph4-11" x="123" y="205"/>
672
+ <use xlink:href="#glyph4-11" x="130" y="205"/>
673
+ </g>
674
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
675
+ <use xlink:href="#glyph4-12" x="153" y="205"/>
676
+ <use xlink:href="#glyph4-13" x="160" y="205"/>
677
+ <use xlink:href="#glyph4-14" x="167" y="205"/>
678
+ <use xlink:href="#glyph4-10" x="174" y="205"/>
679
+ <use xlink:href="#glyph4-0" x="181" y="205"/>
680
+ <use xlink:href="#glyph4-11" x="188" y="205"/>
681
+ <use xlink:href="#glyph4-10" x="195" y="205"/>
682
+ <use xlink:href="#glyph4-11" x="202" y="205"/>
683
+ <use xlink:href="#glyph4-18" x="209" y="205"/>
684
+ </g>
685
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
686
+ <use xlink:href="#glyph4-7" x="232" y="205"/>
687
+ <use xlink:href="#glyph4-16" x="239" y="205"/>
688
+ <use xlink:href="#glyph4-17" x="246" y="205"/>
689
+ <use xlink:href="#glyph4-10" x="253" y="205"/>
690
+ <use xlink:href="#glyph4-0" x="260" y="205"/>
691
+ <use xlink:href="#glyph4-25" x="267" y="205"/>
692
+ <use xlink:href="#glyph4-20" x="274" y="205"/>
693
+ <use xlink:href="#glyph4-10" x="281" y="205"/>
694
+ <use xlink:href="#glyph4-26" x="288" y="205"/>
695
+ <use xlink:href="#glyph4-31" x="295" y="205"/>
696
+ </g>
697
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
698
+ <use xlink:href="#glyph4-19" x="318" y="205"/>
699
+ <use xlink:href="#glyph4-16" x="325" y="205"/>
700
+ <use xlink:href="#glyph4-3" x="332" y="205"/>
701
+ <use xlink:href="#glyph4-4" x="339" y="205"/>
702
+ <use xlink:href="#glyph4-0" x="346" y="205"/>
703
+ <use xlink:href="#glyph4-11" x="353" y="205"/>
704
+ <use xlink:href="#glyph4-10" x="360" y="205"/>
705
+ <use xlink:href="#glyph4-11" x="367" y="205"/>
706
+ <use xlink:href="#glyph4-11" x="374" y="205"/>
707
+ <use xlink:href="#glyph4-0" x="381" y="205"/>
708
+ </g>
709
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
710
+ <use xlink:href="#glyph4-0" x="16" y="219"/>
711
+ <use xlink:href="#glyph4-0" x="23" y="219"/>
712
+ <use xlink:href="#glyph4-27" x="30" y="219"/>
713
+ <use xlink:href="#glyph4-34" x="37" y="219"/>
714
+ <use xlink:href="#glyph4-0" x="44" y="219"/>
715
+ <use xlink:href="#glyph4-35" x="51" y="219"/>
716
+ <use xlink:href="#glyph4-16" x="58" y="219"/>
717
+ <use xlink:href="#glyph4-8" x="65" y="219"/>
718
+ <use xlink:href="#glyph4-4" x="72" y="219"/>
719
+ </g>
720
+ <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 16 210.238281 L 16 218.640625 L 24.398438 218.640625 L 24.398438 210.238281 Z M 16 210.238281 "/>
721
+ <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,27.058824%,0%);fill-opacity:0.666667;" d="M 16 210.238281 L 16 218.640625 L 24.398438 218.640625 L 24.398438 210.238281 Z M 16 210.238281 "/>
722
+ <path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16 218.640625 L 24.398438 218.640625 L 24.398438 210.238281 L 16 210.238281 Z M 16 218.640625 "/>
723
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
724
+ <use xlink:href="#glyph4-7" x="95" y="219"/>
725
+ <use xlink:href="#glyph4-8" x="102" y="219"/>
726
+ <use xlink:href="#glyph4-9" x="109" y="219"/>
727
+ <use xlink:href="#glyph4-10" x="116" y="219"/>
728
+ <use xlink:href="#glyph4-0" x="123" y="219"/>
729
+ <use xlink:href="#glyph4-11" x="130" y="219"/>
730
+ <use xlink:href="#glyph4-10" x="137" y="219"/>
731
+ <use xlink:href="#glyph4-11" x="144" y="219"/>
732
+ <use xlink:href="#glyph4-18" x="151" y="219"/>
733
+ </g>
734
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
735
+ <use xlink:href="#glyph4-12" x="174" y="219"/>
736
+ <use xlink:href="#glyph4-13" x="181" y="219"/>
737
+ <use xlink:href="#glyph4-14" x="188" y="219"/>
738
+ <use xlink:href="#glyph4-10" x="195" y="219"/>
739
+ <use xlink:href="#glyph4-0" x="202" y="219"/>
740
+ <use xlink:href="#glyph4-25" x="209" y="219"/>
741
+ <use xlink:href="#glyph4-10" x="216" y="219"/>
742
+ <use xlink:href="#glyph4-11" x="223" y="219"/>
743
+ <use xlink:href="#glyph4-18" x="230" y="219"/>
744
+ </g>
745
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
746
+ <use xlink:href="#glyph4-7" x="253" y="219"/>
747
+ <use xlink:href="#glyph4-16" x="260" y="219"/>
748
+ <use xlink:href="#glyph4-17" x="267" y="219"/>
749
+ <use xlink:href="#glyph4-10" x="274" y="219"/>
750
+ <use xlink:href="#glyph4-0" x="281" y="219"/>
751
+ <use xlink:href="#glyph4-25" x="288" y="219"/>
752
+ <use xlink:href="#glyph4-18" x="295" y="219"/>
753
+ <use xlink:href="#glyph4-10" x="302" y="219"/>
754
+ <use xlink:href="#glyph4-24" x="309" y="219"/>
755
+ <use xlink:href="#glyph4-26" x="316" y="219"/>
756
+ </g>
757
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
758
+ <use xlink:href="#glyph4-19" x="339" y="219"/>
759
+ <use xlink:href="#glyph4-16" x="346" y="219"/>
760
+ <use xlink:href="#glyph4-3" x="353" y="219"/>
761
+ <use xlink:href="#glyph4-4" x="360" y="219"/>
762
+ <use xlink:href="#glyph4-0" x="367" y="219"/>
763
+ <use xlink:href="#glyph4-25" x="374" y="219"/>
764
+ <use xlink:href="#glyph4-10" x="381" y="219"/>
765
+ <use xlink:href="#glyph4-20" x="388" y="219"/>
766
+ <use xlink:href="#glyph4-30" x="395" y="219"/>
767
+ <use xlink:href="#glyph4-0" x="402" y="219"/>
768
+ </g>
769
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
770
+ <use xlink:href="#glyph4-0" x="16" y="233"/>
771
+ <use xlink:href="#glyph4-0" x="23" y="233"/>
772
+ <use xlink:href="#glyph4-1" x="30" y="233"/>
773
+ <use xlink:href="#glyph4-4" x="37" y="233"/>
774
+ <use xlink:href="#glyph4-5" x="44" y="233"/>
775
+ <use xlink:href="#glyph4-16" x="51" y="233"/>
776
+ <use xlink:href="#glyph4-29" x="58" y="233"/>
777
+ </g>
778
+ <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 16 224.238281 L 16 232.640625 L 24.398438 232.640625 L 24.398438 224.238281 Z M 16 224.238281 "/>
779
+ <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,0%,0%);fill-opacity:0.666667;" d="M 16 224.238281 L 16 232.640625 L 24.398438 232.640625 L 24.398438 224.238281 Z M 16 224.238281 "/>
780
+ <path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16 232.640625 L 24.398438 232.640625 L 24.398438 224.238281 L 16 224.238281 Z M 16 232.640625 "/>
781
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
782
+ <use xlink:href="#glyph4-7" x="81" y="233"/>
783
+ <use xlink:href="#glyph4-8" x="88" y="233"/>
784
+ <use xlink:href="#glyph4-9" x="95" y="233"/>
785
+ <use xlink:href="#glyph4-10" x="102" y="233"/>
786
+ <use xlink:href="#glyph4-0" x="109" y="233"/>
787
+ <use xlink:href="#glyph4-11" x="116" y="233"/>
788
+ <use xlink:href="#glyph4-10" x="123" y="233"/>
789
+ <use xlink:href="#glyph4-11" x="130" y="233"/>
790
+ <use xlink:href="#glyph4-11" x="137" y="233"/>
791
+ </g>
792
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
793
+ <use xlink:href="#glyph4-12" x="160" y="233"/>
794
+ <use xlink:href="#glyph4-13" x="167" y="233"/>
795
+ <use xlink:href="#glyph4-14" x="174" y="233"/>
796
+ <use xlink:href="#glyph4-10" x="181" y="233"/>
797
+ <use xlink:href="#glyph4-0" x="188" y="233"/>
798
+ <use xlink:href="#glyph4-11" x="195" y="233"/>
799
+ <use xlink:href="#glyph4-10" x="202" y="233"/>
800
+ <use xlink:href="#glyph4-11" x="209" y="233"/>
801
+ <use xlink:href="#glyph4-11" x="216" y="233"/>
802
+ </g>
803
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
804
+ <use xlink:href="#glyph4-7" x="239" y="233"/>
805
+ <use xlink:href="#glyph4-16" x="246" y="233"/>
806
+ <use xlink:href="#glyph4-17" x="253" y="233"/>
807
+ <use xlink:href="#glyph4-10" x="260" y="233"/>
808
+ <use xlink:href="#glyph4-0" x="267" y="233"/>
809
+ <use xlink:href="#glyph4-11" x="274" y="233"/>
810
+ <use xlink:href="#glyph4-10" x="281" y="233"/>
811
+ <use xlink:href="#glyph4-11" x="288" y="233"/>
812
+ <use xlink:href="#glyph4-11" x="295" y="233"/>
813
+ </g>
814
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
815
+ <use xlink:href="#glyph4-19" x="318" y="233"/>
816
+ <use xlink:href="#glyph4-16" x="325" y="233"/>
817
+ <use xlink:href="#glyph4-3" x="332" y="233"/>
818
+ <use xlink:href="#glyph4-4" x="339" y="233"/>
819
+ <use xlink:href="#glyph4-0" x="346" y="233"/>
820
+ <use xlink:href="#glyph4-11" x="353" y="233"/>
821
+ <use xlink:href="#glyph4-10" x="360" y="233"/>
822
+ <use xlink:href="#glyph4-11" x="367" y="233"/>
823
+ <use xlink:href="#glyph4-11" x="374" y="233"/>
824
+ <use xlink:href="#glyph4-0" x="381" y="233"/>
825
+ </g>
826
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
827
+ <use xlink:href="#glyph4-0" x="16" y="247"/>
828
+ <use xlink:href="#glyph4-0" x="23" y="247"/>
829
+ <use xlink:href="#glyph4-27" x="30" y="247"/>
830
+ <use xlink:href="#glyph4-36" x="37" y="247"/>
831
+ <use xlink:href="#glyph4-37" x="44" y="247"/>
832
+ </g>
833
+ <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 16 238.238281 L 16 246.640625 L 24.398438 246.640625 L 24.398438 238.238281 Z M 16 238.238281 "/>
834
+ <path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,100%,100%);fill-opacity:0.666667;" d="M 16 238.238281 L 16 246.640625 L 24.398438 246.640625 L 24.398438 238.238281 Z M 16 238.238281 "/>
835
+ <path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16 246.640625 L 24.398438 246.640625 L 24.398438 238.238281 L 16 238.238281 Z M 16 246.640625 "/>
836
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
837
+ <use xlink:href="#glyph4-7" x="67" y="247"/>
838
+ <use xlink:href="#glyph4-8" x="74" y="247"/>
839
+ <use xlink:href="#glyph4-9" x="81" y="247"/>
840
+ <use xlink:href="#glyph4-10" x="88" y="247"/>
841
+ <use xlink:href="#glyph4-0" x="95" y="247"/>
842
+ <use xlink:href="#glyph4-11" x="102" y="247"/>
843
+ <use xlink:href="#glyph4-10" x="109" y="247"/>
844
+ <use xlink:href="#glyph4-11" x="116" y="247"/>
845
+ <use xlink:href="#glyph4-11" x="123" y="247"/>
846
+ </g>
847
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
848
+ <use xlink:href="#glyph4-12" x="146" y="247"/>
849
+ <use xlink:href="#glyph4-13" x="153" y="247"/>
850
+ <use xlink:href="#glyph4-14" x="160" y="247"/>
851
+ <use xlink:href="#glyph4-10" x="167" y="247"/>
852
+ <use xlink:href="#glyph4-0" x="174" y="247"/>
853
+ <use xlink:href="#glyph4-11" x="181" y="247"/>
854
+ <use xlink:href="#glyph4-10" x="188" y="247"/>
855
+ <use xlink:href="#glyph4-11" x="195" y="247"/>
856
+ <use xlink:href="#glyph4-11" x="202" y="247"/>
857
+ </g>
858
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
859
+ <use xlink:href="#glyph4-7" x="225" y="247"/>
860
+ <use xlink:href="#glyph4-16" x="232" y="247"/>
861
+ <use xlink:href="#glyph4-17" x="239" y="247"/>
862
+ <use xlink:href="#glyph4-10" x="246" y="247"/>
863
+ <use xlink:href="#glyph4-0" x="253" y="247"/>
864
+ <use xlink:href="#glyph4-11" x="260" y="247"/>
865
+ <use xlink:href="#glyph4-10" x="267" y="247"/>
866
+ <use xlink:href="#glyph4-25" x="274" y="247"/>
867
+ <use xlink:href="#glyph4-11" x="281" y="247"/>
868
+ </g>
869
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
870
+ <use xlink:href="#glyph4-19" x="304" y="247"/>
871
+ <use xlink:href="#glyph4-16" x="311" y="247"/>
872
+ <use xlink:href="#glyph4-3" x="318" y="247"/>
873
+ <use xlink:href="#glyph4-4" x="325" y="247"/>
874
+ <use xlink:href="#glyph4-0" x="332" y="247"/>
875
+ <use xlink:href="#glyph4-11" x="339" y="247"/>
876
+ <use xlink:href="#glyph4-10" x="346" y="247"/>
877
+ <use xlink:href="#glyph4-11" x="353" y="247"/>
878
+ <use xlink:href="#glyph4-11" x="360" y="247"/>
879
+ <use xlink:href="#glyph4-0" x="367" y="247"/>
880
+ </g>
881
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
882
+ <use xlink:href="#glyph4-0" x="16" y="261"/>
883
+ <use xlink:href="#glyph4-0" x="23" y="261"/>
884
+ <use xlink:href="#glyph4-1" x="30" y="261"/>
885
+ <use xlink:href="#glyph4-38" x="37" y="261"/>
886
+ <use xlink:href="#glyph4-39" x="44" y="261"/>
887
+ <use xlink:href="#glyph4-4" x="51" y="261"/>
888
+ <use xlink:href="#glyph4-0" x="58" y="261"/>
889
+ <use xlink:href="#glyph4-27" x="65" y="261"/>
890
+ <use xlink:href="#glyph4-36" x="72" y="261"/>
891
+ <use xlink:href="#glyph4-37" x="79" y="261"/>
892
+ </g>
893
+ <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 16 252.238281 L 16 260.640625 L 24.398438 260.640625 L 24.398438 252.238281 Z M 16 252.238281 "/>
894
+ <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,0%,100%);fill-opacity:0.666667;" d="M 16 252.238281 L 16 260.640625 L 24.398438 260.640625 L 24.398438 252.238281 Z M 16 252.238281 "/>
895
+ <path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16 260.640625 L 24.398438 260.640625 L 24.398438 252.238281 L 16 252.238281 Z M 16 260.640625 "/>
896
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
897
+ <use xlink:href="#glyph4-7" x="102" y="261"/>
898
+ <use xlink:href="#glyph4-8" x="109" y="261"/>
899
+ <use xlink:href="#glyph4-9" x="116" y="261"/>
900
+ <use xlink:href="#glyph4-10" x="123" y="261"/>
901
+ <use xlink:href="#glyph4-0" x="130" y="261"/>
902
+ <use xlink:href="#glyph4-11" x="137" y="261"/>
903
+ <use xlink:href="#glyph4-10" x="144" y="261"/>
904
+ <use xlink:href="#glyph4-11" x="151" y="261"/>
905
+ <use xlink:href="#glyph4-11" x="158" y="261"/>
906
+ </g>
907
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
908
+ <use xlink:href="#glyph4-12" x="181" y="261"/>
909
+ <use xlink:href="#glyph4-13" x="188" y="261"/>
910
+ <use xlink:href="#glyph4-14" x="195" y="261"/>
911
+ <use xlink:href="#glyph4-10" x="202" y="261"/>
912
+ <use xlink:href="#glyph4-0" x="209" y="261"/>
913
+ <use xlink:href="#glyph4-11" x="216" y="261"/>
914
+ <use xlink:href="#glyph4-10" x="223" y="261"/>
915
+ <use xlink:href="#glyph4-15" x="230" y="261"/>
916
+ <use xlink:href="#glyph4-20" x="237" y="261"/>
917
+ </g>
918
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
919
+ <use xlink:href="#glyph4-7" x="260" y="261"/>
920
+ <use xlink:href="#glyph4-16" x="267" y="261"/>
921
+ <use xlink:href="#glyph4-17" x="274" y="261"/>
922
+ <use xlink:href="#glyph4-10" x="281" y="261"/>
923
+ <use xlink:href="#glyph4-0" x="288" y="261"/>
924
+ <use xlink:href="#glyph4-25" x="295" y="261"/>
925
+ <use xlink:href="#glyph4-10" x="302" y="261"/>
926
+ <use xlink:href="#glyph4-20" x="309" y="261"/>
927
+ <use xlink:href="#glyph4-24" x="316" y="261"/>
928
+ </g>
929
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
930
+ <use xlink:href="#glyph4-19" x="339" y="261"/>
931
+ <use xlink:href="#glyph4-16" x="346" y="261"/>
932
+ <use xlink:href="#glyph4-3" x="353" y="261"/>
933
+ <use xlink:href="#glyph4-4" x="360" y="261"/>
934
+ <use xlink:href="#glyph4-0" x="367" y="261"/>
935
+ <use xlink:href="#glyph4-11" x="374" y="261"/>
936
+ <use xlink:href="#glyph4-10" x="381" y="261"/>
937
+ <use xlink:href="#glyph4-15" x="388" y="261"/>
938
+ <use xlink:href="#glyph4-31" x="395" y="261"/>
939
+ <use xlink:href="#glyph4-0" x="402" y="261"/>
940
+ </g>
941
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(12%,12%,12%);stroke-opacity:1;stroke-miterlimit:10;" d="M 63 133 L 471 133 "/>
942
+ <path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(12%,12%,12%);stroke-opacity:1;stroke-miterlimit:10;" d="M 67 137 L 67 29 "/>
943
+ <path style=" stroke:none;fill-rule:nonzero;fill:rgb(50%,12%,12%);fill-opacity:1;" d="M 469 130 L 469 136 L 474 133 Z M 469 130 "/>
944
+ <path style=" stroke:none;fill-rule:nonzero;fill:rgb(50%,12%,12%);fill-opacity:1;" d="M 64 31 L 70 31 L 67 26 Z M 64 31 "/>
945
+ </g>
946
+ </svg>