bee_api 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (108) hide show
  1. data/bin/bee_api +84 -0
  2. data/lib/mdpreview.rb +80 -0
  3. data/lib/mdpreview/translator.rb +60 -0
  4. data/lib/mdpreview/version.rb +3 -0
  5. data/test/mdptest.rb +100 -0
  6. data/vendor/HISTORY.md +237 -0
  7. data/vendor/Jakefile.js +316 -0
  8. data/vendor/LICENSE +176 -0
  9. data/vendor/NOTICE +17 -0
  10. data/vendor/README.md +102 -0
  11. data/vendor/app/chrome/documentation.txt +12 -0
  12. data/vendor/app/chrome/manifest.json +24 -0
  13. data/vendor/app/web/ajax.js +43 -0
  14. data/vendor/app/web/app.css +292 -0
  15. data/vendor/app/web/app.js +377 -0
  16. data/vendor/app/web/beta/index.html +17 -0
  17. data/vendor/app/web/datapolicy.txt +48 -0
  18. data/vendor/app/web/doc/doc.css +60 -0
  19. data/vendor/app/web/doc/img/actions_menu.png +0 -0
  20. data/vendor/app/web/doc/img/button_actions_menu.png +0 -0
  21. data/vendor/app/web/doc/img/button_dragarea.png +0 -0
  22. data/vendor/app/web/doc/img/jsoneditor.png +0 -0
  23. data/vendor/app/web/doc/img/jsonformatter.png +0 -0
  24. data/vendor/app/web/doc/img/main_menu.png +0 -0
  25. data/vendor/app/web/doc/img/splitter.png +0 -0
  26. data/vendor/app/web/doc/index.html +201 -0
  27. data/vendor/app/web/favicon.ico +0 -0
  28. data/vendor/app/web/fileretriever.css +54 -0
  29. data/vendor/app/web/fileretriever.js +567 -0
  30. data/vendor/app/web/fileretriever.php +120 -0
  31. data/vendor/app/web/googlea47c4a0b36d11021.html +1 -0
  32. data/vendor/app/web/hash.js +133 -0
  33. data/vendor/app/web/img/description.txt +20 -0
  34. data/vendor/app/web/img/header_background.png +0 -0
  35. data/vendor/app/web/img/icon_128.png +0 -0
  36. data/vendor/app/web/img/icon_16.png +0 -0
  37. data/vendor/app/web/img/icon_gray.svg +151 -0
  38. data/vendor/app/web/img/icon_gray_16.svg +150 -0
  39. data/vendor/app/web/img/icon_orange.svg +151 -0
  40. data/vendor/app/web/img/logo.png +0 -0
  41. data/vendor/app/web/img/logo.xcf +0 -0
  42. data/vendor/app/web/img/logo_app.png +0 -0
  43. data/vendor/app/web/img/logo_app.xcf +0 -0
  44. data/vendor/app/web/index.html +191 -0
  45. data/vendor/app/web/notify.js +150 -0
  46. data/vendor/app/web/queryparams.js +71 -0
  47. data/vendor/app/web/robots.txt +0 -0
  48. data/vendor/app/web/splitter.js +179 -0
  49. data/vendor/app/web/test.html +224 -0
  50. data/vendor/component.json +33 -0
  51. data/vendor/docs/api.md +188 -0
  52. data/vendor/docs/usage.md +137 -0
  53. data/vendor/examples/01_basic_usage.html +45 -0
  54. data/vendor/examples/02_viewer.html +38 -0
  55. data/vendor/examples/03_switch_mode.html +98 -0
  56. data/vendor/examples/cur.file +1 -0
  57. data/vendor/examples/jquery.js +2 -0
  58. data/vendor/examples/meta.js +1 -0
  59. data/vendor/examples/requirejs_demo/requirejs_demo.html +19 -0
  60. data/vendor/examples/requirejs_demo/scripts/main.js +25 -0
  61. data/vendor/examples/requirejs_demo/scripts/require.js +35 -0
  62. data/vendor/img/jsoneditor-icons.png +0 -0
  63. data/vendor/jsoneditor-min.css +1 -0
  64. data/vendor/jsoneditor-min.js +34 -0
  65. data/vendor/jsoneditor.css +597 -0
  66. data/vendor/jsoneditor.js +6069 -0
  67. data/vendor/jsoneditor/css/contextmenu.css +219 -0
  68. data/vendor/jsoneditor/css/img/description.txt +13 -0
  69. data/vendor/jsoneditor/css/img/export.sh +16 -0
  70. data/vendor/jsoneditor/css/img/jsoneditor-icons.png +0 -0
  71. data/vendor/jsoneditor/css/img/jsoneditor-icons.svg +861 -0
  72. data/vendor/jsoneditor/css/jsoneditor.css +220 -0
  73. data/vendor/jsoneditor/css/menu.css +81 -0
  74. data/vendor/jsoneditor/css/searchbox.css +73 -0
  75. data/vendor/jsoneditor/js/appendnode.js +211 -0
  76. data/vendor/jsoneditor/js/contextmenu.js +440 -0
  77. data/vendor/jsoneditor/js/header.js +32 -0
  78. data/vendor/jsoneditor/js/highlighter.js +82 -0
  79. data/vendor/jsoneditor/js/history.js +218 -0
  80. data/vendor/jsoneditor/js/jsoneditor.js +206 -0
  81. data/vendor/jsoneditor/js/module.js +50 -0
  82. data/vendor/jsoneditor/js/node.js +2864 -0
  83. data/vendor/jsoneditor/js/searchbox.js +288 -0
  84. data/vendor/jsoneditor/js/texteditor.js +311 -0
  85. data/vendor/jsoneditor/js/treeeditor.js +770 -0
  86. data/vendor/jsoneditor/js/util.js +582 -0
  87. data/vendor/lib/ace/ace.js +11 -0
  88. data/vendor/lib/ace/mode-json.js +1 -0
  89. data/vendor/lib/ace/theme-jsoneditor.js +144 -0
  90. data/vendor/lib/ace/theme-textmate.js +163 -0
  91. data/vendor/lib/ace/worker-json.js +1 -0
  92. data/vendor/lib/jsonlint/README.md +62 -0
  93. data/vendor/lib/jsonlint/jsonlint.js +432 -0
  94. data/vendor/misc/screenshots/actionsmenu_640x400.png +0 -0
  95. data/vendor/misc/screenshots/codeeditor_640x400.png +0 -0
  96. data/vendor/misc/screenshots/description.json +17 -0
  97. data/vendor/misc/screenshots/jsoneditoronline.png +0 -0
  98. data/vendor/misc/screenshots/jsoneditoronline_640x400.png +0 -0
  99. data/vendor/misc/screenshots/search_640x400.png +0 -0
  100. data/vendor/misc/screenshots/small_tile.xcf +0 -0
  101. data/vendor/misc/screenshots/small_tile_440x280.png +0 -0
  102. data/vendor/misc/todo.txt +101 -0
  103. data/vendor/package.json +28 -0
  104. data/vendor/test/couchdbeditor.html +100 -0
  105. data/vendor/test/largefile.json +12605 -0
  106. data/vendor/test/test_ace.html +60 -0
  107. data/vendor/test/test_editable_div.html +449 -0
  108. metadata +154 -0
@@ -0,0 +1,219 @@
1
+
2
+ /* ContextMenu - main menu */
3
+
4
+ .jsoneditor-contextmenu {
5
+ position: absolute;
6
+ }
7
+
8
+ .jsoneditor-contextmenu ul {
9
+ position: relative;
10
+ left: 0;
11
+ top: 0;
12
+ width: 124px;
13
+
14
+ background: white;
15
+ border: 1px solid #d3d3d3;
16
+ box-shadow: 2px 2px 12px rgba(128, 128, 128, 0.3);
17
+
18
+ z-index: 1;
19
+ list-style: none;
20
+ margin: 0;
21
+ padding: 0;
22
+ }
23
+
24
+ .jsoneditor-contextmenu ul li button {
25
+ padding: 0;
26
+ margin: 0;
27
+ width: 124px;
28
+ height: 24px;
29
+ border: none;
30
+ cursor: pointer;
31
+ color: #4d4d4d;
32
+ background: transparent;
33
+
34
+ line-height: 24px;
35
+ text-align: left;
36
+ }
37
+
38
+ /* Fix button padding in firefox */
39
+ .jsoneditor-contextmenu ul li button::-moz-focus-inner {
40
+ padding: 0;
41
+ border: 0;
42
+ }
43
+
44
+ .jsoneditor-contextmenu ul li button:hover,
45
+ .jsoneditor-contextmenu ul li button:focus {
46
+ color: #1a1a1a;
47
+ background-color: #f5f5f5;
48
+ outline: none;
49
+ }
50
+
51
+ .jsoneditor-contextmenu ul li button.default {
52
+ width: 92px;
53
+ }
54
+
55
+ .jsoneditor-contextmenu ul li button.expand {
56
+ float: right;
57
+ width: 32px;
58
+ height: 24px;
59
+ border-left: 1px solid #e5e5e5;
60
+ }
61
+
62
+ .jsoneditor-contextmenu div.icon {
63
+ float: left;
64
+ width: 24px;
65
+ height: 24px;
66
+ border: none;
67
+ padding: 0;
68
+ margin: 0;
69
+ background-image: url('img/jsoneditor-icons.png');
70
+ }
71
+
72
+ .jsoneditor-contextmenu ul li button div.expand {
73
+ float: right;
74
+ width: 24px;
75
+ height: 24px;
76
+ padding: 0;
77
+ margin: 0 4px 0 0;
78
+ background: url('img/jsoneditor-icons.png') 0 -72px;
79
+ opacity: 0.4;
80
+ }
81
+
82
+ .jsoneditor-contextmenu ul li button:hover div.expand,
83
+ .jsoneditor-contextmenu ul li button:focus div.expand,
84
+ .jsoneditor-contextmenu ul li.selected div.expand,
85
+ .jsoneditor-contextmenu ul li button.expand:hover div.expand,
86
+ .jsoneditor-contextmenu ul li button.expand:focus div.expand {
87
+ opacity: 1;
88
+ }
89
+
90
+ .jsoneditor-contextmenu .separator {
91
+ height: 0;
92
+ border-top: 1px solid #e5e5e5;
93
+ padding-top: 5px;
94
+ margin-top: 5px;
95
+ }
96
+
97
+ .jsoneditor-contextmenu button.remove > .icon {
98
+ background-position: -24px -24px;
99
+ }
100
+ .jsoneditor-contextmenu button.remove:hover > .icon,
101
+ .jsoneditor-contextmenu button.remove:focus > .icon {
102
+ background-position: -24px 0;
103
+ }
104
+
105
+ .jsoneditor-contextmenu button.append > .icon {
106
+ background-position: 0 -24px;
107
+ }
108
+ .jsoneditor-contextmenu button.append:hover > .icon,
109
+ .jsoneditor-contextmenu button.append:focus > .icon {
110
+ background-position: 0 0;
111
+ }
112
+
113
+ .jsoneditor-contextmenu button.insert > .icon {
114
+ background-position: 0 -24px;
115
+ }
116
+ .jsoneditor-contextmenu button.insert:hover > .icon,
117
+ .jsoneditor-contextmenu button.insert:focus > .icon {
118
+ background-position: 0 0;
119
+ }
120
+
121
+ .jsoneditor-contextmenu button.duplicate > .icon {
122
+ background-position: -48px -24px;
123
+ }
124
+ .jsoneditor-contextmenu button.duplicate:hover > .icon,
125
+ .jsoneditor-contextmenu button.duplicate:focus > .icon {
126
+ background-position: -48px 0;
127
+ }
128
+
129
+ .jsoneditor-contextmenu button.sort-asc > .icon {
130
+ background-position: -168px -24px;
131
+ }
132
+ .jsoneditor-contextmenu button.sort-asc:hover > .icon,
133
+ .jsoneditor-contextmenu button.sort-asc:focus > .icon {
134
+ background-position: -168px 0;
135
+ }
136
+
137
+ .jsoneditor-contextmenu button.sort-desc > .icon {
138
+ background-position: -192px -24px;
139
+ }
140
+ .jsoneditor-contextmenu button.sort-desc:hover > .icon,
141
+ .jsoneditor-contextmenu button.sort-desc:focus > .icon {
142
+ background-position: -192px 0;
143
+ }
144
+
145
+ /* ContextMenu - sub menu */
146
+
147
+ .jsoneditor-contextmenu ul li ul li .selected {
148
+ background-color: #D5DDF6;
149
+ }
150
+
151
+ .jsoneditor-contextmenu ul li {
152
+ overflow: hidden;
153
+ }
154
+
155
+ .jsoneditor-contextmenu ul li ul {
156
+ display: none;
157
+ position: relative;
158
+ left: -10px;
159
+ top: 0;
160
+
161
+ border: none;
162
+ box-shadow: inset 0 0 10px rgba(128, 128, 128, 0.5);
163
+ padding: 0 10px;
164
+
165
+ /* TODO: transition is not supported on IE8-9 */
166
+ -webkit-transition: all 0.3s ease-out;
167
+ -moz-transition: all 0.3s ease-out;
168
+ -o-transition: all 0.3s ease-out;
169
+ transition: all 0.3s ease-out;
170
+ }
171
+
172
+ .jsoneditor-contextmenu ul li.selected ul {
173
+ }
174
+
175
+ .jsoneditor-contextmenu ul li ul li button {
176
+ padding-left: 24px;
177
+ }
178
+
179
+ .jsoneditor-contextmenu ul li ul li button:hover,
180
+ .jsoneditor-contextmenu ul li ul li button:focus {
181
+ background-color: #f5f5f5;
182
+
183
+ }
184
+
185
+ .jsoneditor-contextmenu button.type-string > .icon {
186
+ background-position: -144px -24px;
187
+ }
188
+ .jsoneditor-contextmenu button.type-string:hover > .icon,
189
+ .jsoneditor-contextmenu button.type-string:focus > .icon,
190
+ .jsoneditor-contextmenu button.type-string.selected > .icon{
191
+ background-position: -144px 0;
192
+ }
193
+
194
+ .jsoneditor-contextmenu button.type-auto > .icon {
195
+ background-position: -120px -24px;
196
+ }
197
+ .jsoneditor-contextmenu button.type-auto:hover > .icon,
198
+ .jsoneditor-contextmenu button.type-auto:focus > .icon,
199
+ .jsoneditor-contextmenu button.type-auto.selected > .icon {
200
+ background-position: -120px 0;
201
+ }
202
+
203
+ .jsoneditor-contextmenu button.type-object > .icon {
204
+ background-position: -72px -24px;
205
+ }
206
+ .jsoneditor-contextmenu button.type-object:hover > .icon,
207
+ .jsoneditor-contextmenu button.type-object:focus > .icon,
208
+ .jsoneditor-contextmenu button.type-object.selected > .icon{
209
+ background-position: -72px 0;
210
+ }
211
+
212
+ .jsoneditor-contextmenu button.type-array > .icon {
213
+ background-position: -96px -24px;
214
+ }
215
+ .jsoneditor-contextmenu button.type-array:hover > .icon,
216
+ .jsoneditor-contextmenu button.type-array:focus > .icon,
217
+ .jsoneditor-contextmenu button.type-array.selected > .icon{
218
+ background-position: -96px 0;
219
+ }
@@ -0,0 +1,13 @@
1
+ JSON Editor Online Icons
2
+
3
+ size: outer: 24x24 px
4
+ inner: 16x16 px
5
+
6
+ blue background: RGBA 97b0f8ff
7
+ gray background: RGBA d3d3d3ff
8
+
9
+ red foreground: RGBA ff0000ff
10
+ green foreground: RGBA 109618ff
11
+
12
+ characters are based on the Arial font
13
+
@@ -0,0 +1,16 @@
1
+ #!/bin/sh
2
+ # Export the SVG icons to PNG and GIF formats
3
+
4
+ echo "Exporting the SVG icons..."
5
+
6
+ outputdir=./
7
+ mogrify -format png -background transparent -path $outputdir *.svg
8
+ # mogrify -format gif -background transparent -path $outputdir dots_gray.svg
9
+ echo "PNG's exported to $outputdir"
10
+
11
+ # mogrify -format gif -background transparent -path gif *.svg
12
+ # echo "GIF's exported to /gif"
13
+ # mogrify -format png -background transparent -path png *.svg
14
+ # echo "PNG's exported to /png"
15
+
16
+ echo "Done"
@@ -0,0 +1,861 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="216"
13
+ height="168"
14
+ id="svg2"
15
+ version="1.1"
16
+ inkscape:version="0.48.3.1 r9886"
17
+ sodipodi:docname="jsoneditor-icons.svg"
18
+ inkscape:export-filename="/home/jos/jsoneditoronline/img/svg/duplicate.png"
19
+ inkscape:export-xdpi="90"
20
+ inkscape:export-ydpi="90">
21
+ <defs
22
+ id="defs4" />
23
+ <sodipodi:namedview
24
+ id="base"
25
+ pagecolor="#ffffff"
26
+ bordercolor="#666666"
27
+ borderopacity="1.0"
28
+ inkscape:pageopacity="0.0"
29
+ inkscape:pageshadow="2"
30
+ inkscape:zoom="11.313708"
31
+ inkscape:cx="61.013218"
32
+ inkscape:cy="50.052206"
33
+ inkscape:document-units="px"
34
+ inkscape:current-layer="layer1"
35
+ showgrid="false"
36
+ inkscape:snap-grids="true"
37
+ inkscape:window-width="1600"
38
+ inkscape:window-height="850"
39
+ inkscape:window-x="0"
40
+ inkscape:window-y="0"
41
+ inkscape:window-maximized="1"
42
+ showguides="true"
43
+ inkscape:guide-bbox="true" />
44
+ <metadata
45
+ id="metadata7">
46
+ <rdf:RDF>
47
+ <cc:Work
48
+ rdf:about="">
49
+ <dc:format>image/svg+xml</dc:format>
50
+ <dc:type
51
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
52
+ <dc:title />
53
+ </cc:Work>
54
+ </rdf:RDF>
55
+ </metadata>
56
+ <g
57
+ inkscape:label="Layer 1"
58
+ inkscape:groupmode="layer"
59
+ id="layer1"
60
+ transform="translate(0,-884.3622)">
61
+ <rect
62
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none"
63
+ id="rect3754"
64
+ width="16"
65
+ height="16"
66
+ x="4"
67
+ y="912.36212" />
68
+ <path
69
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
70
+ d="m 11.03125,915.7997 0,3.375 -3.4375,0 0,2.25 3.40625,0 0,3.34368 2.21875,0 0,-3.31248 3.40625,0 0,-2.3125 -3.34375,0 0,-3.375 z"
71
+ id="path4368"
72
+ inkscape:connector-curvature="0" />
73
+ <rect
74
+ style="fill:#13ae00;fill-opacity:1;stroke:none"
75
+ id="rect3754-7"
76
+ width="16"
77
+ height="16"
78
+ x="4"
79
+ y="888.36212" />
80
+ <path
81
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
82
+ d="m 11.03125,891.7997 0,3.375 -3.4375,0 0,2.25 3.40625,0 0,3.3438 2.21875,0 0,-3.3125 3.40625,0 0,-2.3125 -3.34375,0 0,-3.375 z"
83
+ id="path4368-1"
84
+ inkscape:connector-curvature="0" />
85
+ <rect
86
+ style="fill:#ff3300;fill-opacity:1;stroke:none"
87
+ id="rect3754-9"
88
+ width="16"
89
+ height="16"
90
+ x="28"
91
+ y="888.36212" />
92
+ <path
93
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
94
+ d="m 38.506909,892.34624 -2.386486,2.3865 -2.430679,-2.4307 -1.59099,1.591 2.408582,2.4086 -2.364388,2.3644 1.568893,1.5689 2.342291,-2.3423 2.408583,2.4086 1.635184,-1.6352 -2.364388,-2.3644 2.386485,-2.3865 z"
95
+ id="path4368-9"
96
+ inkscape:connector-curvature="0" />
97
+ <rect
98
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none"
99
+ id="rect3754-6"
100
+ width="16"
101
+ height="16"
102
+ x="28"
103
+ y="912.36212" />
104
+ <path
105
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
106
+ d="m 38.506909,916.34624 -2.386486,2.3865 -2.430679,-2.4307 -1.59099,1.591 2.408582,2.4086 -2.364388,2.3644 1.568893,1.56888 2.342291,-2.34228 2.408583,2.40858 1.635184,-1.63518 -2.364388,-2.3644 2.386485,-2.3865 z"
107
+ id="path4368-7"
108
+ inkscape:connector-curvature="0" />
109
+ <rect
110
+ style="fill:#97b0f8;fill-opacity:1;stroke:none"
111
+ id="rect3754-3"
112
+ width="16"
113
+ height="16"
114
+ x="52"
115
+ y="888.36212" />
116
+ <rect
117
+ style="fill:#ffffff;fill-opacity:1;stroke:#97b0f8;stroke-width:0.91546917;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
118
+ id="rect3776-1"
119
+ width="8.0845308"
120
+ height="8.0845308"
121
+ x="54.457733"
122
+ y="890.81982" />
123
+ <rect
124
+ style="fill:#ffffff;fill-opacity:1;stroke:#97b0f8;stroke-width:0.90154964;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
125
+ id="rect3776-1-6"
126
+ width="8.0984497"
127
+ height="8.0984507"
128
+ x="57.459778"
129
+ y="893.80402" />
130
+ <rect
131
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none"
132
+ id="rect3754-2"
133
+ width="16"
134
+ height="16"
135
+ x="52"
136
+ y="912.36212" />
137
+ <rect
138
+ style="fill:#ffffff;fill-opacity:1;stroke:#d3d3d3;stroke-width:0.91546917;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
139
+ id="rect3776-1-0"
140
+ width="8.0845308"
141
+ height="8.0845308"
142
+ x="54.457733"
143
+ y="914.81976" />
144
+ <rect
145
+ style="fill:#ffffff;fill-opacity:1;stroke:#d3d3d3;stroke-width:0.90154964;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
146
+ id="rect3776-1-6-4"
147
+ width="8.0984497"
148
+ height="8.0984507"
149
+ x="57.459778"
150
+ y="917.80389" />
151
+ <rect
152
+ style="fill:#97b0f8;fill-opacity:1;stroke:none"
153
+ id="rect3754-4"
154
+ width="16"
155
+ height="16"
156
+ x="76"
157
+ y="888.36212" />
158
+ <path
159
+ style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
160
+ d="m 85.10447,890.37794 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6508 2.48438,4.5781 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.707 -4.70313,-5.3125 z"
161
+ id="path4351"
162
+ inkscape:connector-curvature="0"
163
+ sodipodi:nodetypes="cccccccc" />
164
+ <path
165
+ style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
166
+ d="m 82.78125,890.36064 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6507 -2.48437,4.5781 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7071 4.70312,-5.3125 z"
167
+ id="path4351-9"
168
+ inkscape:connector-curvature="0"
169
+ sodipodi:nodetypes="cccccccc" />
170
+ <rect
171
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none"
172
+ id="rect3754-8"
173
+ width="16"
174
+ height="16"
175
+ x="76"
176
+ y="912.36212" />
177
+ <path
178
+ style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
179
+ d="m 85.10448,914.37774 -0.0156,1.4063 c 3.02668,-0.2402 0.33007,3.6508 2.48438,4.5781 -2.18695,1.0938 0.49191,4.90688 -2.45313,4.57808 l -0.0156,1.4219 c 5.70827,0.559 1.03263,-5.10048 4.70313,-5.26558 l 0,-1.4063 c -3.61304,-0.027 1.11893,-5.707 -4.70313,-5.3125 z"
180
+ id="path4351-1"
181
+ inkscape:connector-curvature="0"
182
+ sodipodi:nodetypes="cccccccc" />
183
+ <path
184
+ style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
185
+ d="m 82.78126,914.36044 0.0156,1.4063 c -3.02668,-0.2402 -0.33008,3.6507 -2.48438,4.5781 2.18694,1.0938 -0.49191,4.90688 2.45313,4.57808 l 0.0156,1.4219 c -5.70828,0.559 -1.03264,-5.10038 -4.70313,-5.26558 l 0,-1.4063 c 3.61303,-0.027 -1.11893,-5.7071 4.70313,-5.3125 z"
186
+ id="path4351-9-5"
187
+ inkscape:connector-curvature="0"
188
+ sodipodi:nodetypes="cccccccc" />
189
+ <rect
190
+ style="fill:#97b0f8;fill-opacity:1;stroke:none"
191
+ id="rect3754-25"
192
+ width="16"
193
+ height="16"
194
+ x="100"
195
+ y="888.36212" />
196
+ <path
197
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
198
+ d="m 103.719,890.03414 0,12.7188 3.03125,0 0,-1.5313 -1.34375,0 0,-9.625 1.375,0 0,-1.5625 z"
199
+ id="path2987"
200
+ inkscape:connector-curvature="0" />
201
+ <path
202
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
203
+ d="m 112.2185,890.0344 0,12.7188 -3.03125,0 0,-1.5313 1.34375,0 0,-9.625 -1.375,0 0,-1.5625 z"
204
+ id="path2987-1"
205
+ inkscape:connector-curvature="0" />
206
+ <rect
207
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none"
208
+ id="rect3754-65"
209
+ width="16"
210
+ height="16"
211
+ x="100"
212
+ y="912.36212" />
213
+ <path
214
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
215
+ d="m 103.719,914.03414 0,12.71878 3.03125,0 0,-1.5313 -1.34375,0 0,-9.62498 1.375,0 0,-1.5625 z"
216
+ id="path2987-8"
217
+ inkscape:connector-curvature="0" />
218
+ <path
219
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
220
+ d="m 112.2185,914.03414 0,12.71878 -3.03125,0 0,-1.5313 1.34375,0 0,-9.62498 -1.375,0 0,-1.5625 z"
221
+ id="path2987-1-9"
222
+ inkscape:connector-curvature="0" />
223
+ <rect
224
+ style="fill:#97b0f8;fill-opacity:1;stroke:none"
225
+ id="rect3754-73"
226
+ width="16"
227
+ height="16"
228
+ x="124"
229
+ y="888.36212" />
230
+ <path
231
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
232
+ d="m 126.2824,901.96514 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1611 -1.91903,0 z"
233
+ id="path3780"
234
+ inkscape:connector-curvature="0"
235
+ sodipodi:nodetypes="ccccccccc" />
236
+ <path
237
+ style="fill:#97b0f8;fill-opacity:1;stroke:none"
238
+ d="m 129.72704,897.84104 4.60852,0.01 -2.30426,-5.5498 z"
239
+ id="path3782"
240
+ inkscape:connector-curvature="0" />
241
+ <rect
242
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none"
243
+ id="rect3754-92"
244
+ width="16"
245
+ height="16"
246
+ x="124"
247
+ y="912.36212" />
248
+ <path
249
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
250
+ d="m 126.2824,925.96512 1.78957,0 1.14143,-2.86408 5.65364,0 1.14856,2.86408 1.76565,0 -4.78687,-11.16108 -1.91902,0 z"
251
+ id="path3780-9"
252
+ inkscape:connector-curvature="0"
253
+ sodipodi:nodetypes="ccccccccc" />
254
+ <path
255
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none"
256
+ d="m 129.72704,921.84104 4.60852,0.01 -2.30426,-5.5498 z"
257
+ id="path3782-2"
258
+ inkscape:connector-curvature="0" />
259
+ <rect
260
+ style="fill:#97b0f8;fill-opacity:1;stroke:none"
261
+ id="rect3754-35"
262
+ width="16"
263
+ height="16"
264
+ x="148"
265
+ y="888.36212" />
266
+ <path
267
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
268
+ d="m 156.47655,890.25394 0,2.1797 0.46093,2.3984 1.82813,0 0.39844,-2.3984 0,-2.1797 z"
269
+ id="path5008-2"
270
+ inkscape:connector-curvature="0"
271
+ sodipodi:nodetypes="ccccccc" />
272
+ <path
273
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
274
+ d="m 152.51561,890.25284 0,2.1797 0.46094,2.3984 1.82812,0 0.39844,-2.3984 0,-2.1797 z"
275
+ id="path5008-2-8"
276
+ inkscape:connector-curvature="0"
277
+ sodipodi:nodetypes="ccccccc" />
278
+ <rect
279
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none"
280
+ id="rect3754-47"
281
+ width="16"
282
+ height="16"
283
+ x="148"
284
+ y="912.36212" />
285
+ <path
286
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
287
+ d="m 156.47656,914.25394 0,2.1797 0.46093,2.3984 1.82813,0 0.39844,-2.3984 0,-2.1797 z"
288
+ id="path5008-2-1"
289
+ inkscape:connector-curvature="0"
290
+ sodipodi:nodetypes="ccccccc" />
291
+ <path
292
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
293
+ d="m 152.51562,914.25284 0,2.1797 0.46094,2.3984 1.82812,0 0.39844,-2.3984 0,-2.1797 z"
294
+ id="path5008-2-8-8"
295
+ inkscape:connector-curvature="0"
296
+ sodipodi:nodetypes="ccccccc" />
297
+ <path
298
+ style="opacity:0.9;fill:#4d4d4d;fill-opacity:1;stroke:none"
299
+ d="m 9.0157,940.36216 -0.0157,8 7,-3.9844 z"
300
+ id="path3055"
301
+ inkscape:connector-curvature="0"
302
+ sodipodi:nodetypes="cccc" />
303
+ <path
304
+ style="opacity:0.9;fill:#4d4d4d;fill-opacity:1;stroke:none"
305
+ d="m 16,965.37816 -8,-0.016 3.9844,7 z"
306
+ id="path3055-0"
307
+ inkscape:connector-curvature="0"
308
+ sodipodi:nodetypes="cccc" />
309
+ <path
310
+ style="opacity:0.9;fill:#4d4d4d;fill-opacity:1;stroke:none"
311
+ d="m 38.9844,940.36216 0.0156,8 -7,-3.9844 z"
312
+ id="path3055-3"
313
+ inkscape:connector-curvature="0"
314
+ sodipodi:nodetypes="cccc" />
315
+ <path
316
+ style="opacity:0.9;fill:#4d4d4d;fill-opacity:1;stroke:none"
317
+ d="m 40,971.34616 -8,0.016 3.9844,-7 z"
318
+ id="path3055-0-7"
319
+ inkscape:connector-curvature="0"
320
+ sodipodi:nodetypes="cccc" />
321
+ <rect
322
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
323
+ id="rect5073"
324
+ width="3"
325
+ height="3"
326
+ x="80"
327
+ y="936.36212" />
328
+ <rect
329
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
330
+ id="rect5073-9"
331
+ width="3"
332
+ height="3"
333
+ x="85"
334
+ y="936.36212" />
335
+ <rect
336
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
337
+ id="rect5073-6"
338
+ width="3"
339
+ height="3"
340
+ x="80"
341
+ y="942.36212" />
342
+ <rect
343
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
344
+ id="rect5073-9-3"
345
+ width="3"
346
+ height="3"
347
+ x="85"
348
+ y="942.36212" />
349
+ <rect
350
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
351
+ id="rect5073-6-5"
352
+ width="3"
353
+ height="3"
354
+ x="80"
355
+ y="948.36212" />
356
+ <rect
357
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
358
+ id="rect5073-9-3-8"
359
+ width="3"
360
+ height="3"
361
+ x="85"
362
+ y="948.36212" />
363
+ <path
364
+ sodipodi:type="arc"
365
+ style="fill:none;stroke:#4d4d4d;stroke-width:2.47487354;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
366
+ id="path3131"
367
+ sodipodi:cx="254.02811"
368
+ sodipodi:cy="10.169789"
369
+ sodipodi:rx="6.1871839"
370
+ sodipodi:ry="6.1871839"
371
+ d="m 260.21529,10.169789 c 0,3.417088 -2.7701,6.187184 -6.18718,6.187184 -3.41709,0 -6.18719,-2.770096 -6.18719,-6.187184 0,-3.417087 2.7701,-6.1871835 6.18719,-6.1871835 3.41708,0 6.18718,2.7700965 6.18718,6.1871835 z"
372
+ transform="matrix(0.8081221,0,0,0.8081221,-95.285712,934.14376)" />
373
+ <rect
374
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
375
+ id="rect3901"
376
+ width="7.0766954"
377
+ height="4.3238611"
378
+ x="-591.00507"
379
+ y="758.44751"
380
+ transform="matrix(0.72654224,-0.6871218,0.6979248,0.71617106,0,0)"
381
+ ry="0" />
382
+ <path
383
+ sodipodi:type="arc"
384
+ style="fill:none;stroke:#d3d3d3;stroke-width:2.47487354;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
385
+ id="path3131-4"
386
+ sodipodi:cx="254.02811"
387
+ sodipodi:cy="10.169789"
388
+ sodipodi:rx="6.1871839"
389
+ sodipodi:ry="6.1871839"
390
+ d="m 260.21529,10.169789 c 0,3.417088 -2.7701,6.187184 -6.18718,6.187184 -3.41709,0 -6.18719,-2.770096 -6.18719,-6.187184 0,-3.417087 2.7701,-6.1871835 6.18719,-6.1871835 3.41708,0 6.18718,2.7700965 6.18718,6.1871835 z"
391
+ transform="matrix(0.8081221,0,0,0.8081221,-95.510257,958.13856)" />
392
+ <rect
393
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none"
394
+ id="rect3901-7"
395
+ width="7.0766954"
396
+ height="4.3238611"
397
+ x="-607.91437"
398
+ y="775.72852"
399
+ transform="matrix(0.72654224,-0.6871218,0.6979248,0.71617106,0,0)"
400
+ ry="0" />
401
+ <path
402
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
403
+ d="m 139.00002,940.38016 -14,-0.018 6.9727,8 z"
404
+ id="path3055-0-6"
405
+ inkscape:connector-curvature="0"
406
+ sodipodi:nodetypes="cccc" />
407
+ <path
408
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none"
409
+ d="m 139.00002,964.38016 -14,-0.018 6.9727,8 z"
410
+ id="path3055-0-6-7"
411
+ inkscape:connector-curvature="0"
412
+ sodipodi:nodetypes="cccc" />
413
+ <path
414
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
415
+ d="m 163.00002,948.34406 -14,0.018 6.9727,-8 z"
416
+ id="path3055-0-6-3"
417
+ inkscape:connector-curvature="0"
418
+ sodipodi:nodetypes="cccc" />
419
+ <path
420
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none"
421
+ d="m 163.00002,972.34406 -14,0.018 6.9727,-8 z"
422
+ id="path3055-0-6-7-7"
423
+ inkscape:connector-curvature="0"
424
+ sodipodi:nodetypes="cccc" />
425
+ <path
426
+ sodipodi:type="arc"
427
+ style="opacity:0.8;fill:none;stroke:#4d4d4d;stroke-width:2.66157866;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
428
+ id="path4138"
429
+ sodipodi:cx="345"
430
+ sodipodi:cy="14.625"
431
+ sodipodi:rx="5.875"
432
+ sodipodi:ry="5.625"
433
+ d="m 340.84575,10.647524 c 2.29433,-2.1966988 6.01417,-2.1966988 8.3085,0 2.29433,2.196699 2.29433,5.758252 0,7.954952 C 348.05248,19.657368 346.55815,20.25 345,20.25"
434
+ transform="matrix(1.0994451,0,0,1.1555556,-343.14777,975.52466)"
435
+ sodipodi:start="3.9269908"
436
+ sodipodi:end="7.8539816"
437
+ sodipodi:open="true" />
438
+ <path
439
+ style="opacity:0.8;fill:#4d4d4d;fill-opacity:1;stroke:none"
440
+ d="m 34.502594,990.76876 -5.502916,-5.8066 -2.324753,7.7118 z"
441
+ id="path3055-0-70-1-7-5"
442
+ inkscape:connector-curvature="0"
443
+ sodipodi:nodetypes="cccc" />
444
+ <path
445
+ sodipodi:type="arc"
446
+ style="opacity:0.8;fill:none;stroke:#4d4d4d;stroke-width:2.66157866;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
447
+ id="path4138-1"
448
+ sodipodi:cx="345"
449
+ sodipodi:cy="14.625"
450
+ sodipodi:rx="5.875"
451
+ sodipodi:ry="5.625"
452
+ d="m 340.84575,10.647524 c 2.29433,-2.1966988 6.01417,-2.1966988 8.3085,0 2.29433,2.196699 2.29433,5.758252 0,7.954952 C 348.05248,19.657368 346.55815,20.25 345,20.25"
453
+ transform="matrix(-1.0994451,0,0,1.1555556,439.2678,975.46216)"
454
+ sodipodi:start="3.9269908"
455
+ sodipodi:end="7.8539816"
456
+ sodipodi:open="true" />
457
+ <path
458
+ style="opacity:0.8;fill:#4d4d4d;fill-opacity:1;stroke:none"
459
+ d="m 61.61744,990.70626 5.50291,-5.8066 2.32476,7.7118 z"
460
+ id="path3055-0-70-1-7-5-8"
461
+ inkscape:connector-curvature="0"
462
+ sodipodi:nodetypes="cccc" />
463
+ <path
464
+ style="opacity:0.8;fill:none;stroke:#4d4d4d;stroke-width:2.00000095;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
465
+ d="m 77,990.36216 14.00092,0"
466
+ id="path4946"
467
+ inkscape:connector-curvature="0" />
468
+ <path
469
+ style="opacity:0.8;fill:none;stroke:#4d4d4d;stroke-width:2.00000095;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
470
+ d="m 77,986.36216 14.00092,0"
471
+ id="path4946-0"
472
+ inkscape:connector-curvature="0" />
473
+ <path
474
+ style="opacity:0.8;fill:none;stroke:#4d4d4d;stroke-width:2.00000119;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
475
+ d="m 77.02095,1010.3622 9.99984,0"
476
+ id="path4946-8-8"
477
+ inkscape:connector-curvature="0" />
478
+ <path
479
+ style="opacity:0.8;fill:none;stroke:#4d4d4d;stroke-width:2.00000119;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
480
+ d="m 83.00001,1014.3622 7.99984,0"
481
+ id="path4946-9-8-2-3"
482
+ inkscape:connector-curvature="0" />
483
+ <path
484
+ style="opacity:0.8;fill:none;stroke:#4d4d4d;stroke-width:2.00000072;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
485
+ d="m 82.98593,1018.3622 6.99981,0"
486
+ id="path4946-9-8-2-3-7"
487
+ inkscape:connector-curvature="0" />
488
+ <path
489
+ style="opacity:0.8;fill:none;stroke:#4d4d4d;stroke-width:2.00000119;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
490
+ d="m 77,1022.3622 8.00001,0"
491
+ id="path4946-9-8-2-3-7-4"
492
+ inkscape:connector-curvature="0" />
493
+ <path
494
+ style="opacity:0.8;fill:#4d4d4d;fill-opacity:1;stroke:none"
495
+ d="m 15.969313,986.37316 -8.000009,-0.011 3.984404,5 z"
496
+ id="path3055-0-77"
497
+ inkscape:connector-curvature="0"
498
+ sodipodi:nodetypes="cccc" />
499
+ <path
500
+ style="opacity:0.8;fill:#4d4d4d;fill-opacity:1;stroke:none"
501
+ d="m 15.999313,998.35116 -8.000009,0.011 3.984405,-5 z"
502
+ id="path3055-0-7-5"
503
+ inkscape:connector-curvature="0"
504
+ sodipodi:nodetypes="cccc" />
505
+ <path
506
+ style="opacity:0.8;fill:#4d4d4d;fill-opacity:1;stroke:none"
507
+ d="m 16.000013,1011.3508 -8.000009,0.011 3.984405,-5 z"
508
+ id="path3055-0-77-3"
509
+ inkscape:connector-curvature="0"
510
+ sodipodi:nodetypes="cccc" />
511
+ <path
512
+ style="opacity:0.8;fill:#4d4d4d;fill-opacity:1;stroke:none"
513
+ d="m 16.030013,1021.3732 -8.000009,-0.011 3.984405,5 z"
514
+ id="path3055-0-7-5-7"
515
+ inkscape:connector-curvature="0"
516
+ sodipodi:nodetypes="cccc" />
517
+ <path
518
+ style="opacity:0.8;fill:none;stroke:#4d4d4d;stroke-width:2.00000119;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
519
+ d="m 5.000001,992.36216 14.000016,-0.031"
520
+ id="path5244-5-0-5"
521
+ inkscape:connector-curvature="0"
522
+ sodipodi:nodetypes="cc" />
523
+ <path
524
+ style="opacity:0.8;fill:none;stroke:#4d4d4d;stroke-width:2.00000119;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
525
+ d="m 5.000001,1016.3775 14.000016,-0.031"
526
+ id="path5244-5-0-5-8"
527
+ inkscape:connector-curvature="0"
528
+ sodipodi:nodetypes="cc" />
529
+ <rect
530
+ style="opacity:0.8;fill:#4d4d4d;fill-opacity:1;stroke:none"
531
+ id="rect3832"
532
+ width="3.0000036"
533
+ height="1.9999999"
534
+ x="10.499989"
535
+ y="1019.3621" />
536
+ <rect
537
+ style="opacity:0.8;fill:#4d4d4d;fill-opacity:1;stroke:none"
538
+ id="rect3832-8"
539
+ width="3.0000036"
540
+ height="1.9999999"
541
+ x="10.499989"
542
+ y="1011.3621" />
543
+ <rect
544
+ style="opacity:0.8;fill:#4d4d4d;fill-opacity:1;stroke:none"
545
+ id="rect3832-8-2"
546
+ width="3.0000036"
547
+ height="1.9999999"
548
+ x="10.499989"
549
+ y="984.36212" />
550
+ <rect
551
+ style="opacity:0.8;fill:#4d4d4d;fill-opacity:1;stroke:none"
552
+ id="rect3832-8-26"
553
+ width="3.0000036"
554
+ height="1.9999999"
555
+ x="10.499989"
556
+ y="998.36212" />
557
+ <rect
558
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none"
559
+ id="rect5073-4"
560
+ width="3"
561
+ height="3"
562
+ x="80"
563
+ y="960.36212" />
564
+ <rect
565
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none"
566
+ id="rect5073-9-9"
567
+ width="3"
568
+ height="3"
569
+ x="85"
570
+ y="960.36212" />
571
+ <rect
572
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none"
573
+ id="rect5073-6-2"
574
+ width="3"
575
+ height="3"
576
+ x="80"
577
+ y="966.36212" />
578
+ <rect
579
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none"
580
+ id="rect5073-9-3-6"
581
+ width="3"
582
+ height="3"
583
+ x="85"
584
+ y="966.36212" />
585
+ <rect
586
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none"
587
+ id="rect5073-6-5-7"
588
+ width="3"
589
+ height="3"
590
+ x="80"
591
+ y="972.36212" />
592
+ <rect
593
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none"
594
+ id="rect5073-9-3-8-4"
595
+ width="3"
596
+ height="3"
597
+ x="85"
598
+ y="972.36212" />
599
+ <rect
600
+ style="fill:#97b0f8;fill-opacity:1;stroke:none"
601
+ id="rect3754-3-7-4-9"
602
+ width="16"
603
+ height="16"
604
+ x="172"
605
+ y="888.36212" />
606
+ <rect
607
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
608
+ id="rect4020-8-1"
609
+ width="4"
610
+ height="2"
611
+ x="174"
612
+ y="891.36212" />
613
+ <rect
614
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
615
+ id="rect4020-7-9-7"
616
+ width="8"
617
+ height="2"
618
+ x="174"
619
+ y="895.36212" />
620
+ <rect
621
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
622
+ id="rect4020-7-9-7-2"
623
+ width="12"
624
+ height="2"
625
+ x="174"
626
+ y="899.36212" />
627
+ <rect
628
+ style="fill:#97b0f8;fill-opacity:1;stroke:none"
629
+ id="rect3754-3-7-4-9-5"
630
+ width="16"
631
+ height="16"
632
+ x="196"
633
+ y="-904.36212"
634
+ transform="scale(1,-1)" />
635
+ <path
636
+ sodipodi:type="arc"
637
+ style="opacity:0.4;fill:none;stroke:#4d4d4d;stroke-width:2.66157866;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
638
+ id="path4138-12"
639
+ sodipodi:cx="345"
640
+ sodipodi:cy="14.625"
641
+ sodipodi:rx="5.875"
642
+ sodipodi:ry="5.625"
643
+ d="M 340.84575,10.647524 A 5.875,5.625 0 1 1 345,20.25"
644
+ transform="matrix(1.0994451,0,0,1.1555556,-343.14769,999.4622)"
645
+ sodipodi:start="3.9269908"
646
+ sodipodi:end="7.8539816"
647
+ sodipodi:open="true" />
648
+ <path
649
+ style="opacity:0.4;fill:#4d4d4d;fill-opacity:1;stroke:none"
650
+ d="m 34.502669,1014.7063 -5.502916,-5.8066 -2.324753,7.7118 z"
651
+ id="path3055-0-70-1-7-5-1"
652
+ inkscape:connector-curvature="0"
653
+ sodipodi:nodetypes="cccc" />
654
+ <path
655
+ sodipodi:type="arc"
656
+ style="opacity:0.4;fill:none;stroke:#4d4d4d;stroke-width:2.66157866;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
657
+ id="path4138-1-3"
658
+ sodipodi:cx="345"
659
+ sodipodi:cy="14.625"
660
+ sodipodi:rx="5.875"
661
+ sodipodi:ry="5.625"
662
+ d="M 340.84575,10.647524 A 5.875,5.625 0 1 1 345,20.25"
663
+ transform="matrix(-1.0994451,0,0,1.1555556,439.2678,999.4622)"
664
+ sodipodi:start="3.9269908"
665
+ sodipodi:end="7.8539816"
666
+ sodipodi:open="true" />
667
+ <path
668
+ style="opacity:0.4;fill:#4d4d4d;fill-opacity:1;stroke:none"
669
+ d="m 61.61743,1014.7063 5.50292,-5.8066 2.32475,7.7118 z"
670
+ id="path3055-0-70-1-7-5-8-1"
671
+ inkscape:connector-curvature="0"
672
+ sodipodi:nodetypes="cccc" />
673
+ <rect
674
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
675
+ id="rect4020-8-1-3"
676
+ width="4"
677
+ height="2"
678
+ x="198"
679
+ y="-901.36212"
680
+ transform="scale(1,-1)" />
681
+ <rect
682
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
683
+ id="rect4020-7-9-7-3"
684
+ width="8"
685
+ height="2"
686
+ x="198"
687
+ y="-897.36212"
688
+ transform="scale(1,-1)" />
689
+ <rect
690
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
691
+ id="rect4020-7-9-7-2-6"
692
+ width="12"
693
+ height="2"
694
+ x="198"
695
+ y="-893.36212"
696
+ transform="scale(1,-1)" />
697
+ <rect
698
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none"
699
+ id="rect3754-3-7-4-9-4"
700
+ width="16"
701
+ height="16"
702
+ x="172"
703
+ y="912.36212" />
704
+ <rect
705
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
706
+ id="rect4020-8-1-5"
707
+ width="4"
708
+ height="2"
709
+ x="174"
710
+ y="915.36212" />
711
+ <rect
712
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
713
+ id="rect4020-7-9-7-4"
714
+ width="8"
715
+ height="2"
716
+ x="174"
717
+ y="919.36212" />
718
+ <rect
719
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
720
+ id="rect4020-7-9-7-2-62"
721
+ width="12"
722
+ height="2"
723
+ x="174"
724
+ y="923.36212" />
725
+ <rect
726
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none"
727
+ id="rect3754-3-7-4-9-5-8"
728
+ width="16"
729
+ height="16"
730
+ x="196"
731
+ y="-928.36212"
732
+ transform="scale(1,-1)" />
733
+ <rect
734
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
735
+ id="rect4020-8-1-3-7"
736
+ width="4"
737
+ height="2"
738
+ x="198"
739
+ y="-925.36212"
740
+ transform="scale(1,-1)" />
741
+ <rect
742
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
743
+ id="rect4020-7-9-7-3-0"
744
+ width="8"
745
+ height="2"
746
+ x="198"
747
+ y="-921.36212"
748
+ transform="scale(1,-1)" />
749
+ <rect
750
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
751
+ id="rect4020-7-9-7-2-6-4"
752
+ width="12"
753
+ height="2"
754
+ x="198"
755
+ y="-917.36212"
756
+ transform="scale(1,-1)" />
757
+ <rect
758
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none"
759
+ id="rect5073-4-4-9"
760
+ width="12"
761
+ height="13"
762
+ x="54"
763
+ y="961.36212" />
764
+ <rect
765
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
766
+ id="rect5073-6-2-7"
767
+ width="8"
768
+ height="2"
769
+ x="56"
770
+ y="963.36212" />
771
+ <rect
772
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
773
+ id="rect5073-6-2-7-7"
774
+ width="8"
775
+ height="6"
776
+ x="56"
777
+ y="966.36212" />
778
+ <rect
779
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
780
+ id="rect5073-4-4-9-0"
781
+ width="12"
782
+ height="13"
783
+ x="54"
784
+ y="937.36212" />
785
+ <rect
786
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
787
+ id="rect5073-6-2-7-9"
788
+ width="8"
789
+ height="2"
790
+ x="56"
791
+ y="939.36212" />
792
+ <rect
793
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
794
+ id="rect5073-6-2-7-7-1"
795
+ width="8"
796
+ height="6"
797
+ x="56"
798
+ y="942.36212" />
799
+ <text
800
+ xml:space="preserve"
801
+ style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.4;fill:#4d4d4d;fill-opacity:1;stroke:none;font-family:DejaVu Sans Mono;-inkscape-font-specification:DejaVu Sans Mono Bold"
802
+ x="51.834549"
803
+ y="1041.2716"
804
+ id="text3092-0"
805
+ sodipodi:linespacing="125%"
806
+ transform="scale(1.0000069,0.9999931)"><tspan
807
+ sodipodi:role="line"
808
+ id="tspan3094-3"
809
+ x="51.834549"
810
+ y="1041.2716"
811
+ style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#4d4d4d;fill-opacity:1;font-family:Arial;-inkscape-font-specification:Arial Bold">VALUE</tspan></text>
812
+ <text
813
+ xml:space="preserve"
814
+ style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.4;fill:#4d4d4d;fill-opacity:1;stroke:none;font-family:DejaVu Sans Mono;-inkscape-font-specification:DejaVu Sans Mono Bold"
815
+ x="6.0006857"
816
+ y="1041.3672"
817
+ id="text3092"
818
+ sodipodi:linespacing="125%"
819
+ transform="scale(1.0000048,0.9999952)"><tspan
820
+ sodipodi:role="line"
821
+ id="tspan3094"
822
+ x="6.0006857"
823
+ y="1041.3672"
824
+ style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#4d4d4d;fill-opacity:1;font-family:Arial;-inkscape-font-specification:Arial Bold">FIELD</tspan></text>
825
+ <flowRoot
826
+ xml:space="preserve"
827
+ id="flowRoot3921"
828
+ style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><flowRegion
829
+ id="flowRegion3923"><rect
830
+ id="rect3925"
831
+ width="88.034798"
832
+ height="61.164738"
833
+ x="-7.4246211"
834
+ y="147.45227" /></flowRegion><flowPara
835
+ id="flowPara3927" /></flowRoot> <flowRoot
836
+ xml:space="preserve"
837
+ id="flowRoot3929"
838
+ style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><flowRegion
839
+ id="flowRegion3931"><rect
840
+ id="rect3933"
841
+ width="120.20815"
842
+ height="68.942909"
843
+ x="-3.8890872"
844
+ y="146.74516" /></flowRegion><flowPara
845
+ id="flowPara3935" /></flowRoot> <flowRoot
846
+ xml:space="preserve"
847
+ id="flowRoot3937"
848
+ style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><flowRegion
849
+ id="flowRegion3939"><rect
850
+ id="rect3941"
851
+ width="63.286057"
852
+ height="64.700272"
853
+ x="-5.6568542"
854
+ y="143.56319" /></flowRegion><flowPara
855
+ id="flowPara3943" /></flowRoot> <path
856
+ style="opacity:0.8;fill:none;stroke:#4d4d4d;stroke-width:2.00000072;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
857
+ d="m 77,994.3622 6.99981,0"
858
+ id="path4946-9-8-2-3-7-3"
859
+ inkscape:connector-curvature="0" />
860
+ </g>
861
+ </svg>