Merge lp:~facundo/ubuntuone-client/states-refactor into lp:ubuntuone-client
- states-refactor
- Merge into trunk
Proposed by
Facundo Batista
on 2010-03-03
| Status: | Merged | ||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Approved by: | Eric Casteleijn on 2010-03-03 | ||||||||||||||||||||||||||||
| Approved revision: | not available | ||||||||||||||||||||||||||||
| Merged at revision: | not available | ||||||||||||||||||||||||||||
| Proposed branch: | lp:~facundo/ubuntuone-client/states-refactor | ||||||||||||||||||||||||||||
| Merge into: | lp:ubuntuone-client | ||||||||||||||||||||||||||||
| Diff against target: |
16453 lines (+11590/-2428) 19 files modified
bin/ubuntuone-syncdaemon (+0/-1) contrib/testing/testcase.py (+15/-13) data/syncdaemon.conf (+0/-5) docs/states_connection.svg (+1884/-0) docs/states_manager.svg (+7360/-622) docs/states_queues.svg (+2064/-0) tests/syncdaemon/test_action_queue.py (+108/-14) tests/syncdaemon/test_dbus.py (+28/-37) tests/syncdaemon/test_main.py (+33/-81) tests/syncdaemon/test_states.py (+0/-571) tests/syncdaemon/test_tools.py (+18/-12) tests/syncdaemon/test_u1sdtool.py (+11/-4) ubuntuone/syncdaemon/action_queue.py (+29/-37) ubuntuone/syncdaemon/dbus_interface.py (+21/-15) ubuntuone/syncdaemon/event_queue.py (+6/-8) ubuntuone/syncdaemon/main.py (+12/-14) ubuntuone/syncdaemon/state.py (+0/-117) ubuntuone/syncdaemon/states.py (+0/-876) ubuntuone/syncdaemon/tools.py (+1/-1) |
||||||||||||||||||||||||||||
| To merge this branch: | bzr merge lp:~facundo/ubuntuone-client/states-refactor | ||||||||||||||||||||||||||||
| Related bugs: |
|
| Reviewer | Review Type | Date Requested | Status |
|---|---|---|---|
| Natalia Bidart | Approve on 2010-03-04 | ||
| Eric Casteleijn (community) | Approve on 2010-03-03 | ||
| Rick McBride (community) | 2010-03-03 | Approve on 2010-03-03 | |
|
Review via email:
|
|||
Commit Message
Big States refactor.
Description of the Change
To post a comment you must log in.
| Facundo Batista (facundo) wrote : | # |
lp:~facundo/ubuntuone-client/states-refactor
updated
on 2010-03-03
- 393. By Facundo Batista on 2010-03-03
-
Small addition
lp:~facundo/ubuntuone-client/states-refactor
updated
on 2010-03-04
- 394. By Facundo Batista on 2010-03-04
-
Docstring
lp:~facundo/ubuntuone-client/states-refactor
updated
on 2010-03-04
- 395. By Facundo Batista on 2010-03-04
-
Docstrings, comments, and ordered the events by alphabetical order.
Preview Diff
[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
| 1 | === modified file 'bin/ubuntuone-syncdaemon' |
| 2 | --- bin/ubuntuone-syncdaemon 2009-12-21 22:12:20 +0000 |
| 3 | +++ bin/ubuntuone-syncdaemon 2010-03-04 14:52:23 +0000 |
| 4 | @@ -129,7 +129,6 @@ |
| 5 | realm=options.realm, mark_interval=options.mark_interval, |
| 6 | dbus_events=options.send_events_over_dbus, |
| 7 | handshake_timeout=options.handshake_timeout, |
| 8 | - max_handshake_timeouts=options.max_handshake_timeouts, |
| 9 | shares_symlink_name='Shared With Me', |
| 10 | read_limit=options.bandwidth_throttling_read_limit, |
| 11 | write_limit=options.bandwidth_throttling_write_limit, |
| 12 | |
| 13 | === modified file 'contrib/testing/testcase.py' |
| 14 | --- contrib/testing/testcase.py 2010-03-04 02:55:09 +0000 |
| 15 | +++ contrib/testing/testcase.py 2010-03-04 14:52:23 +0000 |
| 16 | @@ -122,7 +122,7 @@ |
| 17 | self.event_q = event_queue.EventQueue(self.fs) |
| 18 | self.fs.register_eq(self.event_q) |
| 19 | self.action_q = FakeActionQueue(self.event_q, main=self) |
| 20 | - self.state = main.SyncDaemonStateManager(self, 2, 0) |
| 21 | + self.state_manager = main.StateManager(self, 2) |
| 22 | self.event_q.subscribe(self.vm) |
| 23 | self.vm.init_root() |
| 24 | self.hash_q = FakeHashQueue() |
| 25 | @@ -132,39 +132,42 @@ |
| 26 | self.event_q, self.action_q) |
| 27 | |
| 28 | def _connect_aq(self, token): |
| 29 | - """ Connect the fake action queue """ |
| 30 | + """Connect the fake action queue.""" |
| 31 | self.action_q.connect() |
| 32 | |
| 33 | def _disconnect_aq(self): |
| 34 | - """ Disconnect the fake action queue """ |
| 35 | + """Disconnect the fake action queue.""" |
| 36 | self.action_q.disconnect() |
| 37 | |
| 38 | def get_access_token(self): |
| 39 | - """fake get token""" |
| 40 | + """Fake get token.""" |
| 41 | return None |
| 42 | |
| 43 | def check_version(self): |
| 44 | - """ Check the client protocol version matches that of the server. """ |
| 45 | + """Check the client protocol version matches that of the server.""" |
| 46 | self.event_q.push('SYS_PROTOCOL_VERSION_OK') |
| 47 | |
| 48 | def authenticate(self): |
| 49 | - """ Do the OAuth dance. """ |
| 50 | - self.event_q.push('SYS_OAUTH_OK') |
| 51 | + """Do the OAuth dance.""" |
| 52 | + self.event_q.push('SYS_AUTH_OK') |
| 53 | |
| 54 | def set_capabilities(self): |
| 55 | - """Set the capabilities""" |
| 56 | + """Set the capabilities.""" |
| 57 | self.event_q.push('SYS_SET_CAPABILITIES_OK') |
| 58 | |
| 59 | def get_root(self, root_mdid): |
| 60 | - """ Ask que AQ for our root's uuid. """ |
| 61 | + """Ask que AQ for our root's uuid.""" |
| 62 | return defer.succeed('root_uuid') |
| 63 | |
| 64 | def server_rescan(self): |
| 65 | - """ Do the server rescan? naaa! """ |
| 66 | - self.event_q.push('SYS_SERVER_RESCAN_STARTING') |
| 67 | + """Do the server rescan? naaa!""" |
| 68 | self.event_q.push('SYS_SERVER_RESCAN_DONE') |
| 69 | return defer.succeed('root_uuid') |
| 70 | |
| 71 | + def local_rescan(self): |
| 72 | + """Do the local rescan? naaa!""" |
| 73 | + self.event_q.push('SYS_LOCAL_RESCAN_DONE') |
| 74 | + return defer.succeed(True) |
| 75 | |
| 76 | |
| 77 | class BaseTwistedTestCase(TwistedTestCase): |
| 78 | @@ -284,8 +287,7 @@ |
| 79 | self.busName = self.dbus_iface.busName |
| 80 | self.bus.set_exit_on_disconnect(False) |
| 81 | self.dbus_iface.connect() |
| 82 | - self.event_q.push('SYS_WAIT_FOR_LOCAL_RESCAN') |
| 83 | - self.event_q.push('SYS_LOCAL_RESCAN_DONE') |
| 84 | + self.event_q.push('SYS_INIT_DONE') |
| 85 | self.signal_receivers = set() |
| 86 | self.action_q.content_queue.set_change_notification_cb( |
| 87 | self.dbus_iface.status.emit_content_queue_changed) |
| 88 | |
| 89 | === modified file 'data/syncdaemon.conf' |
| 90 | --- data/syncdaemon.conf 2010-02-15 13:53:00 +0000 |
| 91 | +++ data/syncdaemon.conf 2010-03-04 14:52:23 +0000 |
| 92 | @@ -57,11 +57,6 @@ |
| 93 | handshake_timeout.parser = int |
| 94 | handshake_timeout.help = The timeout for the connection and related states, in seconds |
| 95 | |
| 96 | -max_handshake_timeouts.default = 10 |
| 97 | -max_handshake_timeouts.parser = int |
| 98 | -max_handshake_timeouts.help = The number of consecutive handshake timeouts |
| 99 | - before we give up |
| 100 | - |
| 101 | udf_autosubscribe.default = True |
| 102 | udf_autosubscribe.parser = bool |
| 103 | udf_autosubscribe.help = Autosubsribe to new User Defined Folders, 'on' by default. |
| 104 | |
| 105 | === added file 'docs/states_connection.svg' |
| 106 | --- docs/states_connection.svg 1970-01-01 00:00:00 +0000 |
| 107 | +++ docs/states_connection.svg 2010-03-04 14:52:23 +0000 |
| 108 | @@ -0,0 +1,1884 @@ |
| 109 | +<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
| 110 | +<!-- Created with Inkscape (http://www.inkscape.org/) --> |
| 111 | + |
| 112 | +<svg |
| 113 | + xmlns:dc="http://purl.org/dc/elements/1.1/" |
| 114 | + xmlns:cc="http://creativecommons.org/ns#" |
| 115 | + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" |
| 116 | + xmlns:svg="http://www.w3.org/2000/svg" |
| 117 | + xmlns="http://www.w3.org/2000/svg" |
| 118 | + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" |
| 119 | + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" |
| 120 | + width="1052.3622" |
| 121 | + height="744.09448" |
| 122 | + id="svg2" |
| 123 | + sodipodi:version="0.32" |
| 124 | + inkscape:version="0.47pre4 r22446" |
| 125 | + version="1.0" |
| 126 | + sodipodi:docname="states_connection.svg" |
| 127 | + inkscape:output_extension="org.inkscape.output.svg.inkscape"> |
| 128 | + <sodipodi:namedview |
| 129 | + id="base" |
| 130 | + pagecolor="#ffffff" |
| 131 | + bordercolor="#666666" |
| 132 | + borderopacity="1.0" |
| 133 | + gridtolerance="10000" |
| 134 | + guidetolerance="10" |
| 135 | + objecttolerance="10" |
| 136 | + inkscape:pageopacity="0.0" |
| 137 | + inkscape:pageshadow="2" |
| 138 | + inkscape:zoom="1.0213757" |
| 139 | + inkscape:cx="526.18109" |
| 140 | + inkscape:cy="372.04724" |
| 141 | + inkscape:document-units="px" |
| 142 | + inkscape:current-layer="layer1" |
| 143 | + showgrid="false" |
| 144 | + inkscape:window-width="1920" |
| 145 | + inkscape:window-height="1008" |
| 146 | + inkscape:window-x="0" |
| 147 | + inkscape:window-y="25" |
| 148 | + inkscape:window-maximized="1" |
| 149 | + showguides="true" |
| 150 | + inkscape:guide-bbox="true" /> |
| 151 | + <defs |
| 152 | + id="defs4"> |
| 153 | + <marker |
| 154 | + inkscape:stockid="Arrow1Lstart" |
| 155 | + orient="auto" |
| 156 | + refY="0.0" |
| 157 | + refX="0.0" |
| 158 | + id="Arrow1Lstart" |
| 159 | + style="overflow:visible"> |
| 160 | + <path |
| 161 | + id="path7549" |
| 162 | + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " |
| 163 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none" |
| 164 | + transform="scale(0.8) translate(12.5,0)" /> |
| 165 | + </marker> |
| 166 | + <marker |
| 167 | + inkscape:stockid="Arrow1Mstart" |
| 168 | + orient="auto" |
| 169 | + refY="0.0" |
| 170 | + refX="0.0" |
| 171 | + id="Arrow1Mstart" |
| 172 | + style="overflow:visible"> |
| 173 | + <path |
| 174 | + id="path7555" |
| 175 | + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " |
| 176 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none" |
| 177 | + transform="scale(0.4) translate(10,0)" /> |
| 178 | + </marker> |
| 179 | + <marker |
| 180 | + inkscape:stockid="Arrow1Sstart" |
| 181 | + orient="auto" |
| 182 | + refY="0.0" |
| 183 | + refX="0.0" |
| 184 | + id="Arrow1Sstart" |
| 185 | + style="overflow:visible"> |
| 186 | + <path |
| 187 | + id="path3697" |
| 188 | + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " |
| 189 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none" |
| 190 | + transform="scale(0.2) translate(6,0)" /> |
| 191 | + </marker> |
| 192 | + <marker |
| 193 | + style="overflow:visible;" |
| 194 | + id="Arrow1Send" |
| 195 | + refX="0.0" |
| 196 | + refY="0.0" |
| 197 | + orient="auto" |
| 198 | + inkscape:stockid="Arrow1Send"> |
| 199 | + <path |
| 200 | + transform="scale(0.2) rotate(180) translate(6,0)" |
| 201 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;" |
| 202 | + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " |
| 203 | + id="path3700" /> |
| 204 | + </marker> |
| 205 | + <marker |
| 206 | + style="overflow: visible;" |
| 207 | + id="Arrow1Mend" |
| 208 | + refX="0.0" |
| 209 | + refY="0.0" |
| 210 | + orient="auto" |
| 211 | + inkscape:stockid="Arrow1Mend"> |
| 212 | + <path |
| 213 | + transform="scale(0.4, 0.4) rotate(180) translate(10)" |
| 214 | + style="fill-rule: evenodd; stroke: rgb(0, 0, 0); stroke-width: 1pt; marker-start: none;" |
| 215 | + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " |
| 216 | + id="path3429" /> |
| 217 | + </marker> |
| 218 | + <inkscape:perspective |
| 219 | + id="perspective10" |
| 220 | + inkscape:persp3d-origin="372.04724 : 350.78739 : 1" |
| 221 | + inkscape:vp_z="744.09448 : 526.18109 : 1" |
| 222 | + inkscape:vp_y="0 : 1000 : 0" |
| 223 | + inkscape:vp_x="0 : 526.18109 : 1" |
| 224 | + sodipodi:type="inkscape:persp3d" /> |
| 225 | + <inkscape:perspective |
| 226 | + sodipodi:type="inkscape:persp3d" |
| 227 | + inkscape:vp_x="0 : 0.5 : 1" |
| 228 | + inkscape:vp_y="0 : 1000 : 0" |
| 229 | + inkscape:vp_z="1 : 0.5 : 1" |
| 230 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 231 | + id="perspective4326" /> |
| 232 | + <marker |
| 233 | + style="overflow:visible" |
| 234 | + id="Arrow1Mend-9" |
| 235 | + refX="0" |
| 236 | + refY="0" |
| 237 | + orient="auto" |
| 238 | + inkscape:stockid="Arrow1Mend"> |
| 239 | + <path |
| 240 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 241 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 242 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 243 | + id="path3429-5" /> |
| 244 | + </marker> |
| 245 | + <marker |
| 246 | + style="overflow: visible;" |
| 247 | + id="Arrow1Mend1" |
| 248 | + refX="0.0" |
| 249 | + refY="0.0" |
| 250 | + orient="auto" |
| 251 | + inkscape:stockid="Arrow1Mend1"> |
| 252 | + <path |
| 253 | + transform="scale(0.4, 0.4) rotate(180) translate(10)" |
| 254 | + style="fill-rule: evenodd; marker-start: none;stroke:#00ff00; stroke: rgb(0, 0, 0); stroke-width: 1pt;fill:#00ff00" |
| 255 | + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " |
| 256 | + id="path4357" /> |
| 257 | + </marker> |
| 258 | + <marker |
| 259 | + style="overflow: visible;" |
| 260 | + id="Arrow1Mend1u" |
| 261 | + refX="0.0" |
| 262 | + refY="0.0" |
| 263 | + orient="auto" |
| 264 | + inkscape:stockid="Arrow1Mend1u"> |
| 265 | + <path |
| 266 | + transform="scale(0.4, 0.4) rotate(180) translate(10)" |
| 267 | + style="fill-rule: evenodd; marker-start: none;stroke:#00ff00; stroke: rgb(0, 0, 0); stroke-width: 1pt;fill:#00ff00" |
| 268 | + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " |
| 269 | + id="path5351" /> |
| 270 | + </marker> |
| 271 | + <inkscape:perspective |
| 272 | + sodipodi:type="inkscape:persp3d" |
| 273 | + inkscape:vp_x="0 : 0.5 : 1" |
| 274 | + inkscape:vp_y="0 : 1000 : 0" |
| 275 | + inkscape:vp_z="1 : 0.5 : 1" |
| 276 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 277 | + id="perspective5562" /> |
| 278 | + <marker |
| 279 | + style="overflow:visible" |
| 280 | + id="Arrow1Mend1u-4" |
| 281 | + refX="0" |
| 282 | + refY="0" |
| 283 | + orient="auto" |
| 284 | + inkscape:stockid="Arrow1Mend1u"> |
| 285 | + <path |
| 286 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 287 | + style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 288 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 289 | + id="path5351-6" /> |
| 290 | + </marker> |
| 291 | + <marker |
| 292 | + style="overflow: visible;" |
| 293 | + id="Arrow1Mend1u6" |
| 294 | + refX="0.0" |
| 295 | + refY="0.0" |
| 296 | + orient="auto" |
| 297 | + inkscape:stockid="Arrow1Mend1u6"> |
| 298 | + <path |
| 299 | + transform="scale(0.4, 0.4) rotate(180) translate(10)" |
| 300 | + style="fill-rule: evenodd; marker-start: none;stroke:#00ffec; stroke: rgb(0, 0, 0); stroke-width: 1pt;fill:#00ffec" |
| 301 | + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " |
| 302 | + id="path5603" /> |
| 303 | + </marker> |
| 304 | + <inkscape:perspective |
| 305 | + id="perspective5866" |
| 306 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 307 | + inkscape:vp_z="1 : 0.5 : 1" |
| 308 | + inkscape:vp_y="0 : 1000 : 0" |
| 309 | + inkscape:vp_x="0 : 0.5 : 1" |
| 310 | + sodipodi:type="inkscape:persp3d" /> |
| 311 | + <inkscape:perspective |
| 312 | + id="perspective5866-1" |
| 313 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 314 | + inkscape:vp_z="1 : 0.5 : 1" |
| 315 | + inkscape:vp_y="0 : 1000 : 0" |
| 316 | + inkscape:vp_x="0 : 0.5 : 1" |
| 317 | + sodipodi:type="inkscape:persp3d" /> |
| 318 | + <inkscape:perspective |
| 319 | + id="perspective5866-0" |
| 320 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 321 | + inkscape:vp_z="1 : 0.5 : 1" |
| 322 | + inkscape:vp_y="0 : 1000 : 0" |
| 323 | + inkscape:vp_x="0 : 0.5 : 1" |
| 324 | + sodipodi:type="inkscape:persp3d" /> |
| 325 | + <inkscape:perspective |
| 326 | + id="perspective5936" |
| 327 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 328 | + inkscape:vp_z="1 : 0.5 : 1" |
| 329 | + inkscape:vp_y="0 : 1000 : 0" |
| 330 | + inkscape:vp_x="0 : 0.5 : 1" |
| 331 | + sodipodi:type="inkscape:persp3d" /> |
| 332 | + <inkscape:perspective |
| 333 | + id="perspective5990" |
| 334 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 335 | + inkscape:vp_z="1 : 0.5 : 1" |
| 336 | + inkscape:vp_y="0 : 1000 : 0" |
| 337 | + inkscape:vp_x="0 : 0.5 : 1" |
| 338 | + sodipodi:type="inkscape:persp3d" /> |
| 339 | + <inkscape:perspective |
| 340 | + id="perspective5990-1" |
| 341 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 342 | + inkscape:vp_z="1 : 0.5 : 1" |
| 343 | + inkscape:vp_y="0 : 1000 : 0" |
| 344 | + inkscape:vp_x="0 : 0.5 : 1" |
| 345 | + sodipodi:type="inkscape:persp3d" /> |
| 346 | + <inkscape:perspective |
| 347 | + id="perspective3695" |
| 348 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 349 | + inkscape:vp_z="1 : 0.5 : 1" |
| 350 | + inkscape:vp_y="0 : 1000 : 0" |
| 351 | + inkscape:vp_x="0 : 0.5 : 1" |
| 352 | + sodipodi:type="inkscape:persp3d" /> |
| 353 | + <marker |
| 354 | + style="overflow:visible" |
| 355 | + id="Arrow1Mend-6" |
| 356 | + refX="0" |
| 357 | + refY="0" |
| 358 | + orient="auto" |
| 359 | + inkscape:stockid="Arrow1Mend"> |
| 360 | + <path |
| 361 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 362 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 363 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 364 | + id="path3429-2" /> |
| 365 | + </marker> |
| 366 | + <inkscape:perspective |
| 367 | + id="perspective3723" |
| 368 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 369 | + inkscape:vp_z="1 : 0.5 : 1" |
| 370 | + inkscape:vp_y="0 : 1000 : 0" |
| 371 | + inkscape:vp_x="0 : 0.5 : 1" |
| 372 | + sodipodi:type="inkscape:persp3d" /> |
| 373 | + <marker |
| 374 | + style="overflow:visible" |
| 375 | + id="Arrow1Mend-7" |
| 376 | + refX="0" |
| 377 | + refY="0" |
| 378 | + orient="auto" |
| 379 | + inkscape:stockid="Arrow1Mend"> |
| 380 | + <path |
| 381 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 382 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 383 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 384 | + id="path3429-7" /> |
| 385 | + </marker> |
| 386 | + <marker |
| 387 | + style="overflow:visible" |
| 388 | + id="marker3729" |
| 389 | + refX="0" |
| 390 | + refY="0" |
| 391 | + orient="auto" |
| 392 | + inkscape:stockid="Arrow1Mend"> |
| 393 | + <path |
| 394 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 395 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 396 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 397 | + id="path3731" /> |
| 398 | + </marker> |
| 399 | + <inkscape:perspective |
| 400 | + id="perspective3762" |
| 401 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 402 | + inkscape:vp_z="1 : 0.5 : 1" |
| 403 | + inkscape:vp_y="0 : 1000 : 0" |
| 404 | + inkscape:vp_x="0 : 0.5 : 1" |
| 405 | + sodipodi:type="inkscape:persp3d" /> |
| 406 | + <marker |
| 407 | + style="overflow:visible" |
| 408 | + id="Arrow1Mend-2" |
| 409 | + refX="0" |
| 410 | + refY="0" |
| 411 | + orient="auto" |
| 412 | + inkscape:stockid="Arrow1Mend"> |
| 413 | + <path |
| 414 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 415 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 416 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 417 | + id="path3429-1" /> |
| 418 | + </marker> |
| 419 | + <marker |
| 420 | + style="overflow:visible" |
| 421 | + id="marker3768" |
| 422 | + refX="0" |
| 423 | + refY="0" |
| 424 | + orient="auto" |
| 425 | + inkscape:stockid="Arrow1Mend"> |
| 426 | + <path |
| 427 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 428 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 429 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 430 | + id="path3770" /> |
| 431 | + </marker> |
| 432 | + <inkscape:perspective |
| 433 | + id="perspective3801" |
| 434 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 435 | + inkscape:vp_z="1 : 0.5 : 1" |
| 436 | + inkscape:vp_y="0 : 1000 : 0" |
| 437 | + inkscape:vp_x="0 : 0.5 : 1" |
| 438 | + sodipodi:type="inkscape:persp3d" /> |
| 439 | + <marker |
| 440 | + style="overflow:visible" |
| 441 | + id="Arrow1Mend-5" |
| 442 | + refX="0" |
| 443 | + refY="0" |
| 444 | + orient="auto" |
| 445 | + inkscape:stockid="Arrow1Mend"> |
| 446 | + <path |
| 447 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 448 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 449 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 450 | + id="path3429-8" /> |
| 451 | + </marker> |
| 452 | + <inkscape:perspective |
| 453 | + id="perspective3829" |
| 454 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 455 | + inkscape:vp_z="1 : 0.5 : 1" |
| 456 | + inkscape:vp_y="0 : 1000 : 0" |
| 457 | + inkscape:vp_x="0 : 0.5 : 1" |
| 458 | + sodipodi:type="inkscape:persp3d" /> |
| 459 | + <marker |
| 460 | + style="overflow:visible" |
| 461 | + id="Arrow1Mend-4" |
| 462 | + refX="0" |
| 463 | + refY="0" |
| 464 | + orient="auto" |
| 465 | + inkscape:stockid="Arrow1Mend"> |
| 466 | + <path |
| 467 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 468 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 469 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 470 | + id="path3429-6" /> |
| 471 | + </marker> |
| 472 | + <marker |
| 473 | + style="overflow:visible" |
| 474 | + id="marker3835" |
| 475 | + refX="0" |
| 476 | + refY="0" |
| 477 | + orient="auto" |
| 478 | + inkscape:stockid="Arrow1Mend"> |
| 479 | + <path |
| 480 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 481 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 482 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 483 | + id="path3837" /> |
| 484 | + </marker> |
| 485 | + <inkscape:perspective |
| 486 | + id="perspective3872" |
| 487 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 488 | + inkscape:vp_z="1 : 0.5 : 1" |
| 489 | + inkscape:vp_y="0 : 1000 : 0" |
| 490 | + inkscape:vp_x="0 : 0.5 : 1" |
| 491 | + sodipodi:type="inkscape:persp3d" /> |
| 492 | + <inkscape:perspective |
| 493 | + id="perspective3872-0" |
| 494 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 495 | + inkscape:vp_z="1 : 0.5 : 1" |
| 496 | + inkscape:vp_y="0 : 1000 : 0" |
| 497 | + inkscape:vp_x="0 : 0.5 : 1" |
| 498 | + sodipodi:type="inkscape:persp3d" /> |
| 499 | + <inkscape:perspective |
| 500 | + id="perspective3872-5" |
| 501 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 502 | + inkscape:vp_z="1 : 0.5 : 1" |
| 503 | + inkscape:vp_y="0 : 1000 : 0" |
| 504 | + inkscape:vp_x="0 : 0.5 : 1" |
| 505 | + sodipodi:type="inkscape:persp3d" /> |
| 506 | + <inkscape:perspective |
| 507 | + id="perspective3919" |
| 508 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 509 | + inkscape:vp_z="1 : 0.5 : 1" |
| 510 | + inkscape:vp_y="0 : 1000 : 0" |
| 511 | + inkscape:vp_x="0 : 0.5 : 1" |
| 512 | + sodipodi:type="inkscape:persp3d" /> |
| 513 | + <inkscape:perspective |
| 514 | + id="perspective3944" |
| 515 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 516 | + inkscape:vp_z="1 : 0.5 : 1" |
| 517 | + inkscape:vp_y="0 : 1000 : 0" |
| 518 | + inkscape:vp_x="0 : 0.5 : 1" |
| 519 | + sodipodi:type="inkscape:persp3d" /> |
| 520 | + <inkscape:perspective |
| 521 | + id="perspective3969" |
| 522 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 523 | + inkscape:vp_z="1 : 0.5 : 1" |
| 524 | + inkscape:vp_y="0 : 1000 : 0" |
| 525 | + inkscape:vp_x="0 : 0.5 : 1" |
| 526 | + sodipodi:type="inkscape:persp3d" /> |
| 527 | + <inkscape:perspective |
| 528 | + id="perspective3994" |
| 529 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 530 | + inkscape:vp_z="1 : 0.5 : 1" |
| 531 | + inkscape:vp_y="0 : 1000 : 0" |
| 532 | + inkscape:vp_x="0 : 0.5 : 1" |
| 533 | + sodipodi:type="inkscape:persp3d" /> |
| 534 | + <inkscape:perspective |
| 535 | + id="perspective4019" |
| 536 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 537 | + inkscape:vp_z="1 : 0.5 : 1" |
| 538 | + inkscape:vp_y="0 : 1000 : 0" |
| 539 | + inkscape:vp_x="0 : 0.5 : 1" |
| 540 | + sodipodi:type="inkscape:persp3d" /> |
| 541 | + <marker |
| 542 | + style="overflow:visible" |
| 543 | + id="Arrow1Mend1u-7" |
| 544 | + refX="0" |
| 545 | + refY="0" |
| 546 | + orient="auto" |
| 547 | + inkscape:stockid="Arrow1Mend1u"> |
| 548 | + <path |
| 549 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 550 | + style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 551 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 552 | + id="path5351-0" /> |
| 553 | + </marker> |
| 554 | + <inkscape:perspective |
| 555 | + id="perspective4047" |
| 556 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 557 | + inkscape:vp_z="1 : 0.5 : 1" |
| 558 | + inkscape:vp_y="0 : 1000 : 0" |
| 559 | + inkscape:vp_x="0 : 0.5 : 1" |
| 560 | + sodipodi:type="inkscape:persp3d" /> |
| 561 | + <marker |
| 562 | + style="overflow:visible" |
| 563 | + id="Arrow1Mend1u-42" |
| 564 | + refX="0" |
| 565 | + refY="0" |
| 566 | + orient="auto" |
| 567 | + inkscape:stockid="Arrow1Mend1u"> |
| 568 | + <path |
| 569 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 570 | + style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 571 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 572 | + id="path5351-2" /> |
| 573 | + </marker> |
| 574 | + <inkscape:perspective |
| 575 | + id="perspective4075" |
| 576 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 577 | + inkscape:vp_z="1 : 0.5 : 1" |
| 578 | + inkscape:vp_y="0 : 1000 : 0" |
| 579 | + inkscape:vp_x="0 : 0.5 : 1" |
| 580 | + sodipodi:type="inkscape:persp3d" /> |
| 581 | + <marker |
| 582 | + style="overflow:visible" |
| 583 | + id="Arrow1Mend1u-44" |
| 584 | + refX="0" |
| 585 | + refY="0" |
| 586 | + orient="auto" |
| 587 | + inkscape:stockid="Arrow1Mend1u"> |
| 588 | + <path |
| 589 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 590 | + style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 591 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 592 | + id="path5351-06" /> |
| 593 | + </marker> |
| 594 | + <inkscape:perspective |
| 595 | + id="perspective4103" |
| 596 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 597 | + inkscape:vp_z="1 : 0.5 : 1" |
| 598 | + inkscape:vp_y="0 : 1000 : 0" |
| 599 | + inkscape:vp_x="0 : 0.5 : 1" |
| 600 | + sodipodi:type="inkscape:persp3d" /> |
| 601 | + <marker |
| 602 | + style="overflow:visible" |
| 603 | + id="Arrow1Mend-69" |
| 604 | + refX="0" |
| 605 | + refY="0" |
| 606 | + orient="auto" |
| 607 | + inkscape:stockid="Arrow1Mend"> |
| 608 | + <path |
| 609 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 610 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 611 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 612 | + id="path3429-76" /> |
| 613 | + </marker> |
| 614 | + <inkscape:perspective |
| 615 | + id="perspective4161" |
| 616 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 617 | + inkscape:vp_z="1 : 0.5 : 1" |
| 618 | + inkscape:vp_y="0 : 1000 : 0" |
| 619 | + inkscape:vp_x="0 : 0.5 : 1" |
| 620 | + sodipodi:type="inkscape:persp3d" /> |
| 621 | + <inkscape:perspective |
| 622 | + id="perspective4186" |
| 623 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 624 | + inkscape:vp_z="1 : 0.5 : 1" |
| 625 | + inkscape:vp_y="0 : 1000 : 0" |
| 626 | + inkscape:vp_x="0 : 0.5 : 1" |
| 627 | + sodipodi:type="inkscape:persp3d" /> |
| 628 | + <marker |
| 629 | + style="overflow:visible" |
| 630 | + id="Arrow1Mend-91" |
| 631 | + refX="0" |
| 632 | + refY="0" |
| 633 | + orient="auto" |
| 634 | + inkscape:stockid="Arrow1Mend"> |
| 635 | + <path |
| 636 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 637 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 638 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 639 | + id="path3429-24" /> |
| 640 | + </marker> |
| 641 | + <inkscape:perspective |
| 642 | + id="perspective4186-3" |
| 643 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 644 | + inkscape:vp_z="1 : 0.5 : 1" |
| 645 | + inkscape:vp_y="0 : 1000 : 0" |
| 646 | + inkscape:vp_x="0 : 0.5 : 1" |
| 647 | + sodipodi:type="inkscape:persp3d" /> |
| 648 | + <marker |
| 649 | + style="overflow:visible" |
| 650 | + id="Arrow1Mend-25" |
| 651 | + refX="0" |
| 652 | + refY="0" |
| 653 | + orient="auto" |
| 654 | + inkscape:stockid="Arrow1Mend"> |
| 655 | + <path |
| 656 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 657 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 658 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 659 | + id="path3429-13" /> |
| 660 | + </marker> |
| 661 | + <inkscape:perspective |
| 662 | + id="perspective4237" |
| 663 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 664 | + inkscape:vp_z="1 : 0.5 : 1" |
| 665 | + inkscape:vp_y="0 : 1000 : 0" |
| 666 | + inkscape:vp_x="0 : 0.5 : 1" |
| 667 | + sodipodi:type="inkscape:persp3d" /> |
| 668 | + <marker |
| 669 | + style="overflow:visible" |
| 670 | + id="Arrow1Mend1u-8" |
| 671 | + refX="0" |
| 672 | + refY="0" |
| 673 | + orient="auto" |
| 674 | + inkscape:stockid="Arrow1Mend1u"> |
| 675 | + <path |
| 676 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 677 | + style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 678 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 679 | + id="path5351-3" /> |
| 680 | + </marker> |
| 681 | + <inkscape:perspective |
| 682 | + id="perspective4265" |
| 683 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 684 | + inkscape:vp_z="1 : 0.5 : 1" |
| 685 | + inkscape:vp_y="0 : 1000 : 0" |
| 686 | + inkscape:vp_x="0 : 0.5 : 1" |
| 687 | + sodipodi:type="inkscape:persp3d" /> |
| 688 | + <marker |
| 689 | + style="overflow:visible" |
| 690 | + id="Arrow1Mend1u6-2" |
| 691 | + refX="0" |
| 692 | + refY="0" |
| 693 | + orient="auto" |
| 694 | + inkscape:stockid="Arrow1Mend1u6"> |
| 695 | + <path |
| 696 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 697 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 698 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 699 | + id="path5603-5" /> |
| 700 | + </marker> |
| 701 | + <inkscape:perspective |
| 702 | + id="perspective4292" |
| 703 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 704 | + inkscape:vp_z="1 : 0.5 : 1" |
| 705 | + inkscape:vp_y="0 : 1000 : 0" |
| 706 | + inkscape:vp_x="0 : 0.5 : 1" |
| 707 | + sodipodi:type="inkscape:persp3d" /> |
| 708 | + <marker |
| 709 | + style="overflow:visible" |
| 710 | + id="Arrow1Mend1u6-1" |
| 711 | + refX="0" |
| 712 | + refY="0" |
| 713 | + orient="auto" |
| 714 | + inkscape:stockid="Arrow1Mend1u6"> |
| 715 | + <path |
| 716 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 717 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 718 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 719 | + id="path5603-6" /> |
| 720 | + </marker> |
| 721 | + <inkscape:perspective |
| 722 | + id="perspective4320" |
| 723 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 724 | + inkscape:vp_z="1 : 0.5 : 1" |
| 725 | + inkscape:vp_y="0 : 1000 : 0" |
| 726 | + inkscape:vp_x="0 : 0.5 : 1" |
| 727 | + sodipodi:type="inkscape:persp3d" /> |
| 728 | + <marker |
| 729 | + style="overflow:visible" |
| 730 | + id="Arrow1Mend1u6-8" |
| 731 | + refX="0" |
| 732 | + refY="0" |
| 733 | + orient="auto" |
| 734 | + inkscape:stockid="Arrow1Mend1u6"> |
| 735 | + <path |
| 736 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 737 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 738 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 739 | + id="path5603-9" /> |
| 740 | + </marker> |
| 741 | + <inkscape:perspective |
| 742 | + id="perspective4348" |
| 743 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 744 | + inkscape:vp_z="1 : 0.5 : 1" |
| 745 | + inkscape:vp_y="0 : 1000 : 0" |
| 746 | + inkscape:vp_x="0 : 0.5 : 1" |
| 747 | + sodipodi:type="inkscape:persp3d" /> |
| 748 | + <inkscape:perspective |
| 749 | + id="perspective4400" |
| 750 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 751 | + inkscape:vp_z="1 : 0.5 : 1" |
| 752 | + inkscape:vp_y="0 : 1000 : 0" |
| 753 | + inkscape:vp_x="0 : 0.5 : 1" |
| 754 | + sodipodi:type="inkscape:persp3d" /> |
| 755 | + <inkscape:perspective |
| 756 | + id="perspective4425" |
| 757 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 758 | + inkscape:vp_z="1 : 0.5 : 1" |
| 759 | + inkscape:vp_y="0 : 1000 : 0" |
| 760 | + inkscape:vp_x="0 : 0.5 : 1" |
| 761 | + sodipodi:type="inkscape:persp3d" /> |
| 762 | + <inkscape:perspective |
| 763 | + id="perspective4450" |
| 764 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 765 | + inkscape:vp_z="1 : 0.5 : 1" |
| 766 | + inkscape:vp_y="0 : 1000 : 0" |
| 767 | + inkscape:vp_x="0 : 0.5 : 1" |
| 768 | + sodipodi:type="inkscape:persp3d" /> |
| 769 | + <marker |
| 770 | + style="overflow:visible" |
| 771 | + id="Arrow1Mend1u6-6" |
| 772 | + refX="0" |
| 773 | + refY="0" |
| 774 | + orient="auto" |
| 775 | + inkscape:stockid="Arrow1Mend1u6"> |
| 776 | + <path |
| 777 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 778 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 779 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 780 | + id="path5603-96" /> |
| 781 | + </marker> |
| 782 | + <inkscape:perspective |
| 783 | + id="perspective4450-1" |
| 784 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 785 | + inkscape:vp_z="1 : 0.5 : 1" |
| 786 | + inkscape:vp_y="0 : 1000 : 0" |
| 787 | + inkscape:vp_x="0 : 0.5 : 1" |
| 788 | + sodipodi:type="inkscape:persp3d" /> |
| 789 | + <marker |
| 790 | + style="overflow:visible" |
| 791 | + id="Arrow1Mend1u6-7" |
| 792 | + refX="0" |
| 793 | + refY="0" |
| 794 | + orient="auto" |
| 795 | + inkscape:stockid="Arrow1Mend1u6"> |
| 796 | + <path |
| 797 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 798 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 799 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 800 | + id="path5603-55" /> |
| 801 | + </marker> |
| 802 | + <inkscape:perspective |
| 803 | + id="perspective4491" |
| 804 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 805 | + inkscape:vp_z="1 : 0.5 : 1" |
| 806 | + inkscape:vp_y="0 : 1000 : 0" |
| 807 | + inkscape:vp_x="0 : 0.5 : 1" |
| 808 | + sodipodi:type="inkscape:persp3d" /> |
| 809 | + <inkscape:perspective |
| 810 | + id="perspective4516" |
| 811 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 812 | + inkscape:vp_z="1 : 0.5 : 1" |
| 813 | + inkscape:vp_y="0 : 1000 : 0" |
| 814 | + inkscape:vp_x="0 : 0.5 : 1" |
| 815 | + sodipodi:type="inkscape:persp3d" /> |
| 816 | + <inkscape:perspective |
| 817 | + id="perspective4516-9" |
| 818 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 819 | + inkscape:vp_z="1 : 0.5 : 1" |
| 820 | + inkscape:vp_y="0 : 1000 : 0" |
| 821 | + inkscape:vp_x="0 : 0.5 : 1" |
| 822 | + sodipodi:type="inkscape:persp3d" /> |
| 823 | + <inkscape:perspective |
| 824 | + id="perspective4552" |
| 825 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 826 | + inkscape:vp_z="1 : 0.5 : 1" |
| 827 | + inkscape:vp_y="0 : 1000 : 0" |
| 828 | + inkscape:vp_x="0 : 0.5 : 1" |
| 829 | + sodipodi:type="inkscape:persp3d" /> |
| 830 | + <marker |
| 831 | + style="overflow:visible" |
| 832 | + id="Arrow1Mend1u6-81" |
| 833 | + refX="0" |
| 834 | + refY="0" |
| 835 | + orient="auto" |
| 836 | + inkscape:stockid="Arrow1Mend1u6"> |
| 837 | + <path |
| 838 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 839 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 840 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 841 | + id="path5603-65" /> |
| 842 | + </marker> |
| 843 | + <inkscape:perspective |
| 844 | + id="perspective4580" |
| 845 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 846 | + inkscape:vp_z="1 : 0.5 : 1" |
| 847 | + inkscape:vp_y="0 : 1000 : 0" |
| 848 | + inkscape:vp_x="0 : 0.5 : 1" |
| 849 | + sodipodi:type="inkscape:persp3d" /> |
| 850 | + <marker |
| 851 | + style="overflow:visible" |
| 852 | + id="Arrow1Mend1u6-3" |
| 853 | + refX="0" |
| 854 | + refY="0" |
| 855 | + orient="auto" |
| 856 | + inkscape:stockid="Arrow1Mend1u6"> |
| 857 | + <path |
| 858 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 859 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 860 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 861 | + id="path5603-62" /> |
| 862 | + </marker> |
| 863 | + <inkscape:perspective |
| 864 | + id="perspective4608" |
| 865 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 866 | + inkscape:vp_z="1 : 0.5 : 1" |
| 867 | + inkscape:vp_y="0 : 1000 : 0" |
| 868 | + inkscape:vp_x="0 : 0.5 : 1" |
| 869 | + sodipodi:type="inkscape:persp3d" /> |
| 870 | + <marker |
| 871 | + style="overflow:visible" |
| 872 | + id="Arrow1Mend1u-9" |
| 873 | + refX="0" |
| 874 | + refY="0" |
| 875 | + orient="auto" |
| 876 | + inkscape:stockid="Arrow1Mend1u"> |
| 877 | + <path |
| 878 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 879 | + style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 880 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 881 | + id="path5351-7" /> |
| 882 | + </marker> |
| 883 | + <inkscape:perspective |
| 884 | + id="perspective5125" |
| 885 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 886 | + inkscape:vp_z="1 : 0.5 : 1" |
| 887 | + inkscape:vp_y="0 : 1000 : 0" |
| 888 | + inkscape:vp_x="0 : 0.5 : 1" |
| 889 | + sodipodi:type="inkscape:persp3d" /> |
| 890 | + <inkscape:perspective |
| 891 | + id="perspective5147" |
| 892 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 893 | + inkscape:vp_z="1 : 0.5 : 1" |
| 894 | + inkscape:vp_y="0 : 1000 : 0" |
| 895 | + inkscape:vp_x="0 : 0.5 : 1" |
| 896 | + sodipodi:type="inkscape:persp3d" /> |
| 897 | + <inkscape:perspective |
| 898 | + id="perspective5172" |
| 899 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 900 | + inkscape:vp_z="1 : 0.5 : 1" |
| 901 | + inkscape:vp_y="0 : 1000 : 0" |
| 902 | + inkscape:vp_x="0 : 0.5 : 1" |
| 903 | + sodipodi:type="inkscape:persp3d" /> |
| 904 | + <inkscape:perspective |
| 905 | + id="perspective5197" |
| 906 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 907 | + inkscape:vp_z="1 : 0.5 : 1" |
| 908 | + inkscape:vp_y="0 : 1000 : 0" |
| 909 | + inkscape:vp_x="0 : 0.5 : 1" |
| 910 | + sodipodi:type="inkscape:persp3d" /> |
| 911 | + <marker |
| 912 | + style="overflow:visible" |
| 913 | + id="Arrow1Mend1u6-5" |
| 914 | + refX="0" |
| 915 | + refY="0" |
| 916 | + orient="auto" |
| 917 | + inkscape:stockid="Arrow1Mend1u6"> |
| 918 | + <path |
| 919 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 920 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 921 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 922 | + id="path5603-7" /> |
| 923 | + </marker> |
| 924 | + <marker |
| 925 | + style="overflow:visible" |
| 926 | + id="marker5203" |
| 927 | + refX="0" |
| 928 | + refY="0" |
| 929 | + orient="auto" |
| 930 | + inkscape:stockid="Arrow1Mend1u6"> |
| 931 | + <path |
| 932 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 933 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 934 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 935 | + id="path5205" /> |
| 936 | + </marker> |
| 937 | + <inkscape:perspective |
| 938 | + id="perspective5263" |
| 939 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 940 | + inkscape:vp_z="1 : 0.5 : 1" |
| 941 | + inkscape:vp_y="0 : 1000 : 0" |
| 942 | + inkscape:vp_x="0 : 0.5 : 1" |
| 943 | + sodipodi:type="inkscape:persp3d" /> |
| 944 | + <marker |
| 945 | + style="overflow:visible" |
| 946 | + id="Arrow1Mend1u-0" |
| 947 | + refX="0" |
| 948 | + refY="0" |
| 949 | + orient="auto" |
| 950 | + inkscape:stockid="Arrow1Mend1u"> |
| 951 | + <path |
| 952 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 953 | + style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 954 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 955 | + id="path5351-02" /> |
| 956 | + </marker> |
| 957 | + <inkscape:perspective |
| 958 | + id="perspective5291" |
| 959 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 960 | + inkscape:vp_z="1 : 0.5 : 1" |
| 961 | + inkscape:vp_y="0 : 1000 : 0" |
| 962 | + inkscape:vp_x="0 : 0.5 : 1" |
| 963 | + sodipodi:type="inkscape:persp3d" /> |
| 964 | + <marker |
| 965 | + style="overflow:visible" |
| 966 | + id="Arrow1Mend-98" |
| 967 | + refX="0" |
| 968 | + refY="0" |
| 969 | + orient="auto" |
| 970 | + inkscape:stockid="Arrow1Mend"> |
| 971 | + <path |
| 972 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 973 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 974 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 975 | + id="path3429-9" /> |
| 976 | + </marker> |
| 977 | + <inkscape:perspective |
| 978 | + id="perspective5318" |
| 979 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 980 | + inkscape:vp_z="1 : 0.5 : 1" |
| 981 | + inkscape:vp_y="0 : 1000 : 0" |
| 982 | + inkscape:vp_x="0 : 0.5 : 1" |
| 983 | + sodipodi:type="inkscape:persp3d" /> |
| 984 | + <marker |
| 985 | + style="overflow:visible" |
| 986 | + id="Arrow1Mend-47" |
| 987 | + refX="0" |
| 988 | + refY="0" |
| 989 | + orient="auto" |
| 990 | + inkscape:stockid="Arrow1Mend"> |
| 991 | + <path |
| 992 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 993 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 994 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 995 | + id="path3429-83" /> |
| 996 | + </marker> |
| 997 | + <inkscape:perspective |
| 998 | + id="perspective5318-6" |
| 999 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1000 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1001 | + inkscape:vp_y="0 : 1000 : 0" |
| 1002 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1003 | + sodipodi:type="inkscape:persp3d" /> |
| 1004 | + <marker |
| 1005 | + style="overflow:visible" |
| 1006 | + id="Arrow1Mend-474" |
| 1007 | + refX="0" |
| 1008 | + refY="0" |
| 1009 | + orient="auto" |
| 1010 | + inkscape:stockid="Arrow1Mend"> |
| 1011 | + <path |
| 1012 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 1013 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 1014 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 1015 | + id="path3429-77" /> |
| 1016 | + </marker> |
| 1017 | + <inkscape:perspective |
| 1018 | + id="perspective5318-0" |
| 1019 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1020 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1021 | + inkscape:vp_y="0 : 1000 : 0" |
| 1022 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1023 | + sodipodi:type="inkscape:persp3d" /> |
| 1024 | + <marker |
| 1025 | + style="overflow:visible" |
| 1026 | + id="Arrow1Mend-0" |
| 1027 | + refX="0" |
| 1028 | + refY="0" |
| 1029 | + orient="auto" |
| 1030 | + inkscape:stockid="Arrow1Mend"> |
| 1031 | + <path |
| 1032 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 1033 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 1034 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 1035 | + id="path3429-0" /> |
| 1036 | + </marker> |
| 1037 | + <inkscape:perspective |
| 1038 | + id="perspective5372" |
| 1039 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1040 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1041 | + inkscape:vp_y="0 : 1000 : 0" |
| 1042 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1043 | + sodipodi:type="inkscape:persp3d" /> |
| 1044 | + <inkscape:perspective |
| 1045 | + id="perspective5397" |
| 1046 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1047 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1048 | + inkscape:vp_y="0 : 1000 : 0" |
| 1049 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1050 | + sodipodi:type="inkscape:persp3d" /> |
| 1051 | + <inkscape:perspective |
| 1052 | + id="perspective5422" |
| 1053 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1054 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1055 | + inkscape:vp_y="0 : 1000 : 0" |
| 1056 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1057 | + sodipodi:type="inkscape:persp3d" /> |
| 1058 | + <inkscape:perspective |
| 1059 | + id="perspective5447" |
| 1060 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1061 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1062 | + inkscape:vp_y="0 : 1000 : 0" |
| 1063 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1064 | + sodipodi:type="inkscape:persp3d" /> |
| 1065 | + <inkscape:perspective |
| 1066 | + id="perspective5472" |
| 1067 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1068 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1069 | + inkscape:vp_y="0 : 1000 : 0" |
| 1070 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1071 | + sodipodi:type="inkscape:persp3d" /> |
| 1072 | + <inkscape:perspective |
| 1073 | + id="perspective5497" |
| 1074 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1075 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1076 | + inkscape:vp_y="0 : 1000 : 0" |
| 1077 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1078 | + sodipodi:type="inkscape:persp3d" /> |
| 1079 | + <inkscape:perspective |
| 1080 | + id="perspective5522" |
| 1081 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1082 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1083 | + inkscape:vp_y="0 : 1000 : 0" |
| 1084 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1085 | + sodipodi:type="inkscape:persp3d" /> |
| 1086 | + <inkscape:perspective |
| 1087 | + id="perspective5522-3" |
| 1088 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1089 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1090 | + inkscape:vp_y="0 : 1000 : 0" |
| 1091 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1092 | + sodipodi:type="inkscape:persp3d" /> |
| 1093 | + <inkscape:perspective |
| 1094 | + id="perspective5601" |
| 1095 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1096 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1097 | + inkscape:vp_y="0 : 1000 : 0" |
| 1098 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1099 | + sodipodi:type="inkscape:persp3d" /> |
| 1100 | + <inkscape:perspective |
| 1101 | + id="perspective5644" |
| 1102 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1103 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1104 | + inkscape:vp_y="0 : 1000 : 0" |
| 1105 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1106 | + sodipodi:type="inkscape:persp3d" /> |
| 1107 | + <inkscape:perspective |
| 1108 | + id="perspective5669" |
| 1109 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1110 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1111 | + inkscape:vp_y="0 : 1000 : 0" |
| 1112 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1113 | + sodipodi:type="inkscape:persp3d" /> |
| 1114 | + <inkscape:perspective |
| 1115 | + id="perspective5694" |
| 1116 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1117 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1118 | + inkscape:vp_y="0 : 1000 : 0" |
| 1119 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1120 | + sodipodi:type="inkscape:persp3d" /> |
| 1121 | + <inkscape:perspective |
| 1122 | + id="perspective5719" |
| 1123 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1124 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1125 | + inkscape:vp_y="0 : 1000 : 0" |
| 1126 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1127 | + sodipodi:type="inkscape:persp3d" /> |
| 1128 | + <inkscape:perspective |
| 1129 | + id="perspective5744" |
| 1130 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1131 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1132 | + inkscape:vp_y="0 : 1000 : 0" |
| 1133 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1134 | + sodipodi:type="inkscape:persp3d" /> |
| 1135 | + <inkscape:perspective |
| 1136 | + id="perspective5744-7" |
| 1137 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1138 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1139 | + inkscape:vp_y="0 : 1000 : 0" |
| 1140 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1141 | + sodipodi:type="inkscape:persp3d" /> |
| 1142 | + <inkscape:perspective |
| 1143 | + id="perspective5744-2" |
| 1144 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1145 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1146 | + inkscape:vp_y="0 : 1000 : 0" |
| 1147 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1148 | + sodipodi:type="inkscape:persp3d" /> |
| 1149 | + <inkscape:perspective |
| 1150 | + id="perspective5784" |
| 1151 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1152 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1153 | + inkscape:vp_y="0 : 1000 : 0" |
| 1154 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1155 | + sodipodi:type="inkscape:persp3d" /> |
| 1156 | + <marker |
| 1157 | + style="overflow:visible" |
| 1158 | + id="Arrow1Mend-989" |
| 1159 | + refX="0" |
| 1160 | + refY="0" |
| 1161 | + orient="auto" |
| 1162 | + inkscape:stockid="Arrow1Mend"> |
| 1163 | + <path |
| 1164 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 1165 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 1166 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 1167 | + id="path3429-65" /> |
| 1168 | + </marker> |
| 1169 | + <inkscape:perspective |
| 1170 | + id="perspective5818" |
| 1171 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1172 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1173 | + inkscape:vp_y="0 : 1000 : 0" |
| 1174 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1175 | + sodipodi:type="inkscape:persp3d" /> |
| 1176 | + <inkscape:perspective |
| 1177 | + id="perspective5818-0" |
| 1178 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1179 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1180 | + inkscape:vp_y="0 : 1000 : 0" |
| 1181 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1182 | + sodipodi:type="inkscape:persp3d" /> |
| 1183 | + <inkscape:perspective |
| 1184 | + id="perspective5849" |
| 1185 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1186 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1187 | + inkscape:vp_y="0 : 1000 : 0" |
| 1188 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1189 | + sodipodi:type="inkscape:persp3d" /> |
| 1190 | + <inkscape:perspective |
| 1191 | + id="perspective5849-8" |
| 1192 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1193 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1194 | + inkscape:vp_y="0 : 1000 : 0" |
| 1195 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1196 | + sodipodi:type="inkscape:persp3d" /> |
| 1197 | + <inkscape:perspective |
| 1198 | + id="perspective5849-3" |
| 1199 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1200 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1201 | + inkscape:vp_y="0 : 1000 : 0" |
| 1202 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1203 | + sodipodi:type="inkscape:persp3d" /> |
| 1204 | + <inkscape:perspective |
| 1205 | + id="perspective5849-4" |
| 1206 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1207 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1208 | + inkscape:vp_y="0 : 1000 : 0" |
| 1209 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1210 | + sodipodi:type="inkscape:persp3d" /> |
| 1211 | + <inkscape:perspective |
| 1212 | + id="perspective5898" |
| 1213 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1214 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1215 | + inkscape:vp_y="0 : 1000 : 0" |
| 1216 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1217 | + sodipodi:type="inkscape:persp3d" /> |
| 1218 | + <inkscape:perspective |
| 1219 | + id="perspective6442" |
| 1220 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1221 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1222 | + inkscape:vp_y="0 : 1000 : 0" |
| 1223 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1224 | + sodipodi:type="inkscape:persp3d" /> |
| 1225 | + <inkscape:perspective |
| 1226 | + id="perspective7524" |
| 1227 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1228 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1229 | + inkscape:vp_y="0 : 1000 : 0" |
| 1230 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1231 | + sodipodi:type="inkscape:persp3d" /> |
| 1232 | + <inkscape:perspective |
| 1233 | + id="perspective7524-6" |
| 1234 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1235 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1236 | + inkscape:vp_y="0 : 1000 : 0" |
| 1237 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1238 | + sodipodi:type="inkscape:persp3d" /> |
| 1239 | + <inkscape:perspective |
| 1240 | + id="perspective9910" |
| 1241 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1242 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1243 | + inkscape:vp_y="0 : 1000 : 0" |
| 1244 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1245 | + sodipodi:type="inkscape:persp3d" /> |
| 1246 | + <inkscape:perspective |
| 1247 | + id="perspective9935" |
| 1248 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1249 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1250 | + inkscape:vp_y="0 : 1000 : 0" |
| 1251 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1252 | + sodipodi:type="inkscape:persp3d" /> |
| 1253 | + <inkscape:perspective |
| 1254 | + id="perspective9935-9" |
| 1255 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1256 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1257 | + inkscape:vp_y="0 : 1000 : 0" |
| 1258 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1259 | + sodipodi:type="inkscape:persp3d" /> |
| 1260 | + <inkscape:perspective |
| 1261 | + id="perspective3135" |
| 1262 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1263 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1264 | + inkscape:vp_y="0 : 1000 : 0" |
| 1265 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1266 | + sodipodi:type="inkscape:persp3d" /> |
| 1267 | + <marker |
| 1268 | + style="overflow:visible" |
| 1269 | + id="Arrow1Mend-8" |
| 1270 | + refX="0" |
| 1271 | + refY="0" |
| 1272 | + orient="auto" |
| 1273 | + inkscape:stockid="Arrow1Mend"> |
| 1274 | + <path |
| 1275 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 1276 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 1277 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 1278 | + id="path3429-96" /> |
| 1279 | + </marker> |
| 1280 | + <inkscape:perspective |
| 1281 | + id="perspective3135-3" |
| 1282 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1283 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1284 | + inkscape:vp_y="0 : 1000 : 0" |
| 1285 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1286 | + sodipodi:type="inkscape:persp3d" /> |
| 1287 | + <marker |
| 1288 | + style="overflow:visible" |
| 1289 | + id="Arrow1Mend-3" |
| 1290 | + refX="0" |
| 1291 | + refY="0" |
| 1292 | + orient="auto" |
| 1293 | + inkscape:stockid="Arrow1Mend"> |
| 1294 | + <path |
| 1295 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 1296 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 1297 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 1298 | + id="path3429-3" /> |
| 1299 | + </marker> |
| 1300 | + <inkscape:perspective |
| 1301 | + id="perspective3174" |
| 1302 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1303 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1304 | + inkscape:vp_y="0 : 1000 : 0" |
| 1305 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1306 | + sodipodi:type="inkscape:persp3d" /> |
| 1307 | + <marker |
| 1308 | + style="overflow:visible" |
| 1309 | + id="Arrow1Mend-60" |
| 1310 | + refX="0" |
| 1311 | + refY="0" |
| 1312 | + orient="auto" |
| 1313 | + inkscape:stockid="Arrow1Mend"> |
| 1314 | + <path |
| 1315 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 1316 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 1317 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 1318 | + id="path3429-4" /> |
| 1319 | + </marker> |
| 1320 | + <inkscape:perspective |
| 1321 | + id="perspective3202" |
| 1322 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1323 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1324 | + inkscape:vp_y="0 : 1000 : 0" |
| 1325 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1326 | + sodipodi:type="inkscape:persp3d" /> |
| 1327 | + <marker |
| 1328 | + style="overflow:visible" |
| 1329 | + id="Arrow1Mend-03" |
| 1330 | + refX="0" |
| 1331 | + refY="0" |
| 1332 | + orient="auto" |
| 1333 | + inkscape:stockid="Arrow1Mend"> |
| 1334 | + <path |
| 1335 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 1336 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 1337 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 1338 | + id="path3429-09" /> |
| 1339 | + </marker> |
| 1340 | + <inkscape:perspective |
| 1341 | + id="perspective3266" |
| 1342 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1343 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1344 | + inkscape:vp_y="0 : 1000 : 0" |
| 1345 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1346 | + sodipodi:type="inkscape:persp3d" /> |
| 1347 | + <inkscape:perspective |
| 1348 | + id="perspective4601" |
| 1349 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1350 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1351 | + inkscape:vp_y="0 : 1000 : 0" |
| 1352 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1353 | + sodipodi:type="inkscape:persp3d" /> |
| 1354 | + <inkscape:perspective |
| 1355 | + id="perspective4686" |
| 1356 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1357 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1358 | + inkscape:vp_y="0 : 1000 : 0" |
| 1359 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1360 | + sodipodi:type="inkscape:persp3d" /> |
| 1361 | + <inkscape:perspective |
| 1362 | + id="perspective4720" |
| 1363 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1364 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1365 | + inkscape:vp_y="0 : 1000 : 0" |
| 1366 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1367 | + sodipodi:type="inkscape:persp3d" /> |
| 1368 | + <inkscape:perspective |
| 1369 | + id="perspective4772" |
| 1370 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1371 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1372 | + inkscape:vp_y="0 : 1000 : 0" |
| 1373 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1374 | + sodipodi:type="inkscape:persp3d" /> |
| 1375 | + <marker |
| 1376 | + style="overflow:visible" |
| 1377 | + id="Arrow1Mend-84" |
| 1378 | + refX="0" |
| 1379 | + refY="0" |
| 1380 | + orient="auto" |
| 1381 | + inkscape:stockid="Arrow1Mend"> |
| 1382 | + <path |
| 1383 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 1384 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 1385 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 1386 | + id="path3429-08" /> |
| 1387 | + </marker> |
| 1388 | + <inkscape:perspective |
| 1389 | + id="perspective4800" |
| 1390 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1391 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1392 | + inkscape:vp_y="0 : 1000 : 0" |
| 1393 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1394 | + sodipodi:type="inkscape:persp3d" /> |
| 1395 | + <marker |
| 1396 | + style="overflow:visible" |
| 1397 | + id="Arrow1Mend-254" |
| 1398 | + refX="0" |
| 1399 | + refY="0" |
| 1400 | + orient="auto" |
| 1401 | + inkscape:stockid="Arrow1Mend"> |
| 1402 | + <path |
| 1403 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 1404 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 1405 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 1406 | + id="path3429-27" /> |
| 1407 | + </marker> |
| 1408 | + <marker |
| 1409 | + style="overflow:visible" |
| 1410 | + id="marker4806" |
| 1411 | + refX="0" |
| 1412 | + refY="0" |
| 1413 | + orient="auto" |
| 1414 | + inkscape:stockid="Arrow1Mend"> |
| 1415 | + <path |
| 1416 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 1417 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 1418 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 1419 | + id="path4808" /> |
| 1420 | + </marker> |
| 1421 | + <inkscape:perspective |
| 1422 | + id="perspective4839" |
| 1423 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1424 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1425 | + inkscape:vp_y="0 : 1000 : 0" |
| 1426 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1427 | + sodipodi:type="inkscape:persp3d" /> |
| 1428 | + <inkscape:perspective |
| 1429 | + id="perspective4873" |
| 1430 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1431 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1432 | + inkscape:vp_y="0 : 1000 : 0" |
| 1433 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1434 | + sodipodi:type="inkscape:persp3d" /> |
| 1435 | + <inkscape:perspective |
| 1436 | + id="perspective4873-7" |
| 1437 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1438 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1439 | + inkscape:vp_y="0 : 1000 : 0" |
| 1440 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1441 | + sodipodi:type="inkscape:persp3d" /> |
| 1442 | + <inkscape:perspective |
| 1443 | + id="perspective4873-8" |
| 1444 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1445 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1446 | + inkscape:vp_y="0 : 1000 : 0" |
| 1447 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1448 | + sodipodi:type="inkscape:persp3d" /> |
| 1449 | + <inkscape:perspective |
| 1450 | + id="perspective4873-2" |
| 1451 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1452 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1453 | + inkscape:vp_y="0 : 1000 : 0" |
| 1454 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1455 | + sodipodi:type="inkscape:persp3d" /> |
| 1456 | + <inkscape:perspective |
| 1457 | + id="perspective4931" |
| 1458 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1459 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1460 | + inkscape:vp_y="0 : 1000 : 0" |
| 1461 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1462 | + sodipodi:type="inkscape:persp3d" /> |
| 1463 | + <inkscape:perspective |
| 1464 | + id="perspective4962" |
| 1465 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1466 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1467 | + inkscape:vp_y="0 : 1000 : 0" |
| 1468 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1469 | + sodipodi:type="inkscape:persp3d" /> |
| 1470 | + <inkscape:perspective |
| 1471 | + id="perspective4987" |
| 1472 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1473 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1474 | + inkscape:vp_y="0 : 1000 : 0" |
| 1475 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1476 | + sodipodi:type="inkscape:persp3d" /> |
| 1477 | + <inkscape:perspective |
| 1478 | + id="perspective5012" |
| 1479 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1480 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1481 | + inkscape:vp_y="0 : 1000 : 0" |
| 1482 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1483 | + sodipodi:type="inkscape:persp3d" /> |
| 1484 | + <inkscape:perspective |
| 1485 | + id="perspective5037" |
| 1486 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1487 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1488 | + inkscape:vp_y="0 : 1000 : 0" |
| 1489 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1490 | + sodipodi:type="inkscape:persp3d" /> |
| 1491 | + <inkscape:perspective |
| 1492 | + id="perspective5062" |
| 1493 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1494 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1495 | + inkscape:vp_y="0 : 1000 : 0" |
| 1496 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1497 | + sodipodi:type="inkscape:persp3d" /> |
| 1498 | + <inkscape:perspective |
| 1499 | + id="perspective5087" |
| 1500 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1501 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1502 | + inkscape:vp_y="0 : 1000 : 0" |
| 1503 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1504 | + sodipodi:type="inkscape:persp3d" /> |
| 1505 | + <inkscape:perspective |
| 1506 | + id="perspective5112" |
| 1507 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1508 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1509 | + inkscape:vp_y="0 : 1000 : 0" |
| 1510 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1511 | + sodipodi:type="inkscape:persp3d" /> |
| 1512 | + <inkscape:perspective |
| 1513 | + id="perspective5137" |
| 1514 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1515 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1516 | + inkscape:vp_y="0 : 1000 : 0" |
| 1517 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1518 | + sodipodi:type="inkscape:persp3d" /> |
| 1519 | + <inkscape:perspective |
| 1520 | + id="perspective5162" |
| 1521 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1522 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1523 | + inkscape:vp_y="0 : 1000 : 0" |
| 1524 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1525 | + sodipodi:type="inkscape:persp3d" /> |
| 1526 | + <inkscape:perspective |
| 1527 | + id="perspective5187" |
| 1528 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1529 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1530 | + inkscape:vp_y="0 : 1000 : 0" |
| 1531 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1532 | + sodipodi:type="inkscape:persp3d" /> |
| 1533 | + <inkscape:perspective |
| 1534 | + id="perspective5212" |
| 1535 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1536 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1537 | + inkscape:vp_y="0 : 1000 : 0" |
| 1538 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1539 | + sodipodi:type="inkscape:persp3d" /> |
| 1540 | + <inkscape:perspective |
| 1541 | + id="perspective5237" |
| 1542 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 1543 | + inkscape:vp_z="1 : 0.5 : 1" |
| 1544 | + inkscape:vp_y="0 : 1000 : 0" |
| 1545 | + inkscape:vp_x="0 : 0.5 : 1" |
| 1546 | + sodipodi:type="inkscape:persp3d" /> |
| 1547 | + </defs> |
| 1548 | + <metadata |
| 1549 | + id="metadata7"> |
| 1550 | + <rdf:RDF> |
| 1551 | + <cc:Work |
| 1552 | + rdf:about=""> |
| 1553 | + <dc:format>image/svg+xml</dc:format> |
| 1554 | + <dc:type |
| 1555 | + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> |
| 1556 | + </cc:Work> |
| 1557 | + </rdf:RDF> |
| 1558 | + </metadata> |
| 1559 | + <g |
| 1560 | + style="display:inline" |
| 1561 | + id="layer1" |
| 1562 | + inkscape:groupmode="layer" |
| 1563 | + inkscape:label="Layer 1"> |
| 1564 | + <path |
| 1565 | + sodipodi:nodetypes="cc" |
| 1566 | + id="path2532" |
| 1567 | + d="m 302.58379,141.59356 c 177.43313,-25.92765 266.07608,-27.85764 467.79018,-1.60789" |
| 1568 | + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:none;marker-mid:none;marker-end:url(#Arrow1Mend);visibility:visible;display:inline;overflow:visible" /> |
| 1569 | + <text |
| 1570 | + id="text2461" |
| 1571 | + y="612.55127" |
| 1572 | + x="596.30316" |
| 1573 | + style="font-size:15.87116718px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans Italic" |
| 1574 | + xml:space="preserve" |
| 1575 | + sodipodi:linespacing="125%"><tspan |
| 1576 | + id="tspan2463" |
| 1577 | + y="612.55127" |
| 1578 | + x="596.30316" |
| 1579 | + sodipodi:role="line">Origin of the events:</tspan></text> |
| 1580 | + <path |
| 1581 | + sodipodi:nodetypes="cc" |
| 1582 | + id="path2532-1" |
| 1583 | + d="m 772.04136,164.26506 c -177.43313,25.92765 -265.1703,26.22723 -466.8844,-0.0225" |
| 1584 | + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:none;marker-mid:none;marker-end:url(#Arrow1Mend);visibility:visible;display:inline;overflow:visible" /> |
| 1585 | + <path |
| 1586 | + sodipodi:nodetypes="cc" |
| 1587 | + id="path2532-2" |
| 1588 | + d="m 303.11443,482.80366 c 177.43313,-25.92765 264.63636,-25.57412 466.35046,0.67563" |
| 1589 | + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:none;marker-mid:none;marker-end:url(#Arrow1Mend);visibility:visible;display:inline;overflow:visible" /> |
| 1590 | + <path |
| 1591 | + sodipodi:nodetypes="cc" |
| 1592 | + id="path2532-1-6" |
| 1593 | + d="m 771.63285,510.29912 c -177.43313,25.92765 -264.46952,26.57524 -466.18362,0.32549" |
| 1594 | + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:none;marker-mid:none;marker-end:url(#Arrow1Mend);visibility:visible;display:inline;overflow:visible" /> |
| 1595 | + <path |
| 1596 | + sodipodi:nodetypes="cc" |
| 1597 | + id="path2532-56" |
| 1598 | + d="m 299.41953,201.28885 c 185.99663,64.13849 331.58433,106.16076 488.21769,234.17614" |
| 1599 | + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:none;marker-mid:none;marker-end:url(#Arrow1Mend);visibility:visible;display:inline;overflow:visible" /> |
| 1600 | + <path |
| 1601 | + sodipodi:nodetypes="cc" |
| 1602 | + id="path2532-56-5" |
| 1603 | + d="M 775.95523,452.35873 C 589.9586,388.22024 444.7952,347.0656 288.16185,219.05022" |
| 1604 | + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:none;marker-mid:none;marker-end:url(#Arrow1Mend);visibility:visible;display:inline;overflow:visible" /> |
| 1605 | + <g |
| 1606 | + id="g3860" |
| 1607 | + transform="matrix(0.50373996,-0.86385534,0.86385534,0.50373996,66.088389,488.04335)"> |
| 1608 | + <path |
| 1609 | + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:none;marker-mid:none;marker-end:url(#Arrow1Mend);visibility:visible;display:inline;overflow:visible" |
| 1610 | + d="M 153.85513,168.36645 C 339.85176,232.50494 445.41408,339.98332 602.04744,467.9987" |
| 1611 | + id="path2532-56-1" |
| 1612 | + sodipodi:nodetypes="cc" /> |
| 1613 | + <path |
| 1614 | + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:none;marker-mid:none;marker-end:url(#Arrow1Mend);visibility:visible;display:inline;overflow:visible" |
| 1615 | + d="M 597.61127,487.12339 C 411.61464,422.9849 306.50192,312.83273 149.86857,184.81735" |
| 1616 | + id="path2532-56-5-5" |
| 1617 | + sodipodi:nodetypes="cc" /> |
| 1618 | + </g> |
| 1619 | + <text |
| 1620 | + id="text2461-6" |
| 1621 | + y="641.22632" |
| 1622 | + x="631.14868" |
| 1623 | + style="font-size:15.87116718px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans Italic" |
| 1624 | + xml:space="preserve" |
| 1625 | + sodipodi:linespacing="125%"><tspan |
| 1626 | + id="tspan2463-3" |
| 1627 | + y="641.22632" |
| 1628 | + x="631.14868" |
| 1629 | + sodipodi:role="line">3, 5: NetworkManager</tspan></text> |
| 1630 | + <text |
| 1631 | + id="text2461-6-0" |
| 1632 | + y="669.90137" |
| 1633 | + x="630.89294" |
| 1634 | + style="font-size:15.87116718px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans Italic" |
| 1635 | + xml:space="preserve" |
| 1636 | + sodipodi:linespacing="125%"><tspan |
| 1637 | + id="tspan2463-3-4" |
| 1638 | + y="669.90137" |
| 1639 | + x="630.89294" |
| 1640 | + sodipodi:role="line">4, 6: User through DBus/GUI</tspan></text> |
| 1641 | + <path |
| 1642 | + sodipodi:nodetypes="cc" |
| 1643 | + id="path2532-5-97-6" |
| 1644 | + d="m 212.8562,428.48286 c 3.29172,-79.50308 -41.37363,-74.63266 -39.58536,-0.71527" |
| 1645 | + style="color:#000000;fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-end:url(#Arrow1Mend);visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> |
| 1646 | + <text |
| 1647 | + id="text2467-1-5-4" |
| 1648 | + y="608.15686" |
| 1649 | + x="212.06067" |
| 1650 | + style="font-size:23.83253098px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans" |
| 1651 | + xml:space="preserve" |
| 1652 | + sodipodi:linespacing="125%"><tspan |
| 1653 | + style="font-size:15.16615677px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono" |
| 1654 | + y="608.15686" |
| 1655 | + x="212.06067" |
| 1656 | + id="tspan2469-4-3-8" |
| 1657 | + sodipodi:role="line">3. SYS_NET_CONNECTED</tspan></text> |
| 1658 | + <g |
| 1659 | + id="g4621" |
| 1660 | + transform="translate(293.94017,163.8462)"> |
| 1661 | + <rect |
| 1662 | + ry="38.842182" |
| 1663 | + rx="38.842182" |
| 1664 | + y="266.95135" |
| 1665 | + x="-181.18971" |
| 1666 | + height="119.77809" |
| 1667 | + width="189.23656" |
| 1668 | + id="rect3256" |
| 1669 | + style="opacity:0.80373798;color:#000000;fill:#ececec;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.52658218;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> |
| 1670 | + <text |
| 1671 | + id="text2429-9-7-0" |
| 1672 | + y="319.48944" |
| 1673 | + x="-86.856911" |
| 1674 | + style="font-size:19.48836136px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:150%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans" |
| 1675 | + xml:space="preserve" |
| 1676 | + sodipodi:linespacing="150%"><tspan |
| 1677 | + id="tspan5921-6-2" |
| 1678 | + y="319.48944" |
| 1679 | + x="-86.856911" |
| 1680 | + sodipodi:role="line">With User</tspan><tspan |
| 1681 | + y="348.72198" |
| 1682 | + x="-86.856911" |
| 1683 | + sodipodi:role="line" |
| 1684 | + id="tspan3250-1">With Network</tspan></text> |
| 1685 | + </g> |
| 1686 | + <g |
| 1687 | + style="display:inline" |
| 1688 | + id="g4621-4" |
| 1689 | + transform="translate(954.2989,163.8462)"> |
| 1690 | + <rect |
| 1691 | + ry="38.842182" |
| 1692 | + rx="38.842182" |
| 1693 | + y="266.95135" |
| 1694 | + x="-181.18971" |
| 1695 | + height="119.77809" |
| 1696 | + width="189.23656" |
| 1697 | + id="rect3256-5" |
| 1698 | + style="opacity:0.80373798;color:#000000;fill:#ececec;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.52658218;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> |
| 1699 | + <text |
| 1700 | + id="text2429-9-7-0-3" |
| 1701 | + y="319.48944" |
| 1702 | + x="-86.856911" |
| 1703 | + style="font-size:19.48836136px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:150%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans" |
| 1704 | + xml:space="preserve" |
| 1705 | + sodipodi:linespacing="150%"><tspan |
| 1706 | + id="tspan5921-6-2-8" |
| 1707 | + y="319.48944" |
| 1708 | + x="-86.856911" |
| 1709 | + sodipodi:role="line">With User</tspan><tspan |
| 1710 | + y="348.72198" |
| 1711 | + x="-86.856911" |
| 1712 | + sodipodi:role="line" |
| 1713 | + id="tspan3250-1-1">Not Network</tspan></text> |
| 1714 | + </g> |
| 1715 | + <g |
| 1716 | + style="display:inline" |
| 1717 | + id="g4621-4-4" |
| 1718 | + transform="translate(954.2989,-162.06975)"> |
| 1719 | + <rect |
| 1720 | + ry="38.842182" |
| 1721 | + rx="38.842182" |
| 1722 | + y="266.95135" |
| 1723 | + x="-181.18971" |
| 1724 | + height="119.77809" |
| 1725 | + width="189.23656" |
| 1726 | + id="rect3256-5-7" |
| 1727 | + style="opacity:0.80373798;color:#000000;fill:#ececec;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.52658218;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> |
| 1728 | + <text |
| 1729 | + id="text2429-9-7-0-3-7" |
| 1730 | + y="319.48944" |
| 1731 | + x="-86.856911" |
| 1732 | + style="font-size:19.48836136px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:150%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans" |
| 1733 | + xml:space="preserve" |
| 1734 | + sodipodi:linespacing="150%"><tspan |
| 1735 | + id="tspan5921-6-2-8-0" |
| 1736 | + y="319.48944" |
| 1737 | + x="-86.856911" |
| 1738 | + sodipodi:role="line">Not User</tspan><tspan |
| 1739 | + y="348.72198" |
| 1740 | + x="-86.856911" |
| 1741 | + sodipodi:role="line" |
| 1742 | + id="tspan3250-1-1-7">With Network</tspan></text> |
| 1743 | + </g> |
| 1744 | + <path |
| 1745 | + sodipodi:nodetypes="cc" |
| 1746 | + id="path2532-5-97-6-4" |
| 1747 | + d="m 861.98022,428.48286 c 3.29172,-79.50308 -41.37363,-74.63266 -39.58536,-0.71527" |
| 1748 | + style="color:#000000;fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-end:url(#Arrow1Mend);visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> |
| 1749 | + <path |
| 1750 | + sodipodi:nodetypes="cc" |
| 1751 | + id="path2532-5-97-6-5" |
| 1752 | + d="m 212.8562,102.87131 c 3.29172,-79.503077 -41.37363,-74.632657 -39.58536,-0.71527" |
| 1753 | + style="color:#000000;fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-end:url(#Arrow1Mend);visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> |
| 1754 | + <path |
| 1755 | + sodipodi:nodetypes="cc" |
| 1756 | + id="path2532-5-97-6-4-7" |
| 1757 | + d="m 861.98022,102.87131 c 3.29172,-79.503077 -41.37363,-74.632657 -39.58536,-0.71527" |
| 1758 | + style="color:#000000;fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-end:url(#Arrow1Mend);visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> |
| 1759 | + <g |
| 1760 | + style="display:inline" |
| 1761 | + id="g4621-4-4-3" |
| 1762 | + transform="translate(293.94017,-162.06975)"> |
| 1763 | + <rect |
| 1764 | + ry="38.842182" |
| 1765 | + rx="38.842182" |
| 1766 | + y="266.95135" |
| 1767 | + x="-181.18971" |
| 1768 | + height="119.77809" |
| 1769 | + width="189.23656" |
| 1770 | + id="rect3256-5-7-6" |
| 1771 | + style="opacity:0.80373798;color:#000000;fill:#ececec;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.52658218;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> |
| 1772 | + <text |
| 1773 | + id="text2429-9-7-0-3-7-3" |
| 1774 | + y="319.48944" |
| 1775 | + x="-86.856911" |
| 1776 | + style="font-size:19.48836136px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:150%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans" |
| 1777 | + xml:space="preserve" |
| 1778 | + sodipodi:linespacing="150%"><tspan |
| 1779 | + id="tspan5921-6-2-8-0-6" |
| 1780 | + y="319.48944" |
| 1781 | + x="-86.856911" |
| 1782 | + sodipodi:role="line">Not User</tspan><tspan |
| 1783 | + y="348.72198" |
| 1784 | + x="-86.856911" |
| 1785 | + sodipodi:role="line" |
| 1786 | + id="tspan3250-1-1-7-0">Not Network</tspan></text> |
| 1787 | + </g> |
| 1788 | + <text |
| 1789 | + id="text2467-1-5-4-4" |
| 1790 | + y="634.37036" |
| 1791 | + x="212.31985" |
| 1792 | + style="font-size:23.83253098px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans" |
| 1793 | + xml:space="preserve" |
| 1794 | + sodipodi:linespacing="125%"><tspan |
| 1795 | + style="font-size:15.16615677px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono" |
| 1796 | + y="634.37036" |
| 1797 | + x="212.31985" |
| 1798 | + id="tspan2469-4-3-8-1" |
| 1799 | + sodipodi:role="line">4. SYS_USER_CONNECT</tspan></text> |
| 1800 | + <text |
| 1801 | + id="text2467-1-5-4-5" |
| 1802 | + y="713.01086" |
| 1803 | + x="212.04585" |
| 1804 | + style="font-size:23.83253098px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans" |
| 1805 | + xml:space="preserve" |
| 1806 | + sodipodi:linespacing="125%"><tspan |
| 1807 | + style="font-size:15.16615677px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono" |
| 1808 | + y="713.01086" |
| 1809 | + x="212.04585" |
| 1810 | + id="tspan2469-4-3-8-3" |
| 1811 | + sodipodi:role="line">7. SYS_CONNECTION_LOST</tspan></text> |
| 1812 | + <text |
| 1813 | + id="text2467-1-5-4-3" |
| 1814 | + y="660.58386" |
| 1815 | + x="212.01624" |
| 1816 | + style="font-size:23.83253098px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans" |
| 1817 | + xml:space="preserve" |
| 1818 | + sodipodi:linespacing="125%"><tspan |
| 1819 | + style="font-size:15.16615677px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono" |
| 1820 | + y="660.58386" |
| 1821 | + x="212.01624" |
| 1822 | + id="tspan2469-4-3-8-38" |
| 1823 | + sodipodi:role="line">5. SYS_NET_DISCONNECTED</tspan></text> |
| 1824 | + <text |
| 1825 | + id="text2467-1-5-4-4-0" |
| 1826 | + y="686.79736" |
| 1827 | + x="212.09029" |
| 1828 | + style="font-size:23.83253098px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans" |
| 1829 | + xml:space="preserve" |
| 1830 | + sodipodi:linespacing="125%"><tspan |
| 1831 | + style="font-size:15.16615677px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono" |
| 1832 | + y="686.79736" |
| 1833 | + x="212.09029" |
| 1834 | + id="tspan2469-4-3-8-1-3" |
| 1835 | + sodipodi:role="line">6. SYS_USER_DISCONNECT</tspan></text> |
| 1836 | + <text |
| 1837 | + id="text2461-6-0-3" |
| 1838 | + y="700.11469" |
| 1839 | + x="629.70728" |
| 1840 | + style="font-size:15.87116718px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans Italic" |
| 1841 | + xml:space="preserve" |
| 1842 | + sodipodi:linespacing="125%"><tspan |
| 1843 | + id="tspan2463-3-4-1" |
| 1844 | + y="700.11469" |
| 1845 | + x="629.70728" |
| 1846 | + sodipodi:role="line">7: Twisted</tspan></text> |
| 1847 | + <text |
| 1848 | + id="text2467-1-5-4-8" |
| 1849 | + y="110.73177" |
| 1850 | + x="534.09271" |
| 1851 | + style="font-size:33.63773346px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans" |
| 1852 | + xml:space="preserve" |
| 1853 | + sodipodi:linespacing="125%"><tspan |
| 1854 | + style="font-size:21.40583229px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono" |
| 1855 | + y="110.73177" |
| 1856 | + x="534.09271" |
| 1857 | + id="tspan2469-4-3-8-6" |
| 1858 | + sodipodi:role="line">3</tspan></text> |
| 1859 | + <text |
| 1860 | + id="text2467-1-5-4-8-6" |
| 1861 | + y="522.52545" |
| 1862 | + x="534.09271" |
| 1863 | + style="font-size:33.63773346px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans" |
| 1864 | + xml:space="preserve" |
| 1865 | + sodipodi:linespacing="125%"><tspan |
| 1866 | + style="font-size:21.40583229px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono" |
| 1867 | + y="522.52545" |
| 1868 | + x="534.09271" |
| 1869 | + id="tspan2469-4-3-8-6-7" |
| 1870 | + sodipodi:role="line">3</tspan></text> |
| 1871 | + <text |
| 1872 | + id="text2467-1-5-4-8-6-6" |
| 1873 | + y="457.39822" |
| 1874 | + x="534.11359" |
| 1875 | + style="font-size:33.63773346px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans" |
| 1876 | + xml:space="preserve" |
| 1877 | + sodipodi:linespacing="125%"><tspan |
| 1878 | + style="font-size:21.40583229px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono" |
| 1879 | + y="457.39822" |
| 1880 | + x="534.11359" |
| 1881 | + id="tspan2469-4-3-8-6-7-3" |
| 1882 | + sodipodi:role="line">5</tspan></text> |
| 1883 | + <text |
| 1884 | + id="text2467-1-5-4-8-6-6-9" |
| 1885 | + y="173.11403" |
| 1886 | + x="534.11359" |
| 1887 | + style="font-size:33.63773346px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans" |
| 1888 | + xml:space="preserve" |
| 1889 | + sodipodi:linespacing="125%"><tspan |
| 1890 | + style="font-size:21.40583229px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono" |
| 1891 | + y="173.11403" |
| 1892 | + x="534.11359" |
| 1893 | + id="tspan2469-4-3-8-6-7-3-0" |
| 1894 | + sodipodi:role="line">5</tspan></text> |
| 1895 | + <text |
| 1896 | + id="text2467-1-5-4-8-6-6-9-8" |
| 1897 | + y="258.29327" |
| 1898 | + x="291.30383" |
| 1899 | + style="font-size:33.63773346px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans" |
| 1900 | + xml:space="preserve" |
| 1901 | + sodipodi:linespacing="125%"><tspan |
| 1902 | + style="font-size:21.40583229px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono" |
| 1903 | + y="258.29327" |
| 1904 | + x="291.30383" |
| 1905 | + id="tspan2469-4-3-8-6-7-3-0-6" |
| 1906 | + sodipodi:role="line">6</tspan></text> |
| 1907 | + <text |
| 1908 | + id="text2467-1-5-4-8-6-6-9-8-0" |
| 1909 | + y="210.45985" |
| 1910 | + x="721.98566" |
| 1911 | + style="font-size:33.63773346px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans" |
| 1912 | + xml:space="preserve" |
| 1913 | + sodipodi:linespacing="125%"><tspan |
| 1914 | + style="font-size:21.40583229px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono" |
| 1915 | + y="210.45985" |
| 1916 | + x="721.98566" |
| 1917 | + id="tspan2469-4-3-8-6-7-3-0-6-7" |
| 1918 | + sodipodi:role="line">6</tspan></text> |
| 1919 | + <text |
| 1920 | + id="text2467-1-5-4-8-6-6-9-8-0-6" |
| 1921 | + y="412.14865" |
| 1922 | + x="772.89734" |
| 1923 | + style="font-size:33.63773346px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans" |
| 1924 | + xml:space="preserve" |
| 1925 | + sodipodi:linespacing="125%"><tspan |
| 1926 | + style="font-size:21.40583229px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono" |
| 1927 | + y="412.14865" |
| 1928 | + x="772.89734" |
| 1929 | + id="tspan2469-4-3-8-6-7-3-0-6-7-3" |
| 1930 | + sodipodi:role="line">4</tspan></text> |
| 1931 | + <text |
| 1932 | + id="text2467-1-5-4-8-6-6-9-8-0-6-3" |
| 1933 | + y="423.90793" |
| 1934 | + x="351.87561" |
| 1935 | + style="font-size:33.63773346px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans" |
| 1936 | + xml:space="preserve" |
| 1937 | + sodipodi:linespacing="125%"><tspan |
| 1938 | + style="font-size:21.40583229px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono" |
| 1939 | + y="423.90793" |
| 1940 | + x="351.87561" |
| 1941 | + id="tspan2469-4-3-8-6-7-3-0-6-7-3-4" |
| 1942 | + sodipodi:role="line">4</tspan></text> |
| 1943 | + <text |
| 1944 | + id="text2467-1-5-4-8-6-6-9-8-6" |
| 1945 | + y="61.640957" |
| 1946 | + x="220.70093" |
| 1947 | + style="font-size:33.63773346px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans" |
| 1948 | + xml:space="preserve" |
| 1949 | + sodipodi:linespacing="125%"><tspan |
| 1950 | + style="font-size:21.40583229px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono" |
| 1951 | + y="61.640957" |
| 1952 | + x="220.70093" |
| 1953 | + id="tspan2469-4-3-8-6-7-3-0-6-3" |
| 1954 | + sodipodi:role="line">5,6,7</tspan></text> |
| 1955 | + <text |
| 1956 | + id="text2467-1-5-4-8-6-6-9-8-6-7" |
| 1957 | + y="61.640957" |
| 1958 | + x="871.39404" |
| 1959 | + style="font-size:33.63773346px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans" |
| 1960 | + xml:space="preserve" |
| 1961 | + sodipodi:linespacing="125%"><tspan |
| 1962 | + style="font-size:21.40583229px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono" |
| 1963 | + y="61.640957" |
| 1964 | + x="871.39404" |
| 1965 | + id="tspan2469-4-3-8-6-7-3-0-6-3-0" |
| 1966 | + sodipodi:role="line">3,6,7</tspan></text> |
| 1967 | + <text |
| 1968 | + id="text2467-1-5-4-8-6-6-9-8-6-71" |
| 1969 | + y="386.69275" |
| 1970 | + x="220.70093" |
| 1971 | + style="font-size:33.63773346px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans" |
| 1972 | + xml:space="preserve" |
| 1973 | + sodipodi:linespacing="125%"><tspan |
| 1974 | + style="font-size:21.40583229px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono" |
| 1975 | + y="386.69275" |
| 1976 | + x="220.70093" |
| 1977 | + id="tspan2469-4-3-8-6-7-3-0-6-3-00" |
| 1978 | + sodipodi:role="line">3,4,7</tspan></text> |
| 1979 | + <text |
| 1980 | + id="text2467-1-5-4-8-6-6-9-8-6-7-0" |
| 1981 | + y="386.69275" |
| 1982 | + x="871.39404" |
| 1983 | + style="font-size:33.63773346px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans" |
| 1984 | + xml:space="preserve" |
| 1985 | + sodipodi:linespacing="125%"><tspan |
| 1986 | + style="font-size:21.40583229px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono" |
| 1987 | + y="386.69275" |
| 1988 | + x="871.39404" |
| 1989 | + id="tspan2469-4-3-8-6-7-3-0-6-3-0-3" |
| 1990 | + sodipodi:role="line">4,5,7</tspan></text> |
| 1991 | + </g> |
| 1992 | +</svg> |
| 1993 | |
| 1994 | === renamed file 'docs/action_queue_states.svg' => 'docs/states_manager.svg' |
| 1995 | --- docs/action_queue_states.svg 2009-05-12 13:36:05 +0000 |
| 1996 | +++ docs/states_manager.svg 2010-03-04 14:52:23 +0000 |
| 1997 | @@ -1,5 +1,6 @@ |
| 1998 | <?xml version="1.0" encoding="UTF-8" standalone="no"?> |
| 1999 | <!-- Created with Inkscape (http://www.inkscape.org/) --> |
| 2000 | + |
| 2001 | <svg |
| 2002 | xmlns:dc="http://purl.org/dc/elements/1.1/" |
| 2003 | xmlns:cc="http://creativecommons.org/ns#" |
| 2004 | @@ -12,33 +13,10 @@ |
| 2005 | height="744.09448" |
| 2006 | id="svg2" |
| 2007 | sodipodi:version="0.32" |
| 2008 | - inkscape:version="0.46" |
| 2009 | + inkscape:version="0.47 r22583" |
| 2010 | version="1.0" |
| 2011 | - sodipodi:docname="action_queue_states.svg" |
| 2012 | + sodipodi:docname="states_manager.svg" |
| 2013 | inkscape:output_extension="org.inkscape.output.svg.inkscape"> |
| 2014 | - <defs |
| 2015 | - id="defs4"> |
| 2016 | - <marker |
| 2017 | - inkscape:stockid="Arrow1Mend" |
| 2018 | - orient="auto" |
| 2019 | - refY="0.0" |
| 2020 | - refX="0.0" |
| 2021 | - id="Arrow1Mend" |
| 2022 | - style="overflow: visible;"> |
| 2023 | - <path |
| 2024 | - id="path3429" |
| 2025 | - d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " |
| 2026 | - style="fill-rule: evenodd; stroke: rgb(0, 0, 0); stroke-width: 1pt; marker-start: none;" |
| 2027 | - transform="scale(0.4, 0.4) rotate(180) translate(10)" /> |
| 2028 | - </marker> |
| 2029 | - <inkscape:perspective |
| 2030 | - sodipodi:type="inkscape:persp3d" |
| 2031 | - inkscape:vp_x="0 : 526.18109 : 1" |
| 2032 | - inkscape:vp_y="0 : 1000 : 0" |
| 2033 | - inkscape:vp_z="744.09448 : 526.18109 : 1" |
| 2034 | - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" |
| 2035 | - id="perspective10" /> |
| 2036 | - </defs> |
| 2037 | <sodipodi:namedview |
| 2038 | id="base" |
| 2039 | pagecolor="#ffffff" |
| 2040 | @@ -49,16 +27,5713 @@ |
| 2041 | objecttolerance="10" |
| 2042 | inkscape:pageopacity="0.0" |
| 2043 | inkscape:pageshadow="2" |
| 2044 | - inkscape:zoom="0.66389419" |
| 2045 | - inkscape:cx="526.18109" |
| 2046 | - inkscape:cy="372.04724" |
| 2047 | + inkscape:zoom="1.0427072" |
| 2048 | + inkscape:cx="427.40282" |
| 2049 | + inkscape:cy="337.25026" |
| 2050 | inkscape:document-units="px" |
| 2051 | inkscape:current-layer="layer1" |
| 2052 | showgrid="false" |
| 2053 | - inkscape:window-width="1278" |
| 2054 | - inkscape:window-height="718" |
| 2055 | + inkscape:window-width="1280" |
| 2056 | + inkscape:window-height="728" |
| 2057 | inkscape:window-x="0" |
| 2058 | - inkscape:window-y="25" /> |
| 2059 | + inkscape:window-y="25" |
| 2060 | + inkscape:window-maximized="1" |
| 2061 | + showguides="true" |
| 2062 | + inkscape:guide-bbox="true" /> |
| 2063 | + <defs |
| 2064 | + id="defs4"> |
| 2065 | + <marker |
| 2066 | + inkscape:stockid="DotM" |
| 2067 | + orient="auto" |
| 2068 | + refY="0.0" |
| 2069 | + refX="0.0" |
| 2070 | + id="DotM" |
| 2071 | + style="overflow:visible"> |
| 2072 | + <path |
| 2073 | + id="path12320" |
| 2074 | + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " |
| 2075 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none" |
| 2076 | + transform="scale(0.4) translate(7.4, 1)" /> |
| 2077 | + </marker> |
| 2078 | + <marker |
| 2079 | + inkscape:stockid="DotL" |
| 2080 | + orient="auto" |
| 2081 | + refY="0.0" |
| 2082 | + refX="0.0" |
| 2083 | + id="DotL" |
| 2084 | + style="overflow:visible"> |
| 2085 | + <path |
| 2086 | + id="path12317" |
| 2087 | + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " |
| 2088 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none" |
| 2089 | + transform="scale(0.8) translate(7.4, 1)" /> |
| 2090 | + </marker> |
| 2091 | + <linearGradient |
| 2092 | + id="linearGradient9804"> |
| 2093 | + <stop |
| 2094 | + style="stop-color:#ffff00;stop-opacity:1;" |
| 2095 | + offset="0" |
| 2096 | + id="stop9806" /> |
| 2097 | + <stop |
| 2098 | + style="stop-color:#000000;stop-opacity:0;" |
| 2099 | + offset="1" |
| 2100 | + id="stop9808" /> |
| 2101 | + </linearGradient> |
| 2102 | + <marker |
| 2103 | + style="overflow:visible" |
| 2104 | + id="Arrow1Lstart" |
| 2105 | + refX="0.0" |
| 2106 | + refY="0.0" |
| 2107 | + orient="auto" |
| 2108 | + inkscape:stockid="Arrow1Lstart"> |
| 2109 | + <path |
| 2110 | + transform="scale(0.8) translate(12.5,0)" |
| 2111 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none" |
| 2112 | + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " |
| 2113 | + id="path7549" /> |
| 2114 | + </marker> |
| 2115 | + <marker |
| 2116 | + style="overflow:visible" |
| 2117 | + id="Arrow1Mstart" |
| 2118 | + refX="0.0" |
| 2119 | + refY="0.0" |
| 2120 | + orient="auto" |
| 2121 | + inkscape:stockid="Arrow1Mstart"> |
| 2122 | + <path |
| 2123 | + transform="scale(0.4) translate(10,0)" |
| 2124 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none" |
| 2125 | + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " |
| 2126 | + id="path7555" /> |
| 2127 | + </marker> |
| 2128 | + <marker |
| 2129 | + style="overflow:visible" |
| 2130 | + id="Arrow1Sstart" |
| 2131 | + refX="0.0" |
| 2132 | + refY="0.0" |
| 2133 | + orient="auto" |
| 2134 | + inkscape:stockid="Arrow1Sstart"> |
| 2135 | + <path |
| 2136 | + transform="scale(0.2) translate(6,0)" |
| 2137 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none" |
| 2138 | + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " |
| 2139 | + id="path3697" /> |
| 2140 | + </marker> |
| 2141 | + <marker |
| 2142 | + inkscape:stockid="Arrow1Send" |
| 2143 | + orient="auto" |
| 2144 | + refY="0.0" |
| 2145 | + refX="0.0" |
| 2146 | + id="Arrow1Send" |
| 2147 | + style="overflow:visible;"> |
| 2148 | + <path |
| 2149 | + id="path3700" |
| 2150 | + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " |
| 2151 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;" |
| 2152 | + transform="scale(0.2) rotate(180) translate(6,0)" /> |
| 2153 | + </marker> |
| 2154 | + <marker |
| 2155 | + inkscape:stockid="Arrow1Mend" |
| 2156 | + orient="auto" |
| 2157 | + refY="0.0" |
| 2158 | + refX="0.0" |
| 2159 | + id="Arrow1Mend" |
| 2160 | + style="overflow: visible;"> |
| 2161 | + <path |
| 2162 | + id="path3429" |
| 2163 | + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " |
| 2164 | + style="fill-rule: evenodd; stroke: rgb(0, 0, 0); stroke-width: 1pt; marker-start: none;" |
| 2165 | + transform="scale(0.4, 0.4) rotate(180) translate(10)" /> |
| 2166 | + </marker> |
| 2167 | + <inkscape:perspective |
| 2168 | + sodipodi:type="inkscape:persp3d" |
| 2169 | + inkscape:vp_x="0 : 526.18109 : 1" |
| 2170 | + inkscape:vp_y="0 : 1000 : 0" |
| 2171 | + inkscape:vp_z="744.09448 : 526.18109 : 1" |
| 2172 | + inkscape:persp3d-origin="372.04724 : 350.78739 : 1" |
| 2173 | + id="perspective10" /> |
| 2174 | + <inkscape:perspective |
| 2175 | + id="perspective4326" |
| 2176 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2177 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2178 | + inkscape:vp_y="0 : 1000 : 0" |
| 2179 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2180 | + sodipodi:type="inkscape:persp3d" /> |
| 2181 | + <marker |
| 2182 | + inkscape:stockid="Arrow1Mend" |
| 2183 | + orient="auto" |
| 2184 | + refY="0" |
| 2185 | + refX="0" |
| 2186 | + id="Arrow1Mend-9" |
| 2187 | + style="overflow:visible"> |
| 2188 | + <path |
| 2189 | + id="path3429-5" |
| 2190 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2191 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2192 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2193 | + </marker> |
| 2194 | + <marker |
| 2195 | + inkscape:stockid="Arrow1Mend1" |
| 2196 | + orient="auto" |
| 2197 | + refY="0.0" |
| 2198 | + refX="0.0" |
| 2199 | + id="Arrow1Mend1" |
| 2200 | + style="overflow: visible;"> |
| 2201 | + <path |
| 2202 | + id="path4357" |
| 2203 | + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " |
| 2204 | + style="fill-rule: evenodd; marker-start: none;stroke:#00ff00; stroke: rgb(0, 0, 0); stroke-width: 1pt;fill:#00ff00" |
| 2205 | + transform="scale(0.4, 0.4) rotate(180) translate(10)" /> |
| 2206 | + </marker> |
| 2207 | + <marker |
| 2208 | + inkscape:stockid="Arrow1Mend1u" |
| 2209 | + orient="auto" |
| 2210 | + refY="0.0" |
| 2211 | + refX="0.0" |
| 2212 | + id="Arrow1Mend1u" |
| 2213 | + style="overflow: visible;"> |
| 2214 | + <path |
| 2215 | + id="path5351" |
| 2216 | + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " |
| 2217 | + style="fill-rule: evenodd; marker-start: none;stroke:#00ff00; stroke: rgb(0, 0, 0); stroke-width: 1pt;fill:#00ff00" |
| 2218 | + transform="scale(0.4, 0.4) rotate(180) translate(10)" /> |
| 2219 | + </marker> |
| 2220 | + <inkscape:perspective |
| 2221 | + id="perspective5562" |
| 2222 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2223 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2224 | + inkscape:vp_y="0 : 1000 : 0" |
| 2225 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2226 | + sodipodi:type="inkscape:persp3d" /> |
| 2227 | + <marker |
| 2228 | + inkscape:stockid="Arrow1Mend1u" |
| 2229 | + orient="auto" |
| 2230 | + refY="0" |
| 2231 | + refX="0" |
| 2232 | + id="Arrow1Mend1u-4" |
| 2233 | + style="overflow:visible"> |
| 2234 | + <path |
| 2235 | + id="path5351-6" |
| 2236 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2237 | + style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2238 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2239 | + </marker> |
| 2240 | + <marker |
| 2241 | + inkscape:stockid="Arrow1Mend1u6" |
| 2242 | + orient="auto" |
| 2243 | + refY="0.0" |
| 2244 | + refX="0.0" |
| 2245 | + id="Arrow1Mend1u6" |
| 2246 | + style="overflow: visible;"> |
| 2247 | + <path |
| 2248 | + id="path5603" |
| 2249 | + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " |
| 2250 | + style="fill-rule: evenodd; marker-start: none;stroke:#00ffec; stroke: rgb(0, 0, 0); stroke-width: 1pt;fill:#00ffec" |
| 2251 | + transform="scale(0.4, 0.4) rotate(180) translate(10)" /> |
| 2252 | + </marker> |
| 2253 | + <inkscape:perspective |
| 2254 | + sodipodi:type="inkscape:persp3d" |
| 2255 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2256 | + inkscape:vp_y="0 : 1000 : 0" |
| 2257 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2258 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2259 | + id="perspective5866" /> |
| 2260 | + <inkscape:perspective |
| 2261 | + sodipodi:type="inkscape:persp3d" |
| 2262 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2263 | + inkscape:vp_y="0 : 1000 : 0" |
| 2264 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2265 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2266 | + id="perspective5866-1" /> |
| 2267 | + <inkscape:perspective |
| 2268 | + sodipodi:type="inkscape:persp3d" |
| 2269 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2270 | + inkscape:vp_y="0 : 1000 : 0" |
| 2271 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2272 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2273 | + id="perspective5866-0" /> |
| 2274 | + <inkscape:perspective |
| 2275 | + sodipodi:type="inkscape:persp3d" |
| 2276 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2277 | + inkscape:vp_y="0 : 1000 : 0" |
| 2278 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2279 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2280 | + id="perspective5936" /> |
| 2281 | + <inkscape:perspective |
| 2282 | + sodipodi:type="inkscape:persp3d" |
| 2283 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2284 | + inkscape:vp_y="0 : 1000 : 0" |
| 2285 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2286 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2287 | + id="perspective5990" /> |
| 2288 | + <inkscape:perspective |
| 2289 | + sodipodi:type="inkscape:persp3d" |
| 2290 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2291 | + inkscape:vp_y="0 : 1000 : 0" |
| 2292 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2293 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2294 | + id="perspective5990-1" /> |
| 2295 | + <inkscape:perspective |
| 2296 | + sodipodi:type="inkscape:persp3d" |
| 2297 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2298 | + inkscape:vp_y="0 : 1000 : 0" |
| 2299 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2300 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2301 | + id="perspective3695" /> |
| 2302 | + <marker |
| 2303 | + inkscape:stockid="Arrow1Mend" |
| 2304 | + orient="auto" |
| 2305 | + refY="0" |
| 2306 | + refX="0" |
| 2307 | + id="Arrow1Mend-6" |
| 2308 | + style="overflow:visible"> |
| 2309 | + <path |
| 2310 | + id="path3429-2" |
| 2311 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2312 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2313 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2314 | + </marker> |
| 2315 | + <inkscape:perspective |
| 2316 | + sodipodi:type="inkscape:persp3d" |
| 2317 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2318 | + inkscape:vp_y="0 : 1000 : 0" |
| 2319 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2320 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2321 | + id="perspective3723" /> |
| 2322 | + <marker |
| 2323 | + inkscape:stockid="Arrow1Mend" |
| 2324 | + orient="auto" |
| 2325 | + refY="0" |
| 2326 | + refX="0" |
| 2327 | + id="Arrow1Mend-7" |
| 2328 | + style="overflow:visible"> |
| 2329 | + <path |
| 2330 | + id="path3429-7" |
| 2331 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2332 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2333 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2334 | + </marker> |
| 2335 | + <marker |
| 2336 | + inkscape:stockid="Arrow1Mend" |
| 2337 | + orient="auto" |
| 2338 | + refY="0" |
| 2339 | + refX="0" |
| 2340 | + id="marker3729" |
| 2341 | + style="overflow:visible"> |
| 2342 | + <path |
| 2343 | + id="path3731" |
| 2344 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2345 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2346 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2347 | + </marker> |
| 2348 | + <inkscape:perspective |
| 2349 | + sodipodi:type="inkscape:persp3d" |
| 2350 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2351 | + inkscape:vp_y="0 : 1000 : 0" |
| 2352 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2353 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2354 | + id="perspective3762" /> |
| 2355 | + <marker |
| 2356 | + inkscape:stockid="Arrow1Mend" |
| 2357 | + orient="auto" |
| 2358 | + refY="0" |
| 2359 | + refX="0" |
| 2360 | + id="Arrow1Mend-2" |
| 2361 | + style="overflow:visible"> |
| 2362 | + <path |
| 2363 | + id="path3429-1" |
| 2364 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2365 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2366 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2367 | + </marker> |
| 2368 | + <marker |
| 2369 | + inkscape:stockid="Arrow1Mend" |
| 2370 | + orient="auto" |
| 2371 | + refY="0" |
| 2372 | + refX="0" |
| 2373 | + id="marker3768" |
| 2374 | + style="overflow:visible"> |
| 2375 | + <path |
| 2376 | + id="path3770" |
| 2377 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2378 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2379 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2380 | + </marker> |
| 2381 | + <inkscape:perspective |
| 2382 | + sodipodi:type="inkscape:persp3d" |
| 2383 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2384 | + inkscape:vp_y="0 : 1000 : 0" |
| 2385 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2386 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2387 | + id="perspective3801" /> |
| 2388 | + <marker |
| 2389 | + inkscape:stockid="Arrow1Mend" |
| 2390 | + orient="auto" |
| 2391 | + refY="0" |
| 2392 | + refX="0" |
| 2393 | + id="Arrow1Mend-5" |
| 2394 | + style="overflow:visible"> |
| 2395 | + <path |
| 2396 | + id="path3429-8" |
| 2397 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2398 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2399 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2400 | + </marker> |
| 2401 | + <inkscape:perspective |
| 2402 | + sodipodi:type="inkscape:persp3d" |
| 2403 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2404 | + inkscape:vp_y="0 : 1000 : 0" |
| 2405 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2406 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2407 | + id="perspective3829" /> |
| 2408 | + <marker |
| 2409 | + inkscape:stockid="Arrow1Mend" |
| 2410 | + orient="auto" |
| 2411 | + refY="0" |
| 2412 | + refX="0" |
| 2413 | + id="Arrow1Mend-4" |
| 2414 | + style="overflow:visible"> |
| 2415 | + <path |
| 2416 | + id="path3429-6" |
| 2417 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2418 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2419 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2420 | + </marker> |
| 2421 | + <marker |
| 2422 | + inkscape:stockid="Arrow1Mend" |
| 2423 | + orient="auto" |
| 2424 | + refY="0" |
| 2425 | + refX="0" |
| 2426 | + id="marker3835" |
| 2427 | + style="overflow:visible"> |
| 2428 | + <path |
| 2429 | + id="path3837" |
| 2430 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2431 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2432 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2433 | + </marker> |
| 2434 | + <inkscape:perspective |
| 2435 | + sodipodi:type="inkscape:persp3d" |
| 2436 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2437 | + inkscape:vp_y="0 : 1000 : 0" |
| 2438 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2439 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2440 | + id="perspective3872" /> |
| 2441 | + <inkscape:perspective |
| 2442 | + sodipodi:type="inkscape:persp3d" |
| 2443 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2444 | + inkscape:vp_y="0 : 1000 : 0" |
| 2445 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2446 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2447 | + id="perspective3872-0" /> |
| 2448 | + <inkscape:perspective |
| 2449 | + sodipodi:type="inkscape:persp3d" |
| 2450 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2451 | + inkscape:vp_y="0 : 1000 : 0" |
| 2452 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2453 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2454 | + id="perspective3872-5" /> |
| 2455 | + <inkscape:perspective |
| 2456 | + sodipodi:type="inkscape:persp3d" |
| 2457 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2458 | + inkscape:vp_y="0 : 1000 : 0" |
| 2459 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2460 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2461 | + id="perspective3919" /> |
| 2462 | + <inkscape:perspective |
| 2463 | + sodipodi:type="inkscape:persp3d" |
| 2464 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2465 | + inkscape:vp_y="0 : 1000 : 0" |
| 2466 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2467 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2468 | + id="perspective3944" /> |
| 2469 | + <inkscape:perspective |
| 2470 | + sodipodi:type="inkscape:persp3d" |
| 2471 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2472 | + inkscape:vp_y="0 : 1000 : 0" |
| 2473 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2474 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2475 | + id="perspective3969" /> |
| 2476 | + <inkscape:perspective |
| 2477 | + sodipodi:type="inkscape:persp3d" |
| 2478 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2479 | + inkscape:vp_y="0 : 1000 : 0" |
| 2480 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2481 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2482 | + id="perspective3994" /> |
| 2483 | + <inkscape:perspective |
| 2484 | + sodipodi:type="inkscape:persp3d" |
| 2485 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2486 | + inkscape:vp_y="0 : 1000 : 0" |
| 2487 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2488 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2489 | + id="perspective4019" /> |
| 2490 | + <marker |
| 2491 | + inkscape:stockid="Arrow1Mend1u" |
| 2492 | + orient="auto" |
| 2493 | + refY="0" |
| 2494 | + refX="0" |
| 2495 | + id="Arrow1Mend1u-7" |
| 2496 | + style="overflow:visible"> |
| 2497 | + <path |
| 2498 | + id="path5351-0" |
| 2499 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2500 | + style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2501 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2502 | + </marker> |
| 2503 | + <inkscape:perspective |
| 2504 | + sodipodi:type="inkscape:persp3d" |
| 2505 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2506 | + inkscape:vp_y="0 : 1000 : 0" |
| 2507 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2508 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2509 | + id="perspective4047" /> |
| 2510 | + <marker |
| 2511 | + inkscape:stockid="Arrow1Mend1u" |
| 2512 | + orient="auto" |
| 2513 | + refY="0" |
| 2514 | + refX="0" |
| 2515 | + id="Arrow1Mend1u-42" |
| 2516 | + style="overflow:visible"> |
| 2517 | + <path |
| 2518 | + id="path5351-2" |
| 2519 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2520 | + style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2521 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2522 | + </marker> |
| 2523 | + <inkscape:perspective |
| 2524 | + sodipodi:type="inkscape:persp3d" |
| 2525 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2526 | + inkscape:vp_y="0 : 1000 : 0" |
| 2527 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2528 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2529 | + id="perspective4075" /> |
| 2530 | + <marker |
| 2531 | + inkscape:stockid="Arrow1Mend1u" |
| 2532 | + orient="auto" |
| 2533 | + refY="0" |
| 2534 | + refX="0" |
| 2535 | + id="Arrow1Mend1u-44" |
| 2536 | + style="overflow:visible"> |
| 2537 | + <path |
| 2538 | + id="path5351-06" |
| 2539 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2540 | + style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2541 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2542 | + </marker> |
| 2543 | + <inkscape:perspective |
| 2544 | + sodipodi:type="inkscape:persp3d" |
| 2545 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2546 | + inkscape:vp_y="0 : 1000 : 0" |
| 2547 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2548 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2549 | + id="perspective4103" /> |
| 2550 | + <marker |
| 2551 | + inkscape:stockid="Arrow1Mend" |
| 2552 | + orient="auto" |
| 2553 | + refY="0" |
| 2554 | + refX="0" |
| 2555 | + id="Arrow1Mend-69" |
| 2556 | + style="overflow:visible"> |
| 2557 | + <path |
| 2558 | + id="path3429-76" |
| 2559 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2560 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2561 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2562 | + </marker> |
| 2563 | + <inkscape:perspective |
| 2564 | + sodipodi:type="inkscape:persp3d" |
| 2565 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2566 | + inkscape:vp_y="0 : 1000 : 0" |
| 2567 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2568 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2569 | + id="perspective4161" /> |
| 2570 | + <inkscape:perspective |
| 2571 | + sodipodi:type="inkscape:persp3d" |
| 2572 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2573 | + inkscape:vp_y="0 : 1000 : 0" |
| 2574 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2575 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2576 | + id="perspective4186" /> |
| 2577 | + <marker |
| 2578 | + inkscape:stockid="Arrow1Mend" |
| 2579 | + orient="auto" |
| 2580 | + refY="0" |
| 2581 | + refX="0" |
| 2582 | + id="Arrow1Mend-91" |
| 2583 | + style="overflow:visible"> |
| 2584 | + <path |
| 2585 | + id="path3429-24" |
| 2586 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2587 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2588 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2589 | + </marker> |
| 2590 | + <inkscape:perspective |
| 2591 | + sodipodi:type="inkscape:persp3d" |
| 2592 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2593 | + inkscape:vp_y="0 : 1000 : 0" |
| 2594 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2595 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2596 | + id="perspective4186-3" /> |
| 2597 | + <marker |
| 2598 | + inkscape:stockid="Arrow1Mend" |
| 2599 | + orient="auto" |
| 2600 | + refY="0" |
| 2601 | + refX="0" |
| 2602 | + id="Arrow1Mend-25" |
| 2603 | + style="overflow:visible"> |
| 2604 | + <path |
| 2605 | + id="path3429-13" |
| 2606 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2607 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2608 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2609 | + </marker> |
| 2610 | + <inkscape:perspective |
| 2611 | + sodipodi:type="inkscape:persp3d" |
| 2612 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2613 | + inkscape:vp_y="0 : 1000 : 0" |
| 2614 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2615 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2616 | + id="perspective4237" /> |
| 2617 | + <marker |
| 2618 | + inkscape:stockid="Arrow1Mend1u" |
| 2619 | + orient="auto" |
| 2620 | + refY="0" |
| 2621 | + refX="0" |
| 2622 | + id="Arrow1Mend1u-8" |
| 2623 | + style="overflow:visible"> |
| 2624 | + <path |
| 2625 | + id="path5351-3" |
| 2626 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2627 | + style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2628 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2629 | + </marker> |
| 2630 | + <inkscape:perspective |
| 2631 | + sodipodi:type="inkscape:persp3d" |
| 2632 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2633 | + inkscape:vp_y="0 : 1000 : 0" |
| 2634 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2635 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2636 | + id="perspective4265" /> |
| 2637 | + <marker |
| 2638 | + inkscape:stockid="Arrow1Mend1u6" |
| 2639 | + orient="auto" |
| 2640 | + refY="0" |
| 2641 | + refX="0" |
| 2642 | + id="Arrow1Mend1u6-2" |
| 2643 | + style="overflow:visible"> |
| 2644 | + <path |
| 2645 | + id="path5603-5" |
| 2646 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2647 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2648 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2649 | + </marker> |
| 2650 | + <inkscape:perspective |
| 2651 | + sodipodi:type="inkscape:persp3d" |
| 2652 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2653 | + inkscape:vp_y="0 : 1000 : 0" |
| 2654 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2655 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2656 | + id="perspective4292" /> |
| 2657 | + <marker |
| 2658 | + inkscape:stockid="Arrow1Mend1u6" |
| 2659 | + orient="auto" |
| 2660 | + refY="0" |
| 2661 | + refX="0" |
| 2662 | + id="Arrow1Mend1u6-1" |
| 2663 | + style="overflow:visible"> |
| 2664 | + <path |
| 2665 | + id="path5603-6" |
| 2666 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2667 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2668 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2669 | + </marker> |
| 2670 | + <inkscape:perspective |
| 2671 | + sodipodi:type="inkscape:persp3d" |
| 2672 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2673 | + inkscape:vp_y="0 : 1000 : 0" |
| 2674 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2675 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2676 | + id="perspective4320" /> |
| 2677 | + <marker |
| 2678 | + inkscape:stockid="Arrow1Mend1u6" |
| 2679 | + orient="auto" |
| 2680 | + refY="0" |
| 2681 | + refX="0" |
| 2682 | + id="Arrow1Mend1u6-8" |
| 2683 | + style="overflow:visible"> |
| 2684 | + <path |
| 2685 | + id="path5603-9" |
| 2686 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2687 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2688 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2689 | + </marker> |
| 2690 | + <inkscape:perspective |
| 2691 | + sodipodi:type="inkscape:persp3d" |
| 2692 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2693 | + inkscape:vp_y="0 : 1000 : 0" |
| 2694 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2695 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2696 | + id="perspective4348" /> |
| 2697 | + <inkscape:perspective |
| 2698 | + sodipodi:type="inkscape:persp3d" |
| 2699 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2700 | + inkscape:vp_y="0 : 1000 : 0" |
| 2701 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2702 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2703 | + id="perspective4400" /> |
| 2704 | + <inkscape:perspective |
| 2705 | + sodipodi:type="inkscape:persp3d" |
| 2706 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2707 | + inkscape:vp_y="0 : 1000 : 0" |
| 2708 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2709 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2710 | + id="perspective4425" /> |
| 2711 | + <inkscape:perspective |
| 2712 | + sodipodi:type="inkscape:persp3d" |
| 2713 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2714 | + inkscape:vp_y="0 : 1000 : 0" |
| 2715 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2716 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2717 | + id="perspective4450" /> |
| 2718 | + <marker |
| 2719 | + inkscape:stockid="Arrow1Mend1u6" |
| 2720 | + orient="auto" |
| 2721 | + refY="0" |
| 2722 | + refX="0" |
| 2723 | + id="Arrow1Mend1u6-6" |
| 2724 | + style="overflow:visible"> |
| 2725 | + <path |
| 2726 | + id="path5603-96" |
| 2727 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2728 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2729 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2730 | + </marker> |
| 2731 | + <inkscape:perspective |
| 2732 | + sodipodi:type="inkscape:persp3d" |
| 2733 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2734 | + inkscape:vp_y="0 : 1000 : 0" |
| 2735 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2736 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2737 | + id="perspective4450-1" /> |
| 2738 | + <marker |
| 2739 | + inkscape:stockid="Arrow1Mend1u6" |
| 2740 | + orient="auto" |
| 2741 | + refY="0" |
| 2742 | + refX="0" |
| 2743 | + id="Arrow1Mend1u6-7" |
| 2744 | + style="overflow:visible"> |
| 2745 | + <path |
| 2746 | + id="path5603-55" |
| 2747 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2748 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2749 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2750 | + </marker> |
| 2751 | + <inkscape:perspective |
| 2752 | + sodipodi:type="inkscape:persp3d" |
| 2753 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2754 | + inkscape:vp_y="0 : 1000 : 0" |
| 2755 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2756 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2757 | + id="perspective4491" /> |
| 2758 | + <inkscape:perspective |
| 2759 | + sodipodi:type="inkscape:persp3d" |
| 2760 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2761 | + inkscape:vp_y="0 : 1000 : 0" |
| 2762 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2763 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2764 | + id="perspective4516" /> |
| 2765 | + <inkscape:perspective |
| 2766 | + sodipodi:type="inkscape:persp3d" |
| 2767 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2768 | + inkscape:vp_y="0 : 1000 : 0" |
| 2769 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2770 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2771 | + id="perspective4516-9" /> |
| 2772 | + <inkscape:perspective |
| 2773 | + sodipodi:type="inkscape:persp3d" |
| 2774 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2775 | + inkscape:vp_y="0 : 1000 : 0" |
| 2776 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2777 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2778 | + id="perspective4552" /> |
| 2779 | + <marker |
| 2780 | + inkscape:stockid="Arrow1Mend1u6" |
| 2781 | + orient="auto" |
| 2782 | + refY="0" |
| 2783 | + refX="0" |
| 2784 | + id="Arrow1Mend1u6-81" |
| 2785 | + style="overflow:visible"> |
| 2786 | + <path |
| 2787 | + id="path5603-65" |
| 2788 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2789 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2790 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2791 | + </marker> |
| 2792 | + <inkscape:perspective |
| 2793 | + sodipodi:type="inkscape:persp3d" |
| 2794 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2795 | + inkscape:vp_y="0 : 1000 : 0" |
| 2796 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2797 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2798 | + id="perspective4580" /> |
| 2799 | + <marker |
| 2800 | + inkscape:stockid="Arrow1Mend1u6" |
| 2801 | + orient="auto" |
| 2802 | + refY="0" |
| 2803 | + refX="0" |
| 2804 | + id="Arrow1Mend1u6-3" |
| 2805 | + style="overflow:visible"> |
| 2806 | + <path |
| 2807 | + id="path5603-62" |
| 2808 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2809 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2810 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2811 | + </marker> |
| 2812 | + <inkscape:perspective |
| 2813 | + sodipodi:type="inkscape:persp3d" |
| 2814 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2815 | + inkscape:vp_y="0 : 1000 : 0" |
| 2816 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2817 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2818 | + id="perspective4608" /> |
| 2819 | + <marker |
| 2820 | + inkscape:stockid="Arrow1Mend1u" |
| 2821 | + orient="auto" |
| 2822 | + refY="0" |
| 2823 | + refX="0" |
| 2824 | + id="Arrow1Mend1u-9" |
| 2825 | + style="overflow:visible"> |
| 2826 | + <path |
| 2827 | + id="path5351-7" |
| 2828 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2829 | + style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2830 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2831 | + </marker> |
| 2832 | + <inkscape:perspective |
| 2833 | + sodipodi:type="inkscape:persp3d" |
| 2834 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2835 | + inkscape:vp_y="0 : 1000 : 0" |
| 2836 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2837 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2838 | + id="perspective5125" /> |
| 2839 | + <inkscape:perspective |
| 2840 | + sodipodi:type="inkscape:persp3d" |
| 2841 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2842 | + inkscape:vp_y="0 : 1000 : 0" |
| 2843 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2844 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2845 | + id="perspective5147" /> |
| 2846 | + <inkscape:perspective |
| 2847 | + sodipodi:type="inkscape:persp3d" |
| 2848 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2849 | + inkscape:vp_y="0 : 1000 : 0" |
| 2850 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2851 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2852 | + id="perspective5172" /> |
| 2853 | + <inkscape:perspective |
| 2854 | + sodipodi:type="inkscape:persp3d" |
| 2855 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2856 | + inkscape:vp_y="0 : 1000 : 0" |
| 2857 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2858 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2859 | + id="perspective5197" /> |
| 2860 | + <marker |
| 2861 | + inkscape:stockid="Arrow1Mend1u6" |
| 2862 | + orient="auto" |
| 2863 | + refY="0" |
| 2864 | + refX="0" |
| 2865 | + id="Arrow1Mend1u6-5" |
| 2866 | + style="overflow:visible"> |
| 2867 | + <path |
| 2868 | + id="path5603-7" |
| 2869 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2870 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2871 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2872 | + </marker> |
| 2873 | + <marker |
| 2874 | + inkscape:stockid="Arrow1Mend1u6" |
| 2875 | + orient="auto" |
| 2876 | + refY="0" |
| 2877 | + refX="0" |
| 2878 | + id="marker5203" |
| 2879 | + style="overflow:visible"> |
| 2880 | + <path |
| 2881 | + id="path5205" |
| 2882 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2883 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2884 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2885 | + </marker> |
| 2886 | + <inkscape:perspective |
| 2887 | + sodipodi:type="inkscape:persp3d" |
| 2888 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2889 | + inkscape:vp_y="0 : 1000 : 0" |
| 2890 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2891 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2892 | + id="perspective5263" /> |
| 2893 | + <marker |
| 2894 | + inkscape:stockid="Arrow1Mend1u" |
| 2895 | + orient="auto" |
| 2896 | + refY="0" |
| 2897 | + refX="0" |
| 2898 | + id="Arrow1Mend1u-0" |
| 2899 | + style="overflow:visible"> |
| 2900 | + <path |
| 2901 | + id="path5351-02" |
| 2902 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2903 | + style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2904 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2905 | + </marker> |
| 2906 | + <inkscape:perspective |
| 2907 | + sodipodi:type="inkscape:persp3d" |
| 2908 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2909 | + inkscape:vp_y="0 : 1000 : 0" |
| 2910 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2911 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2912 | + id="perspective5291" /> |
| 2913 | + <marker |
| 2914 | + inkscape:stockid="Arrow1Mend" |
| 2915 | + orient="auto" |
| 2916 | + refY="0" |
| 2917 | + refX="0" |
| 2918 | + id="Arrow1Mend-98" |
| 2919 | + style="overflow:visible"> |
| 2920 | + <path |
| 2921 | + id="path3429-9" |
| 2922 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2923 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2924 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2925 | + </marker> |
| 2926 | + <inkscape:perspective |
| 2927 | + sodipodi:type="inkscape:persp3d" |
| 2928 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2929 | + inkscape:vp_y="0 : 1000 : 0" |
| 2930 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2931 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2932 | + id="perspective5318" /> |
| 2933 | + <marker |
| 2934 | + inkscape:stockid="Arrow1Mend" |
| 2935 | + orient="auto" |
| 2936 | + refY="0" |
| 2937 | + refX="0" |
| 2938 | + id="Arrow1Mend-47" |
| 2939 | + style="overflow:visible"> |
| 2940 | + <path |
| 2941 | + id="path3429-83" |
| 2942 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2943 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2944 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2945 | + </marker> |
| 2946 | + <inkscape:perspective |
| 2947 | + sodipodi:type="inkscape:persp3d" |
| 2948 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2949 | + inkscape:vp_y="0 : 1000 : 0" |
| 2950 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2951 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2952 | + id="perspective5318-6" /> |
| 2953 | + <marker |
| 2954 | + inkscape:stockid="Arrow1Mend" |
| 2955 | + orient="auto" |
| 2956 | + refY="0" |
| 2957 | + refX="0" |
| 2958 | + id="Arrow1Mend-474" |
| 2959 | + style="overflow:visible"> |
| 2960 | + <path |
| 2961 | + id="path3429-77" |
| 2962 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2963 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2964 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2965 | + </marker> |
| 2966 | + <inkscape:perspective |
| 2967 | + sodipodi:type="inkscape:persp3d" |
| 2968 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2969 | + inkscape:vp_y="0 : 1000 : 0" |
| 2970 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2971 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2972 | + id="perspective5318-0" /> |
| 2973 | + <marker |
| 2974 | + inkscape:stockid="Arrow1Mend" |
| 2975 | + orient="auto" |
| 2976 | + refY="0" |
| 2977 | + refX="0" |
| 2978 | + id="Arrow1Mend-0" |
| 2979 | + style="overflow:visible"> |
| 2980 | + <path |
| 2981 | + id="path3429-0" |
| 2982 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 2983 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 2984 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 2985 | + </marker> |
| 2986 | + <inkscape:perspective |
| 2987 | + sodipodi:type="inkscape:persp3d" |
| 2988 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2989 | + inkscape:vp_y="0 : 1000 : 0" |
| 2990 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2991 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2992 | + id="perspective5372" /> |
| 2993 | + <inkscape:perspective |
| 2994 | + sodipodi:type="inkscape:persp3d" |
| 2995 | + inkscape:vp_x="0 : 0.5 : 1" |
| 2996 | + inkscape:vp_y="0 : 1000 : 0" |
| 2997 | + inkscape:vp_z="1 : 0.5 : 1" |
| 2998 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 2999 | + id="perspective5397" /> |
| 3000 | + <inkscape:perspective |
| 3001 | + sodipodi:type="inkscape:persp3d" |
| 3002 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3003 | + inkscape:vp_y="0 : 1000 : 0" |
| 3004 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3005 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3006 | + id="perspective5422" /> |
| 3007 | + <inkscape:perspective |
| 3008 | + sodipodi:type="inkscape:persp3d" |
| 3009 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3010 | + inkscape:vp_y="0 : 1000 : 0" |
| 3011 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3012 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3013 | + id="perspective5447" /> |
| 3014 | + <inkscape:perspective |
| 3015 | + sodipodi:type="inkscape:persp3d" |
| 3016 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3017 | + inkscape:vp_y="0 : 1000 : 0" |
| 3018 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3019 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3020 | + id="perspective5472" /> |
| 3021 | + <inkscape:perspective |
| 3022 | + sodipodi:type="inkscape:persp3d" |
| 3023 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3024 | + inkscape:vp_y="0 : 1000 : 0" |
| 3025 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3026 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3027 | + id="perspective5497" /> |
| 3028 | + <inkscape:perspective |
| 3029 | + sodipodi:type="inkscape:persp3d" |
| 3030 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3031 | + inkscape:vp_y="0 : 1000 : 0" |
| 3032 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3033 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3034 | + id="perspective5522" /> |
| 3035 | + <inkscape:perspective |
| 3036 | + sodipodi:type="inkscape:persp3d" |
| 3037 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3038 | + inkscape:vp_y="0 : 1000 : 0" |
| 3039 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3040 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3041 | + id="perspective5522-3" /> |
| 3042 | + <inkscape:perspective |
| 3043 | + sodipodi:type="inkscape:persp3d" |
| 3044 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3045 | + inkscape:vp_y="0 : 1000 : 0" |
| 3046 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3047 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3048 | + id="perspective5601" /> |
| 3049 | + <inkscape:perspective |
| 3050 | + sodipodi:type="inkscape:persp3d" |
| 3051 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3052 | + inkscape:vp_y="0 : 1000 : 0" |
| 3053 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3054 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3055 | + id="perspective5644" /> |
| 3056 | + <inkscape:perspective |
| 3057 | + sodipodi:type="inkscape:persp3d" |
| 3058 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3059 | + inkscape:vp_y="0 : 1000 : 0" |
| 3060 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3061 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3062 | + id="perspective5669" /> |
| 3063 | + <inkscape:perspective |
| 3064 | + sodipodi:type="inkscape:persp3d" |
| 3065 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3066 | + inkscape:vp_y="0 : 1000 : 0" |
| 3067 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3068 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3069 | + id="perspective5694" /> |
| 3070 | + <inkscape:perspective |
| 3071 | + sodipodi:type="inkscape:persp3d" |
| 3072 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3073 | + inkscape:vp_y="0 : 1000 : 0" |
| 3074 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3075 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3076 | + id="perspective5719" /> |
| 3077 | + <inkscape:perspective |
| 3078 | + sodipodi:type="inkscape:persp3d" |
| 3079 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3080 | + inkscape:vp_y="0 : 1000 : 0" |
| 3081 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3082 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3083 | + id="perspective5744" /> |
| 3084 | + <inkscape:perspective |
| 3085 | + sodipodi:type="inkscape:persp3d" |
| 3086 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3087 | + inkscape:vp_y="0 : 1000 : 0" |
| 3088 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3089 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3090 | + id="perspective5744-7" /> |
| 3091 | + <inkscape:perspective |
| 3092 | + sodipodi:type="inkscape:persp3d" |
| 3093 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3094 | + inkscape:vp_y="0 : 1000 : 0" |
| 3095 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3096 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3097 | + id="perspective5744-2" /> |
| 3098 | + <inkscape:perspective |
| 3099 | + sodipodi:type="inkscape:persp3d" |
| 3100 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3101 | + inkscape:vp_y="0 : 1000 : 0" |
| 3102 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3103 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3104 | + id="perspective5784" /> |
| 3105 | + <marker |
| 3106 | + inkscape:stockid="Arrow1Mend" |
| 3107 | + orient="auto" |
| 3108 | + refY="0" |
| 3109 | + refX="0" |
| 3110 | + id="Arrow1Mend-989" |
| 3111 | + style="overflow:visible"> |
| 3112 | + <path |
| 3113 | + id="path3429-65" |
| 3114 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 3115 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 3116 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> |
| 3117 | + </marker> |
| 3118 | + <inkscape:perspective |
| 3119 | + sodipodi:type="inkscape:persp3d" |
| 3120 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3121 | + inkscape:vp_y="0 : 1000 : 0" |
| 3122 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3123 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3124 | + id="perspective5818" /> |
| 3125 | + <inkscape:perspective |
| 3126 | + sodipodi:type="inkscape:persp3d" |
| 3127 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3128 | + inkscape:vp_y="0 : 1000 : 0" |
| 3129 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3130 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3131 | + id="perspective5818-0" /> |
| 3132 | + <inkscape:perspective |
| 3133 | + sodipodi:type="inkscape:persp3d" |
| 3134 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3135 | + inkscape:vp_y="0 : 1000 : 0" |
| 3136 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3137 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3138 | + id="perspective5849" /> |
| 3139 | + <inkscape:perspective |
| 3140 | + sodipodi:type="inkscape:persp3d" |
| 3141 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3142 | + inkscape:vp_y="0 : 1000 : 0" |
| 3143 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3144 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3145 | + id="perspective5849-8" /> |
| 3146 | + <inkscape:perspective |
| 3147 | + sodipodi:type="inkscape:persp3d" |
| 3148 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3149 | + inkscape:vp_y="0 : 1000 : 0" |
| 3150 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3151 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3152 | + id="perspective5849-3" /> |
| 3153 | + <inkscape:perspective |
| 3154 | + sodipodi:type="inkscape:persp3d" |
| 3155 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3156 | + inkscape:vp_y="0 : 1000 : 0" |
| 3157 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3158 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3159 | + id="perspective5849-4" /> |
| 3160 | + <inkscape:perspective |
| 3161 | + sodipodi:type="inkscape:persp3d" |
| 3162 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3163 | + inkscape:vp_y="0 : 1000 : 0" |
| 3164 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3165 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3166 | + id="perspective5898" /> |
| 3167 | + <inkscape:perspective |
| 3168 | + sodipodi:type="inkscape:persp3d" |
| 3169 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3170 | + inkscape:vp_y="0 : 1000 : 0" |
| 3171 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3172 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3173 | + id="perspective6442" /> |
| 3174 | + <inkscape:perspective |
| 3175 | + sodipodi:type="inkscape:persp3d" |
| 3176 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3177 | + inkscape:vp_y="0 : 1000 : 0" |
| 3178 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3179 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3180 | + id="perspective7524" /> |
| 3181 | + <inkscape:perspective |
| 3182 | + sodipodi:type="inkscape:persp3d" |
| 3183 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3184 | + inkscape:vp_y="0 : 1000 : 0" |
| 3185 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3186 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3187 | + id="perspective7524-6" /> |
| 3188 | + <inkscape:perspective |
| 3189 | + sodipodi:type="inkscape:persp3d" |
| 3190 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3191 | + inkscape:vp_y="0 : 1000 : 0" |
| 3192 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3193 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3194 | + id="perspective9910" /> |
| 3195 | + <inkscape:perspective |
| 3196 | + sodipodi:type="inkscape:persp3d" |
| 3197 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3198 | + inkscape:vp_y="0 : 1000 : 0" |
| 3199 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3200 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3201 | + id="perspective9935" /> |
| 3202 | + <inkscape:perspective |
| 3203 | + sodipodi:type="inkscape:persp3d" |
| 3204 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3205 | + inkscape:vp_y="0 : 1000 : 0" |
| 3206 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3207 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3208 | + id="perspective9935-9" /> |
| 3209 | + <inkscape:perspective |
| 3210 | + id="perspective9935-9-7" |
| 3211 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3212 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3213 | + inkscape:vp_y="0 : 1000 : 0" |
| 3214 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3215 | + sodipodi:type="inkscape:persp3d" /> |
| 3216 | + <inkscape:perspective |
| 3217 | + id="perspective9935-0" |
| 3218 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3219 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3220 | + inkscape:vp_y="0 : 1000 : 0" |
| 3221 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3222 | + sodipodi:type="inkscape:persp3d" /> |
| 3223 | + <inkscape:perspective |
| 3224 | + id="perspective9910-2" |
| 3225 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3226 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3227 | + inkscape:vp_y="0 : 1000 : 0" |
| 3228 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3229 | + sodipodi:type="inkscape:persp3d" /> |
| 3230 | + <inkscape:perspective |
| 3231 | + id="perspective7524-6-1" |
| 3232 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3233 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3234 | + inkscape:vp_y="0 : 1000 : 0" |
| 3235 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3236 | + sodipodi:type="inkscape:persp3d" /> |
| 3237 | + <inkscape:perspective |
| 3238 | + id="perspective7524-62" |
| 3239 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3240 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3241 | + inkscape:vp_y="0 : 1000 : 0" |
| 3242 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3243 | + sodipodi:type="inkscape:persp3d" /> |
| 3244 | + <inkscape:perspective |
| 3245 | + id="perspective6442-9" |
| 3246 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3247 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3248 | + inkscape:vp_y="0 : 1000 : 0" |
| 3249 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3250 | + sodipodi:type="inkscape:persp3d" /> |
| 3251 | + <inkscape:perspective |
| 3252 | + id="perspective5898-1" |
| 3253 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3254 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3255 | + inkscape:vp_y="0 : 1000 : 0" |
| 3256 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3257 | + sodipodi:type="inkscape:persp3d" /> |
| 3258 | + <inkscape:perspective |
| 3259 | + id="perspective5849-4-0" |
| 3260 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3261 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3262 | + inkscape:vp_y="0 : 1000 : 0" |
| 3263 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3264 | + sodipodi:type="inkscape:persp3d" /> |
| 3265 | + <inkscape:perspective |
| 3266 | + id="perspective5849-3-2" |
| 3267 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3268 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3269 | + inkscape:vp_y="0 : 1000 : 0" |
| 3270 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3271 | + sodipodi:type="inkscape:persp3d" /> |
| 3272 | + <inkscape:perspective |
| 3273 | + id="perspective5849-8-0" |
| 3274 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3275 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3276 | + inkscape:vp_y="0 : 1000 : 0" |
| 3277 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3278 | + sodipodi:type="inkscape:persp3d" /> |
| 3279 | + <inkscape:perspective |
| 3280 | + id="perspective5849-49" |
| 3281 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3282 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3283 | + inkscape:vp_y="0 : 1000 : 0" |
| 3284 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3285 | + sodipodi:type="inkscape:persp3d" /> |
| 3286 | + <inkscape:perspective |
| 3287 | + id="perspective5818-0-3" |
| 3288 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3289 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3290 | + inkscape:vp_y="0 : 1000 : 0" |
| 3291 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3292 | + sodipodi:type="inkscape:persp3d" /> |
| 3293 | + <inkscape:perspective |
| 3294 | + id="perspective5818-5" |
| 3295 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3296 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3297 | + inkscape:vp_y="0 : 1000 : 0" |
| 3298 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3299 | + sodipodi:type="inkscape:persp3d" /> |
| 3300 | + <marker |
| 3301 | + style="overflow:visible" |
| 3302 | + id="Arrow1Mend-989-8" |
| 3303 | + refX="0" |
| 3304 | + refY="0" |
| 3305 | + orient="auto" |
| 3306 | + inkscape:stockid="Arrow1Mend"> |
| 3307 | + <path |
| 3308 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 3309 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 3310 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 3311 | + id="path3429-65-2" /> |
| 3312 | + </marker> |
| 3313 | + <inkscape:perspective |
| 3314 | + id="perspective5784-7" |
| 3315 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3316 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3317 | + inkscape:vp_y="0 : 1000 : 0" |
| 3318 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3319 | + sodipodi:type="inkscape:persp3d" /> |
| 3320 | + <inkscape:perspective |
| 3321 | + id="perspective5744-2-9" |
| 3322 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3323 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3324 | + inkscape:vp_y="0 : 1000 : 0" |
| 3325 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3326 | + sodipodi:type="inkscape:persp3d" /> |
| 3327 | + <inkscape:perspective |
| 3328 | + id="perspective5744-7-9" |
| 3329 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3330 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3331 | + inkscape:vp_y="0 : 1000 : 0" |
| 3332 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3333 | + sodipodi:type="inkscape:persp3d" /> |
| 3334 | + <inkscape:perspective |
| 3335 | + id="perspective5744-1" |
| 3336 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3337 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3338 | + inkscape:vp_y="0 : 1000 : 0" |
| 3339 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3340 | + sodipodi:type="inkscape:persp3d" /> |
| 3341 | + <inkscape:perspective |
| 3342 | + id="perspective5719-8" |
| 3343 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3344 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3345 | + inkscape:vp_y="0 : 1000 : 0" |
| 3346 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3347 | + sodipodi:type="inkscape:persp3d" /> |
| 3348 | + <inkscape:perspective |
| 3349 | + id="perspective5694-0" |
| 3350 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3351 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3352 | + inkscape:vp_y="0 : 1000 : 0" |
| 3353 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3354 | + sodipodi:type="inkscape:persp3d" /> |
| 3355 | + <inkscape:perspective |
| 3356 | + id="perspective5669-7" |
| 3357 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3358 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3359 | + inkscape:vp_y="0 : 1000 : 0" |
| 3360 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3361 | + sodipodi:type="inkscape:persp3d" /> |
| 3362 | + <inkscape:perspective |
| 3363 | + id="perspective5644-5" |
| 3364 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3365 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3366 | + inkscape:vp_y="0 : 1000 : 0" |
| 3367 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3368 | + sodipodi:type="inkscape:persp3d" /> |
| 3369 | + <inkscape:perspective |
| 3370 | + id="perspective5601-3" |
| 3371 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3372 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3373 | + inkscape:vp_y="0 : 1000 : 0" |
| 3374 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3375 | + sodipodi:type="inkscape:persp3d" /> |
| 3376 | + <inkscape:perspective |
| 3377 | + id="perspective5522-3-9" |
| 3378 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3379 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3380 | + inkscape:vp_y="0 : 1000 : 0" |
| 3381 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3382 | + sodipodi:type="inkscape:persp3d" /> |
| 3383 | + <inkscape:perspective |
| 3384 | + id="perspective5522-5" |
| 3385 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3386 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3387 | + inkscape:vp_y="0 : 1000 : 0" |
| 3388 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3389 | + sodipodi:type="inkscape:persp3d" /> |
| 3390 | + <inkscape:perspective |
| 3391 | + id="perspective5497-4" |
| 3392 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3393 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3394 | + inkscape:vp_y="0 : 1000 : 0" |
| 3395 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3396 | + sodipodi:type="inkscape:persp3d" /> |
| 3397 | + <inkscape:perspective |
| 3398 | + id="perspective5472-9" |
| 3399 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3400 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3401 | + inkscape:vp_y="0 : 1000 : 0" |
| 3402 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3403 | + sodipodi:type="inkscape:persp3d" /> |
| 3404 | + <inkscape:perspective |
| 3405 | + id="perspective5447-9" |
| 3406 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3407 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3408 | + inkscape:vp_y="0 : 1000 : 0" |
| 3409 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3410 | + sodipodi:type="inkscape:persp3d" /> |
| 3411 | + <inkscape:perspective |
| 3412 | + id="perspective5422-4" |
| 3413 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3414 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3415 | + inkscape:vp_y="0 : 1000 : 0" |
| 3416 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3417 | + sodipodi:type="inkscape:persp3d" /> |
| 3418 | + <inkscape:perspective |
| 3419 | + id="perspective5397-7" |
| 3420 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3421 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3422 | + inkscape:vp_y="0 : 1000 : 0" |
| 3423 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3424 | + sodipodi:type="inkscape:persp3d" /> |
| 3425 | + <inkscape:perspective |
| 3426 | + id="perspective5372-5" |
| 3427 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3428 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3429 | + inkscape:vp_y="0 : 1000 : 0" |
| 3430 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3431 | + sodipodi:type="inkscape:persp3d" /> |
| 3432 | + <marker |
| 3433 | + style="overflow:visible" |
| 3434 | + id="Arrow1Mend-0-9" |
| 3435 | + refX="0" |
| 3436 | + refY="0" |
| 3437 | + orient="auto" |
| 3438 | + inkscape:stockid="Arrow1Mend"> |
| 3439 | + <path |
| 3440 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 3441 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 3442 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 3443 | + id="path3429-0-2" /> |
| 3444 | + </marker> |
| 3445 | + <inkscape:perspective |
| 3446 | + id="perspective5318-0-4" |
| 3447 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3448 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3449 | + inkscape:vp_y="0 : 1000 : 0" |
| 3450 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3451 | + sodipodi:type="inkscape:persp3d" /> |
| 3452 | + <marker |
| 3453 | + style="overflow:visible" |
| 3454 | + id="Arrow1Mend-474-1" |
| 3455 | + refX="0" |
| 3456 | + refY="0" |
| 3457 | + orient="auto" |
| 3458 | + inkscape:stockid="Arrow1Mend"> |
| 3459 | + <path |
| 3460 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 3461 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 3462 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 3463 | + id="path3429-77-5" /> |
| 3464 | + </marker> |
| 3465 | + <inkscape:perspective |
| 3466 | + id="perspective5318-6-9" |
| 3467 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3468 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3469 | + inkscape:vp_y="0 : 1000 : 0" |
| 3470 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3471 | + sodipodi:type="inkscape:persp3d" /> |
| 3472 | + <marker |
| 3473 | + style="overflow:visible" |
| 3474 | + id="Arrow1Mend-47-7" |
| 3475 | + refX="0" |
| 3476 | + refY="0" |
| 3477 | + orient="auto" |
| 3478 | + inkscape:stockid="Arrow1Mend"> |
| 3479 | + <path |
| 3480 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 3481 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 3482 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 3483 | + id="path3429-83-8" /> |
| 3484 | + </marker> |
| 3485 | + <inkscape:perspective |
| 3486 | + id="perspective5318-01" |
| 3487 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3488 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3489 | + inkscape:vp_y="0 : 1000 : 0" |
| 3490 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3491 | + sodipodi:type="inkscape:persp3d" /> |
| 3492 | + <marker |
| 3493 | + style="overflow:visible" |
| 3494 | + id="Arrow1Mend-98-8" |
| 3495 | + refX="0" |
| 3496 | + refY="0" |
| 3497 | + orient="auto" |
| 3498 | + inkscape:stockid="Arrow1Mend"> |
| 3499 | + <path |
| 3500 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 3501 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 3502 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 3503 | + id="path3429-9-3" /> |
| 3504 | + </marker> |
| 3505 | + <inkscape:perspective |
| 3506 | + id="perspective5291-2" |
| 3507 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3508 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3509 | + inkscape:vp_y="0 : 1000 : 0" |
| 3510 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3511 | + sodipodi:type="inkscape:persp3d" /> |
| 3512 | + <marker |
| 3513 | + style="overflow:visible" |
| 3514 | + id="Arrow1Mend1u-0-3" |
| 3515 | + refX="0" |
| 3516 | + refY="0" |
| 3517 | + orient="auto" |
| 3518 | + inkscape:stockid="Arrow1Mend1u"> |
| 3519 | + <path |
| 3520 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 3521 | + style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 3522 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 3523 | + id="path5351-02-9" /> |
| 3524 | + </marker> |
| 3525 | + <inkscape:perspective |
| 3526 | + id="perspective5263-9" |
| 3527 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3528 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3529 | + inkscape:vp_y="0 : 1000 : 0" |
| 3530 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3531 | + sodipodi:type="inkscape:persp3d" /> |
| 3532 | + <marker |
| 3533 | + style="overflow:visible" |
| 3534 | + id="marker5203-4" |
| 3535 | + refX="0" |
| 3536 | + refY="0" |
| 3537 | + orient="auto" |
| 3538 | + inkscape:stockid="Arrow1Mend1u6"> |
| 3539 | + <path |
| 3540 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 3541 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 3542 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 3543 | + id="path5205-7" /> |
| 3544 | + </marker> |
| 3545 | + <marker |
| 3546 | + style="overflow:visible" |
| 3547 | + id="Arrow1Mend1u6-5-6" |
| 3548 | + refX="0" |
| 3549 | + refY="0" |
| 3550 | + orient="auto" |
| 3551 | + inkscape:stockid="Arrow1Mend1u6"> |
| 3552 | + <path |
| 3553 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 3554 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 3555 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 3556 | + id="path5603-7-2" /> |
| 3557 | + </marker> |
| 3558 | + <inkscape:perspective |
| 3559 | + id="perspective5197-8" |
| 3560 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3561 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3562 | + inkscape:vp_y="0 : 1000 : 0" |
| 3563 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3564 | + sodipodi:type="inkscape:persp3d" /> |
| 3565 | + <inkscape:perspective |
| 3566 | + id="perspective5172-0" |
| 3567 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3568 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3569 | + inkscape:vp_y="0 : 1000 : 0" |
| 3570 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3571 | + sodipodi:type="inkscape:persp3d" /> |
| 3572 | + <inkscape:perspective |
| 3573 | + id="perspective5147-7" |
| 3574 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3575 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3576 | + inkscape:vp_y="0 : 1000 : 0" |
| 3577 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3578 | + sodipodi:type="inkscape:persp3d" /> |
| 3579 | + <inkscape:perspective |
| 3580 | + id="perspective5125-8" |
| 3581 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3582 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3583 | + inkscape:vp_y="0 : 1000 : 0" |
| 3584 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3585 | + sodipodi:type="inkscape:persp3d" /> |
| 3586 | + <marker |
| 3587 | + style="overflow:visible" |
| 3588 | + id="Arrow1Mend1u-9-0" |
| 3589 | + refX="0" |
| 3590 | + refY="0" |
| 3591 | + orient="auto" |
| 3592 | + inkscape:stockid="Arrow1Mend1u"> |
| 3593 | + <path |
| 3594 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 3595 | + style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 3596 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 3597 | + id="path5351-7-4" /> |
| 3598 | + </marker> |
| 3599 | + <inkscape:perspective |
| 3600 | + id="perspective4608-1" |
| 3601 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3602 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3603 | + inkscape:vp_y="0 : 1000 : 0" |
| 3604 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3605 | + sodipodi:type="inkscape:persp3d" /> |
| 3606 | + <marker |
| 3607 | + style="overflow:visible" |
| 3608 | + id="Arrow1Mend1u6-3-0" |
| 3609 | + refX="0" |
| 3610 | + refY="0" |
| 3611 | + orient="auto" |
| 3612 | + inkscape:stockid="Arrow1Mend1u6"> |
| 3613 | + <path |
| 3614 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 3615 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 3616 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 3617 | + id="path5603-62-4" /> |
| 3618 | + </marker> |
| 3619 | + <inkscape:perspective |
| 3620 | + id="perspective4580-6" |
| 3621 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3622 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3623 | + inkscape:vp_y="0 : 1000 : 0" |
| 3624 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3625 | + sodipodi:type="inkscape:persp3d" /> |
| 3626 | + <marker |
| 3627 | + style="overflow:visible" |
| 3628 | + id="Arrow1Mend1u6-81-7" |
| 3629 | + refX="0" |
| 3630 | + refY="0" |
| 3631 | + orient="auto" |
| 3632 | + inkscape:stockid="Arrow1Mend1u6"> |
| 3633 | + <path |
| 3634 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 3635 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 3636 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 3637 | + id="path5603-65-9" /> |
| 3638 | + </marker> |
| 3639 | + <inkscape:perspective |
| 3640 | + id="perspective4552-8" |
| 3641 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3642 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3643 | + inkscape:vp_y="0 : 1000 : 0" |
| 3644 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3645 | + sodipodi:type="inkscape:persp3d" /> |
| 3646 | + <inkscape:perspective |
| 3647 | + id="perspective4516-9-5" |
| 3648 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3649 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3650 | + inkscape:vp_y="0 : 1000 : 0" |
| 3651 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3652 | + sodipodi:type="inkscape:persp3d" /> |
| 3653 | + <inkscape:perspective |
| 3654 | + id="perspective4516-6" |
| 3655 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3656 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3657 | + inkscape:vp_y="0 : 1000 : 0" |
| 3658 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3659 | + sodipodi:type="inkscape:persp3d" /> |
| 3660 | + <inkscape:perspective |
| 3661 | + id="perspective4491-2" |
| 3662 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3663 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3664 | + inkscape:vp_y="0 : 1000 : 0" |
| 3665 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3666 | + sodipodi:type="inkscape:persp3d" /> |
| 3667 | + <marker |
| 3668 | + style="overflow:visible" |
| 3669 | + id="Arrow1Mend1u6-7-6" |
| 3670 | + refX="0" |
| 3671 | + refY="0" |
| 3672 | + orient="auto" |
| 3673 | + inkscape:stockid="Arrow1Mend1u6"> |
| 3674 | + <path |
| 3675 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 3676 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 3677 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 3678 | + id="path5603-55-5" /> |
| 3679 | + </marker> |
| 3680 | + <inkscape:perspective |
| 3681 | + id="perspective4450-1-2" |
| 3682 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3683 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3684 | + inkscape:vp_y="0 : 1000 : 0" |
| 3685 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3686 | + sodipodi:type="inkscape:persp3d" /> |
| 3687 | + <marker |
| 3688 | + style="overflow:visible" |
| 3689 | + id="Arrow1Mend1u6-6-7" |
| 3690 | + refX="0" |
| 3691 | + refY="0" |
| 3692 | + orient="auto" |
| 3693 | + inkscape:stockid="Arrow1Mend1u6"> |
| 3694 | + <path |
| 3695 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 3696 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 3697 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 3698 | + id="path5603-96-3" /> |
| 3699 | + </marker> |
| 3700 | + <inkscape:perspective |
| 3701 | + id="perspective4450-3" |
| 3702 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3703 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3704 | + inkscape:vp_y="0 : 1000 : 0" |
| 3705 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3706 | + sodipodi:type="inkscape:persp3d" /> |
| 3707 | + <inkscape:perspective |
| 3708 | + id="perspective4425-3" |
| 3709 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3710 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3711 | + inkscape:vp_y="0 : 1000 : 0" |
| 3712 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3713 | + sodipodi:type="inkscape:persp3d" /> |
| 3714 | + <inkscape:perspective |
| 3715 | + id="perspective4400-3" |
| 3716 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3717 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3718 | + inkscape:vp_y="0 : 1000 : 0" |
| 3719 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3720 | + sodipodi:type="inkscape:persp3d" /> |
| 3721 | + <inkscape:perspective |
| 3722 | + id="perspective4348-0" |
| 3723 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3724 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3725 | + inkscape:vp_y="0 : 1000 : 0" |
| 3726 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3727 | + sodipodi:type="inkscape:persp3d" /> |
| 3728 | + <marker |
| 3729 | + style="overflow:visible" |
| 3730 | + id="Arrow1Mend1u6-8-7" |
| 3731 | + refX="0" |
| 3732 | + refY="0" |
| 3733 | + orient="auto" |
| 3734 | + inkscape:stockid="Arrow1Mend1u6"> |
| 3735 | + <path |
| 3736 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 3737 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 3738 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 3739 | + id="path5603-9-9" /> |
| 3740 | + </marker> |
| 3741 | + <inkscape:perspective |
| 3742 | + id="perspective4320-8" |
| 3743 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3744 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3745 | + inkscape:vp_y="0 : 1000 : 0" |
| 3746 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3747 | + sodipodi:type="inkscape:persp3d" /> |
| 3748 | + <marker |
| 3749 | + style="overflow:visible" |
| 3750 | + id="Arrow1Mend1u6-1-0" |
| 3751 | + refX="0" |
| 3752 | + refY="0" |
| 3753 | + orient="auto" |
| 3754 | + inkscape:stockid="Arrow1Mend1u6"> |
| 3755 | + <path |
| 3756 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 3757 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 3758 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 3759 | + id="path5603-6-6" /> |
| 3760 | + </marker> |
| 3761 | + <inkscape:perspective |
| 3762 | + id="perspective4292-9" |
| 3763 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3764 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3765 | + inkscape:vp_y="0 : 1000 : 0" |
| 3766 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3767 | + sodipodi:type="inkscape:persp3d" /> |
| 3768 | + <marker |
| 3769 | + style="overflow:visible" |
| 3770 | + id="Arrow1Mend1u6-2-6" |
| 3771 | + refX="0" |
| 3772 | + refY="0" |
| 3773 | + orient="auto" |
| 3774 | + inkscape:stockid="Arrow1Mend1u6"> |
| 3775 | + <path |
| 3776 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 3777 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 3778 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 3779 | + id="path5603-5-8" /> |
| 3780 | + </marker> |
| 3781 | + <inkscape:perspective |
| 3782 | + id="perspective4265-7" |
| 3783 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3784 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3785 | + inkscape:vp_y="0 : 1000 : 0" |
| 3786 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3787 | + sodipodi:type="inkscape:persp3d" /> |
| 3788 | + <marker |
| 3789 | + style="overflow:visible" |
| 3790 | + id="Arrow1Mend1u-8-0" |
| 3791 | + refX="0" |
| 3792 | + refY="0" |
| 3793 | + orient="auto" |
| 3794 | + inkscape:stockid="Arrow1Mend1u"> |
| 3795 | + <path |
| 3796 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 3797 | + style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 3798 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 3799 | + id="path5351-3-4" /> |
| 3800 | + </marker> |
| 3801 | + <inkscape:perspective |
| 3802 | + id="perspective4237-8" |
| 3803 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3804 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3805 | + inkscape:vp_y="0 : 1000 : 0" |
| 3806 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3807 | + sodipodi:type="inkscape:persp3d" /> |
| 3808 | + <marker |
| 3809 | + style="overflow:visible" |
| 3810 | + id="Arrow1Mend-25-3" |
| 3811 | + refX="0" |
| 3812 | + refY="0" |
| 3813 | + orient="auto" |
| 3814 | + inkscape:stockid="Arrow1Mend"> |
| 3815 | + <path |
| 3816 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 3817 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 3818 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 3819 | + id="path3429-13-3" /> |
| 3820 | + </marker> |
| 3821 | + <inkscape:perspective |
| 3822 | + id="perspective4186-3-3" |
| 3823 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3824 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3825 | + inkscape:vp_y="0 : 1000 : 0" |
| 3826 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3827 | + sodipodi:type="inkscape:persp3d" /> |
| 3828 | + <marker |
| 3829 | + style="overflow:visible" |
| 3830 | + id="Arrow1Mend-91-3" |
| 3831 | + refX="0" |
| 3832 | + refY="0" |
| 3833 | + orient="auto" |
| 3834 | + inkscape:stockid="Arrow1Mend"> |
| 3835 | + <path |
| 3836 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 3837 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 3838 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 3839 | + id="path3429-24-8" /> |
| 3840 | + </marker> |
| 3841 | + <inkscape:perspective |
| 3842 | + id="perspective4186-8" |
| 3843 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3844 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3845 | + inkscape:vp_y="0 : 1000 : 0" |
| 3846 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3847 | + sodipodi:type="inkscape:persp3d" /> |
| 3848 | + <inkscape:perspective |
| 3849 | + id="perspective4161-6" |
| 3850 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3851 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3852 | + inkscape:vp_y="0 : 1000 : 0" |
| 3853 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3854 | + sodipodi:type="inkscape:persp3d" /> |
| 3855 | + <marker |
| 3856 | + style="overflow:visible" |
| 3857 | + id="Arrow1Mend-69-8" |
| 3858 | + refX="0" |
| 3859 | + refY="0" |
| 3860 | + orient="auto" |
| 3861 | + inkscape:stockid="Arrow1Mend"> |
| 3862 | + <path |
| 3863 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 3864 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 3865 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 3866 | + id="path3429-76-8" /> |
| 3867 | + </marker> |
| 3868 | + <inkscape:perspective |
| 3869 | + id="perspective4103-8" |
| 3870 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3871 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3872 | + inkscape:vp_y="0 : 1000 : 0" |
| 3873 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3874 | + sodipodi:type="inkscape:persp3d" /> |
| 3875 | + <marker |
| 3876 | + style="overflow:visible" |
| 3877 | + id="Arrow1Mend1u-44-9" |
| 3878 | + refX="0" |
| 3879 | + refY="0" |
| 3880 | + orient="auto" |
| 3881 | + inkscape:stockid="Arrow1Mend1u"> |
| 3882 | + <path |
| 3883 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 3884 | + style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 3885 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 3886 | + id="path5351-06-2" /> |
| 3887 | + </marker> |
| 3888 | + <inkscape:perspective |
| 3889 | + id="perspective4075-8" |
| 3890 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3891 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3892 | + inkscape:vp_y="0 : 1000 : 0" |
| 3893 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3894 | + sodipodi:type="inkscape:persp3d" /> |
| 3895 | + <marker |
| 3896 | + style="overflow:visible" |
| 3897 | + id="Arrow1Mend1u-42-2" |
| 3898 | + refX="0" |
| 3899 | + refY="0" |
| 3900 | + orient="auto" |
| 3901 | + inkscape:stockid="Arrow1Mend1u"> |
| 3902 | + <path |
| 3903 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 3904 | + style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 3905 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 3906 | + id="path5351-2-8" /> |
| 3907 | + </marker> |
| 3908 | + <inkscape:perspective |
| 3909 | + id="perspective4047-1" |
| 3910 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3911 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3912 | + inkscape:vp_y="0 : 1000 : 0" |
| 3913 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3914 | + sodipodi:type="inkscape:persp3d" /> |
| 3915 | + <marker |
| 3916 | + style="overflow:visible" |
| 3917 | + id="Arrow1Mend1u-7-6" |
| 3918 | + refX="0" |
| 3919 | + refY="0" |
| 3920 | + orient="auto" |
| 3921 | + inkscape:stockid="Arrow1Mend1u"> |
| 3922 | + <path |
| 3923 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 3924 | + style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 3925 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 3926 | + id="path5351-0-4" /> |
| 3927 | + </marker> |
| 3928 | + <inkscape:perspective |
| 3929 | + id="perspective4019-2" |
| 3930 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3931 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3932 | + inkscape:vp_y="0 : 1000 : 0" |
| 3933 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3934 | + sodipodi:type="inkscape:persp3d" /> |
| 3935 | + <inkscape:perspective |
| 3936 | + id="perspective3994-2" |
| 3937 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3938 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3939 | + inkscape:vp_y="0 : 1000 : 0" |
| 3940 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3941 | + sodipodi:type="inkscape:persp3d" /> |
| 3942 | + <inkscape:perspective |
| 3943 | + id="perspective3969-4" |
| 3944 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3945 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3946 | + inkscape:vp_y="0 : 1000 : 0" |
| 3947 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3948 | + sodipodi:type="inkscape:persp3d" /> |
| 3949 | + <inkscape:perspective |
| 3950 | + id="perspective3944-9" |
| 3951 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3952 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3953 | + inkscape:vp_y="0 : 1000 : 0" |
| 3954 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3955 | + sodipodi:type="inkscape:persp3d" /> |
| 3956 | + <inkscape:perspective |
| 3957 | + id="perspective3919-6" |
| 3958 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3959 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3960 | + inkscape:vp_y="0 : 1000 : 0" |
| 3961 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3962 | + sodipodi:type="inkscape:persp3d" /> |
| 3963 | + <inkscape:perspective |
| 3964 | + id="perspective3872-5-4" |
| 3965 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3966 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3967 | + inkscape:vp_y="0 : 1000 : 0" |
| 3968 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3969 | + sodipodi:type="inkscape:persp3d" /> |
| 3970 | + <inkscape:perspective |
| 3971 | + id="perspective3872-0-1" |
| 3972 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3973 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3974 | + inkscape:vp_y="0 : 1000 : 0" |
| 3975 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3976 | + sodipodi:type="inkscape:persp3d" /> |
| 3977 | + <inkscape:perspective |
| 3978 | + id="perspective3872-3" |
| 3979 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 3980 | + inkscape:vp_z="1 : 0.5 : 1" |
| 3981 | + inkscape:vp_y="0 : 1000 : 0" |
| 3982 | + inkscape:vp_x="0 : 0.5 : 1" |
| 3983 | + sodipodi:type="inkscape:persp3d" /> |
| 3984 | + <marker |
| 3985 | + style="overflow:visible" |
| 3986 | + id="marker3835-7" |
| 3987 | + refX="0" |
| 3988 | + refY="0" |
| 3989 | + orient="auto" |
| 3990 | + inkscape:stockid="Arrow1Mend"> |
| 3991 | + <path |
| 3992 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 3993 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 3994 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 3995 | + id="path3837-4" /> |
| 3996 | + </marker> |
| 3997 | + <marker |
| 3998 | + style="overflow:visible" |
| 3999 | + id="Arrow1Mend-4-5" |
| 4000 | + refX="0" |
| 4001 | + refY="0" |
| 4002 | + orient="auto" |
| 4003 | + inkscape:stockid="Arrow1Mend"> |
| 4004 | + <path |
| 4005 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 4006 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 4007 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 4008 | + id="path3429-6-1" /> |
| 4009 | + </marker> |
| 4010 | + <inkscape:perspective |
| 4011 | + id="perspective3829-3" |
| 4012 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4013 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4014 | + inkscape:vp_y="0 : 1000 : 0" |
| 4015 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4016 | + sodipodi:type="inkscape:persp3d" /> |
| 4017 | + <marker |
| 4018 | + style="overflow:visible" |
| 4019 | + id="Arrow1Mend-5-9" |
| 4020 | + refX="0" |
| 4021 | + refY="0" |
| 4022 | + orient="auto" |
| 4023 | + inkscape:stockid="Arrow1Mend"> |
| 4024 | + <path |
| 4025 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 4026 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 4027 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 4028 | + id="path3429-8-4" /> |
| 4029 | + </marker> |
| 4030 | + <inkscape:perspective |
| 4031 | + id="perspective3801-2" |
| 4032 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4033 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4034 | + inkscape:vp_y="0 : 1000 : 0" |
| 4035 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4036 | + sodipodi:type="inkscape:persp3d" /> |
| 4037 | + <marker |
| 4038 | + style="overflow:visible" |
| 4039 | + id="marker3768-5" |
| 4040 | + refX="0" |
| 4041 | + refY="0" |
| 4042 | + orient="auto" |
| 4043 | + inkscape:stockid="Arrow1Mend"> |
| 4044 | + <path |
| 4045 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 4046 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 4047 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 4048 | + id="path3770-0" /> |
| 4049 | + </marker> |
| 4050 | + <marker |
| 4051 | + style="overflow:visible" |
| 4052 | + id="Arrow1Mend-2-6" |
| 4053 | + refX="0" |
| 4054 | + refY="0" |
| 4055 | + orient="auto" |
| 4056 | + inkscape:stockid="Arrow1Mend"> |
| 4057 | + <path |
| 4058 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 4059 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 4060 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 4061 | + id="path3429-1-0" /> |
| 4062 | + </marker> |
| 4063 | + <inkscape:perspective |
| 4064 | + id="perspective3762-3" |
| 4065 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4066 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4067 | + inkscape:vp_y="0 : 1000 : 0" |
| 4068 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4069 | + sodipodi:type="inkscape:persp3d" /> |
| 4070 | + <marker |
| 4071 | + style="overflow:visible" |
| 4072 | + id="marker3729-9" |
| 4073 | + refX="0" |
| 4074 | + refY="0" |
| 4075 | + orient="auto" |
| 4076 | + inkscape:stockid="Arrow1Mend"> |
| 4077 | + <path |
| 4078 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 4079 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 4080 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 4081 | + id="path3731-9" /> |
| 4082 | + </marker> |
| 4083 | + <marker |
| 4084 | + style="overflow:visible" |
| 4085 | + id="Arrow1Mend-7-4" |
| 4086 | + refX="0" |
| 4087 | + refY="0" |
| 4088 | + orient="auto" |
| 4089 | + inkscape:stockid="Arrow1Mend"> |
| 4090 | + <path |
| 4091 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 4092 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 4093 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 4094 | + id="path3429-7-4" /> |
| 4095 | + </marker> |
| 4096 | + <inkscape:perspective |
| 4097 | + id="perspective3723-5" |
| 4098 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4099 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4100 | + inkscape:vp_y="0 : 1000 : 0" |
| 4101 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4102 | + sodipodi:type="inkscape:persp3d" /> |
| 4103 | + <marker |
| 4104 | + style="overflow:visible" |
| 4105 | + id="Arrow1Mend-6-6" |
| 4106 | + refX="0" |
| 4107 | + refY="0" |
| 4108 | + orient="auto" |
| 4109 | + inkscape:stockid="Arrow1Mend"> |
| 4110 | + <path |
| 4111 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 4112 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 4113 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 4114 | + id="path3429-2-2" /> |
| 4115 | + </marker> |
| 4116 | + <inkscape:perspective |
| 4117 | + id="perspective3695-9" |
| 4118 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4119 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4120 | + inkscape:vp_y="0 : 1000 : 0" |
| 4121 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4122 | + sodipodi:type="inkscape:persp3d" /> |
| 4123 | + <inkscape:perspective |
| 4124 | + id="perspective5990-1-1" |
| 4125 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4126 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4127 | + inkscape:vp_y="0 : 1000 : 0" |
| 4128 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4129 | + sodipodi:type="inkscape:persp3d" /> |
| 4130 | + <inkscape:perspective |
| 4131 | + id="perspective5990-9" |
| 4132 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4133 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4134 | + inkscape:vp_y="0 : 1000 : 0" |
| 4135 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4136 | + sodipodi:type="inkscape:persp3d" /> |
| 4137 | + <inkscape:perspective |
| 4138 | + id="perspective5936-0" |
| 4139 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4140 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4141 | + inkscape:vp_y="0 : 1000 : 0" |
| 4142 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4143 | + sodipodi:type="inkscape:persp3d" /> |
| 4144 | + <inkscape:perspective |
| 4145 | + id="perspective5866-0-4" |
| 4146 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4147 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4148 | + inkscape:vp_y="0 : 1000 : 0" |
| 4149 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4150 | + sodipodi:type="inkscape:persp3d" /> |
| 4151 | + <inkscape:perspective |
| 4152 | + id="perspective5866-1-0" |
| 4153 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4154 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4155 | + inkscape:vp_y="0 : 1000 : 0" |
| 4156 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4157 | + sodipodi:type="inkscape:persp3d" /> |
| 4158 | + <inkscape:perspective |
| 4159 | + id="perspective5866-8" |
| 4160 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4161 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4162 | + inkscape:vp_y="0 : 1000 : 0" |
| 4163 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4164 | + sodipodi:type="inkscape:persp3d" /> |
| 4165 | + <marker |
| 4166 | + style="overflow: visible;" |
| 4167 | + id="Arrow1Mend1u6-28" |
| 4168 | + refX="0.0" |
| 4169 | + refY="0.0" |
| 4170 | + orient="auto" |
| 4171 | + inkscape:stockid="Arrow1Mend1u6"> |
| 4172 | + <path |
| 4173 | + transform="scale(0.4, 0.4) rotate(180) translate(10)" |
| 4174 | + style="fill-rule: evenodd; marker-start: none;stroke:#00ffec; stroke: rgb(0, 0, 0); stroke-width: 1pt;fill:#00ffec" |
| 4175 | + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " |
| 4176 | + id="path5603-3" /> |
| 4177 | + </marker> |
| 4178 | + <marker |
| 4179 | + style="overflow:visible" |
| 4180 | + id="Arrow1Mend1u-4-9" |
| 4181 | + refX="0" |
| 4182 | + refY="0" |
| 4183 | + orient="auto" |
| 4184 | + inkscape:stockid="Arrow1Mend1u"> |
| 4185 | + <path |
| 4186 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 4187 | + style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 4188 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 4189 | + id="path5351-6-0" /> |
| 4190 | + </marker> |
| 4191 | + <inkscape:perspective |
| 4192 | + sodipodi:type="inkscape:persp3d" |
| 4193 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4194 | + inkscape:vp_y="0 : 1000 : 0" |
| 4195 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4196 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4197 | + id="perspective5562-2" /> |
| 4198 | + <marker |
| 4199 | + style="overflow: visible;" |
| 4200 | + id="Arrow1Mend1u-05" |
| 4201 | + refX="0.0" |
| 4202 | + refY="0.0" |
| 4203 | + orient="auto" |
| 4204 | + inkscape:stockid="Arrow1Mend1u"> |
| 4205 | + <path |
| 4206 | + transform="scale(0.4, 0.4) rotate(180) translate(10)" |
| 4207 | + style="fill-rule: evenodd; marker-start: none;stroke:#00ff00; stroke: rgb(0, 0, 0); stroke-width: 1pt;fill:#00ff00" |
| 4208 | + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " |
| 4209 | + id="path5351-5" /> |
| 4210 | + </marker> |
| 4211 | + <marker |
| 4212 | + style="overflow: visible;" |
| 4213 | + id="Arrow1Mend1-2" |
| 4214 | + refX="0.0" |
| 4215 | + refY="0.0" |
| 4216 | + orient="auto" |
| 4217 | + inkscape:stockid="Arrow1Mend1"> |
| 4218 | + <path |
| 4219 | + transform="scale(0.4, 0.4) rotate(180) translate(10)" |
| 4220 | + style="fill-rule: evenodd; marker-start: none;stroke:#00ff00; stroke: rgb(0, 0, 0); stroke-width: 1pt;fill:#00ff00" |
| 4221 | + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " |
| 4222 | + id="path4357-2" /> |
| 4223 | + </marker> |
| 4224 | + <marker |
| 4225 | + style="overflow:visible" |
| 4226 | + id="Arrow1Mend-9-4" |
| 4227 | + refX="0" |
| 4228 | + refY="0" |
| 4229 | + orient="auto" |
| 4230 | + inkscape:stockid="Arrow1Mend"> |
| 4231 | + <path |
| 4232 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 4233 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 4234 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 4235 | + id="path3429-5-2" /> |
| 4236 | + </marker> |
| 4237 | + <inkscape:perspective |
| 4238 | + sodipodi:type="inkscape:persp3d" |
| 4239 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4240 | + inkscape:vp_y="0 : 1000 : 0" |
| 4241 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4242 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4243 | + id="perspective4326-0" /> |
| 4244 | + <inkscape:perspective |
| 4245 | + id="perspective10-1" |
| 4246 | + inkscape:persp3d-origin="372.04724 : 350.78739 : 1" |
| 4247 | + inkscape:vp_z="744.09448 : 526.18109 : 1" |
| 4248 | + inkscape:vp_y="0 : 1000 : 0" |
| 4249 | + inkscape:vp_x="0 : 526.18109 : 1" |
| 4250 | + sodipodi:type="inkscape:persp3d" /> |
| 4251 | + <marker |
| 4252 | + style="overflow: visible;" |
| 4253 | + id="Arrow1Mend-42" |
| 4254 | + refX="0.0" |
| 4255 | + refY="0.0" |
| 4256 | + orient="auto" |
| 4257 | + inkscape:stockid="Arrow1Mend"> |
| 4258 | + <path |
| 4259 | + transform="scale(0.4, 0.4) rotate(180) translate(10)" |
| 4260 | + style="fill-rule: evenodd; stroke: rgb(0, 0, 0); stroke-width: 1pt; marker-start: none;" |
| 4261 | + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " |
| 4262 | + id="path3429-96" /> |
| 4263 | + </marker> |
| 4264 | + <marker |
| 4265 | + style="overflow:visible;" |
| 4266 | + id="Arrow1Send-8" |
| 4267 | + refX="0.0" |
| 4268 | + refY="0.0" |
| 4269 | + orient="auto" |
| 4270 | + inkscape:stockid="Arrow1Send"> |
| 4271 | + <path |
| 4272 | + transform="scale(0.2) rotate(180) translate(6,0)" |
| 4273 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;" |
| 4274 | + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " |
| 4275 | + id="path3700-0" /> |
| 4276 | + </marker> |
| 4277 | + <marker |
| 4278 | + inkscape:stockid="Arrow1Sstart" |
| 4279 | + orient="auto" |
| 4280 | + refY="0.0" |
| 4281 | + refX="0.0" |
| 4282 | + id="Arrow1Sstart-0" |
| 4283 | + style="overflow:visible"> |
| 4284 | + <path |
| 4285 | + id="path3697-4" |
| 4286 | + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " |
| 4287 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none" |
| 4288 | + transform="scale(0.2) translate(6,0)" /> |
| 4289 | + </marker> |
| 4290 | + <marker |
| 4291 | + inkscape:stockid="Arrow1Mstart" |
| 4292 | + orient="auto" |
| 4293 | + refY="0.0" |
| 4294 | + refX="0.0" |
| 4295 | + id="Arrow1Mstart-8" |
| 4296 | + style="overflow:visible"> |
| 4297 | + <path |
| 4298 | + id="path7555-7" |
| 4299 | + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " |
| 4300 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none" |
| 4301 | + transform="scale(0.4) translate(10,0)" /> |
| 4302 | + </marker> |
| 4303 | + <marker |
| 4304 | + inkscape:stockid="Arrow1Lstart" |
| 4305 | + orient="auto" |
| 4306 | + refY="0.0" |
| 4307 | + refX="0.0" |
| 4308 | + id="Arrow1Lstart-7" |
| 4309 | + style="overflow:visible"> |
| 4310 | + <path |
| 4311 | + id="path7549-5" |
| 4312 | + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " |
| 4313 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none" |
| 4314 | + transform="scale(0.8) translate(12.5,0)" /> |
| 4315 | + </marker> |
| 4316 | + <inkscape:perspective |
| 4317 | + id="perspective5237" |
| 4318 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4319 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4320 | + inkscape:vp_y="0 : 1000 : 0" |
| 4321 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4322 | + sodipodi:type="inkscape:persp3d" /> |
| 4323 | + <inkscape:perspective |
| 4324 | + id="perspective5212" |
| 4325 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4326 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4327 | + inkscape:vp_y="0 : 1000 : 0" |
| 4328 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4329 | + sodipodi:type="inkscape:persp3d" /> |
| 4330 | + <inkscape:perspective |
| 4331 | + id="perspective5187" |
| 4332 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4333 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4334 | + inkscape:vp_y="0 : 1000 : 0" |
| 4335 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4336 | + sodipodi:type="inkscape:persp3d" /> |
| 4337 | + <inkscape:perspective |
| 4338 | + id="perspective5162" |
| 4339 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4340 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4341 | + inkscape:vp_y="0 : 1000 : 0" |
| 4342 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4343 | + sodipodi:type="inkscape:persp3d" /> |
| 4344 | + <inkscape:perspective |
| 4345 | + id="perspective5137" |
| 4346 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4347 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4348 | + inkscape:vp_y="0 : 1000 : 0" |
| 4349 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4350 | + sodipodi:type="inkscape:persp3d" /> |
| 4351 | + <inkscape:perspective |
| 4352 | + id="perspective5112" |
| 4353 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4354 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4355 | + inkscape:vp_y="0 : 1000 : 0" |
| 4356 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4357 | + sodipodi:type="inkscape:persp3d" /> |
| 4358 | + <inkscape:perspective |
| 4359 | + id="perspective5087" |
| 4360 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4361 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4362 | + inkscape:vp_y="0 : 1000 : 0" |
| 4363 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4364 | + sodipodi:type="inkscape:persp3d" /> |
| 4365 | + <inkscape:perspective |
| 4366 | + id="perspective5062" |
| 4367 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4368 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4369 | + inkscape:vp_y="0 : 1000 : 0" |
| 4370 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4371 | + sodipodi:type="inkscape:persp3d" /> |
| 4372 | + <inkscape:perspective |
| 4373 | + id="perspective5037" |
| 4374 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4375 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4376 | + inkscape:vp_y="0 : 1000 : 0" |
| 4377 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4378 | + sodipodi:type="inkscape:persp3d" /> |
| 4379 | + <inkscape:perspective |
| 4380 | + id="perspective5012" |
| 4381 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4382 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4383 | + inkscape:vp_y="0 : 1000 : 0" |
| 4384 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4385 | + sodipodi:type="inkscape:persp3d" /> |
| 4386 | + <inkscape:perspective |
| 4387 | + id="perspective4987" |
| 4388 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4389 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4390 | + inkscape:vp_y="0 : 1000 : 0" |
| 4391 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4392 | + sodipodi:type="inkscape:persp3d" /> |
| 4393 | + <inkscape:perspective |
| 4394 | + id="perspective4962" |
| 4395 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4396 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4397 | + inkscape:vp_y="0 : 1000 : 0" |
| 4398 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4399 | + sodipodi:type="inkscape:persp3d" /> |
| 4400 | + <inkscape:perspective |
| 4401 | + id="perspective4931" |
| 4402 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4403 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4404 | + inkscape:vp_y="0 : 1000 : 0" |
| 4405 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4406 | + sodipodi:type="inkscape:persp3d" /> |
| 4407 | + <inkscape:perspective |
| 4408 | + id="perspective4873-2" |
| 4409 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4410 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4411 | + inkscape:vp_y="0 : 1000 : 0" |
| 4412 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4413 | + sodipodi:type="inkscape:persp3d" /> |
| 4414 | + <inkscape:perspective |
| 4415 | + id="perspective4873-8" |
| 4416 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4417 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4418 | + inkscape:vp_y="0 : 1000 : 0" |
| 4419 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4420 | + sodipodi:type="inkscape:persp3d" /> |
| 4421 | + <inkscape:perspective |
| 4422 | + id="perspective4873-7" |
| 4423 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4424 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4425 | + inkscape:vp_y="0 : 1000 : 0" |
| 4426 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4427 | + sodipodi:type="inkscape:persp3d" /> |
| 4428 | + <inkscape:perspective |
| 4429 | + id="perspective4873" |
| 4430 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4431 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4432 | + inkscape:vp_y="0 : 1000 : 0" |
| 4433 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4434 | + sodipodi:type="inkscape:persp3d" /> |
| 4435 | + <inkscape:perspective |
| 4436 | + id="perspective4839" |
| 4437 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4438 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4439 | + inkscape:vp_y="0 : 1000 : 0" |
| 4440 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4441 | + sodipodi:type="inkscape:persp3d" /> |
| 4442 | + <marker |
| 4443 | + style="overflow:visible" |
| 4444 | + id="marker4806" |
| 4445 | + refX="0" |
| 4446 | + refY="0" |
| 4447 | + orient="auto" |
| 4448 | + inkscape:stockid="Arrow1Mend"> |
| 4449 | + <path |
| 4450 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 4451 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 4452 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 4453 | + id="path4808" /> |
| 4454 | + </marker> |
| 4455 | + <marker |
| 4456 | + style="overflow:visible" |
| 4457 | + id="Arrow1Mend-254" |
| 4458 | + refX="0" |
| 4459 | + refY="0" |
| 4460 | + orient="auto" |
| 4461 | + inkscape:stockid="Arrow1Mend"> |
| 4462 | + <path |
| 4463 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 4464 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 4465 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 4466 | + id="path3429-27" /> |
| 4467 | + </marker> |
| 4468 | + <inkscape:perspective |
| 4469 | + id="perspective4800" |
| 4470 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4471 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4472 | + inkscape:vp_y="0 : 1000 : 0" |
| 4473 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4474 | + sodipodi:type="inkscape:persp3d" /> |
| 4475 | + <marker |
| 4476 | + style="overflow:visible" |
| 4477 | + id="Arrow1Mend-84" |
| 4478 | + refX="0" |
| 4479 | + refY="0" |
| 4480 | + orient="auto" |
| 4481 | + inkscape:stockid="Arrow1Mend"> |
| 4482 | + <path |
| 4483 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 4484 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 4485 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 4486 | + id="path3429-08" /> |
| 4487 | + </marker> |
| 4488 | + <inkscape:perspective |
| 4489 | + id="perspective4772" |
| 4490 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4491 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4492 | + inkscape:vp_y="0 : 1000 : 0" |
| 4493 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4494 | + sodipodi:type="inkscape:persp3d" /> |
| 4495 | + <inkscape:perspective |
| 4496 | + id="perspective4720" |
| 4497 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4498 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4499 | + inkscape:vp_y="0 : 1000 : 0" |
| 4500 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4501 | + sodipodi:type="inkscape:persp3d" /> |
| 4502 | + <inkscape:perspective |
| 4503 | + id="perspective4686" |
| 4504 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4505 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4506 | + inkscape:vp_y="0 : 1000 : 0" |
| 4507 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4508 | + sodipodi:type="inkscape:persp3d" /> |
| 4509 | + <inkscape:perspective |
| 4510 | + id="perspective4601" |
| 4511 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4512 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4513 | + inkscape:vp_y="0 : 1000 : 0" |
| 4514 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4515 | + sodipodi:type="inkscape:persp3d" /> |
| 4516 | + <inkscape:perspective |
| 4517 | + id="perspective3266" |
| 4518 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4519 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4520 | + inkscape:vp_y="0 : 1000 : 0" |
| 4521 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4522 | + sodipodi:type="inkscape:persp3d" /> |
| 4523 | + <marker |
| 4524 | + style="overflow:visible" |
| 4525 | + id="Arrow1Mend-03" |
| 4526 | + refX="0" |
| 4527 | + refY="0" |
| 4528 | + orient="auto" |
| 4529 | + inkscape:stockid="Arrow1Mend"> |
| 4530 | + <path |
| 4531 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 4532 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 4533 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 4534 | + id="path3429-09" /> |
| 4535 | + </marker> |
| 4536 | + <inkscape:perspective |
| 4537 | + id="perspective3202" |
| 4538 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4539 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4540 | + inkscape:vp_y="0 : 1000 : 0" |
| 4541 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4542 | + sodipodi:type="inkscape:persp3d" /> |
| 4543 | + <marker |
| 4544 | + style="overflow:visible" |
| 4545 | + id="Arrow1Mend-60" |
| 4546 | + refX="0" |
| 4547 | + refY="0" |
| 4548 | + orient="auto" |
| 4549 | + inkscape:stockid="Arrow1Mend"> |
| 4550 | + <path |
| 4551 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 4552 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 4553 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 4554 | + id="path3429-4" /> |
| 4555 | + </marker> |
| 4556 | + <inkscape:perspective |
| 4557 | + id="perspective3174" |
| 4558 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4559 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4560 | + inkscape:vp_y="0 : 1000 : 0" |
| 4561 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4562 | + sodipodi:type="inkscape:persp3d" /> |
| 4563 | + <marker |
| 4564 | + style="overflow:visible" |
| 4565 | + id="Arrow1Mend-3" |
| 4566 | + refX="0" |
| 4567 | + refY="0" |
| 4568 | + orient="auto" |
| 4569 | + inkscape:stockid="Arrow1Mend"> |
| 4570 | + <path |
| 4571 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 4572 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 4573 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 4574 | + id="path3429-3" /> |
| 4575 | + </marker> |
| 4576 | + <inkscape:perspective |
| 4577 | + id="perspective3135-3" |
| 4578 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4579 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4580 | + inkscape:vp_y="0 : 1000 : 0" |
| 4581 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4582 | + sodipodi:type="inkscape:persp3d" /> |
| 4583 | + <marker |
| 4584 | + style="overflow:visible" |
| 4585 | + id="Arrow1Mend-8" |
| 4586 | + refX="0" |
| 4587 | + refY="0" |
| 4588 | + orient="auto" |
| 4589 | + inkscape:stockid="Arrow1Mend"> |
| 4590 | + <path |
| 4591 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 4592 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 4593 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 4594 | + id="path3429-96-1" /> |
| 4595 | + </marker> |
| 4596 | + <inkscape:perspective |
| 4597 | + id="perspective3135" |
| 4598 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4599 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4600 | + inkscape:vp_y="0 : 1000 : 0" |
| 4601 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4602 | + sodipodi:type="inkscape:persp3d" /> |
| 4603 | + <inkscape:perspective |
| 4604 | + id="perspective9935-9-4" |
| 4605 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4606 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4607 | + inkscape:vp_y="0 : 1000 : 0" |
| 4608 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4609 | + sodipodi:type="inkscape:persp3d" /> |
| 4610 | + <inkscape:perspective |
| 4611 | + id="perspective9935-7" |
| 4612 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4613 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4614 | + inkscape:vp_y="0 : 1000 : 0" |
| 4615 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4616 | + sodipodi:type="inkscape:persp3d" /> |
| 4617 | + <inkscape:perspective |
| 4618 | + id="perspective9910-5" |
| 4619 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4620 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4621 | + inkscape:vp_y="0 : 1000 : 0" |
| 4622 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4623 | + sodipodi:type="inkscape:persp3d" /> |
| 4624 | + <inkscape:perspective |
| 4625 | + id="perspective7524-6-9" |
| 4626 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4627 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4628 | + inkscape:vp_y="0 : 1000 : 0" |
| 4629 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4630 | + sodipodi:type="inkscape:persp3d" /> |
| 4631 | + <inkscape:perspective |
| 4632 | + id="perspective7524-1" |
| 4633 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4634 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4635 | + inkscape:vp_y="0 : 1000 : 0" |
| 4636 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4637 | + sodipodi:type="inkscape:persp3d" /> |
| 4638 | + <inkscape:perspective |
| 4639 | + id="perspective6442-94" |
| 4640 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4641 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4642 | + inkscape:vp_y="0 : 1000 : 0" |
| 4643 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4644 | + sodipodi:type="inkscape:persp3d" /> |
| 4645 | + <inkscape:perspective |
| 4646 | + id="perspective5898-4" |
| 4647 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4648 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4649 | + inkscape:vp_y="0 : 1000 : 0" |
| 4650 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4651 | + sodipodi:type="inkscape:persp3d" /> |
| 4652 | + <inkscape:perspective |
| 4653 | + id="perspective5849-4-3" |
| 4654 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4655 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4656 | + inkscape:vp_y="0 : 1000 : 0" |
| 4657 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4658 | + sodipodi:type="inkscape:persp3d" /> |
| 4659 | + <inkscape:perspective |
| 4660 | + id="perspective5849-3-1" |
| 4661 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4662 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4663 | + inkscape:vp_y="0 : 1000 : 0" |
| 4664 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4665 | + sodipodi:type="inkscape:persp3d" /> |
| 4666 | + <inkscape:perspective |
| 4667 | + id="perspective5849-8-2" |
| 4668 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4669 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4670 | + inkscape:vp_y="0 : 1000 : 0" |
| 4671 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4672 | + sodipodi:type="inkscape:persp3d" /> |
| 4673 | + <inkscape:perspective |
| 4674 | + id="perspective5849-7" |
| 4675 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4676 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4677 | + inkscape:vp_y="0 : 1000 : 0" |
| 4678 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4679 | + sodipodi:type="inkscape:persp3d" /> |
| 4680 | + <inkscape:perspective |
| 4681 | + id="perspective5818-0-32" |
| 4682 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4683 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4684 | + inkscape:vp_y="0 : 1000 : 0" |
| 4685 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4686 | + sodipodi:type="inkscape:persp3d" /> |
| 4687 | + <inkscape:perspective |
| 4688 | + id="perspective5818-7" |
| 4689 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4690 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4691 | + inkscape:vp_y="0 : 1000 : 0" |
| 4692 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4693 | + sodipodi:type="inkscape:persp3d" /> |
| 4694 | + <marker |
| 4695 | + style="overflow:visible" |
| 4696 | + id="Arrow1Mend-989-0" |
| 4697 | + refX="0" |
| 4698 | + refY="0" |
| 4699 | + orient="auto" |
| 4700 | + inkscape:stockid="Arrow1Mend"> |
| 4701 | + <path |
| 4702 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 4703 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 4704 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 4705 | + id="path3429-65-5" /> |
| 4706 | + </marker> |
| 4707 | + <inkscape:perspective |
| 4708 | + id="perspective5784-5" |
| 4709 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4710 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4711 | + inkscape:vp_y="0 : 1000 : 0" |
| 4712 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4713 | + sodipodi:type="inkscape:persp3d" /> |
| 4714 | + <inkscape:perspective |
| 4715 | + id="perspective5744-2-4" |
| 4716 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4717 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4718 | + inkscape:vp_y="0 : 1000 : 0" |
| 4719 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4720 | + sodipodi:type="inkscape:persp3d" /> |
| 4721 | + <inkscape:perspective |
| 4722 | + id="perspective5744-7-2" |
| 4723 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4724 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4725 | + inkscape:vp_y="0 : 1000 : 0" |
| 4726 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4727 | + sodipodi:type="inkscape:persp3d" /> |
| 4728 | + <inkscape:perspective |
| 4729 | + id="perspective5744-5" |
| 4730 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4731 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4732 | + inkscape:vp_y="0 : 1000 : 0" |
| 4733 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4734 | + sodipodi:type="inkscape:persp3d" /> |
| 4735 | + <inkscape:perspective |
| 4736 | + id="perspective5719-7" |
| 4737 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4738 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4739 | + inkscape:vp_y="0 : 1000 : 0" |
| 4740 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4741 | + sodipodi:type="inkscape:persp3d" /> |
| 4742 | + <inkscape:perspective |
| 4743 | + id="perspective5694-8" |
| 4744 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4745 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4746 | + inkscape:vp_y="0 : 1000 : 0" |
| 4747 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4748 | + sodipodi:type="inkscape:persp3d" /> |
| 4749 | + <inkscape:perspective |
| 4750 | + id="perspective5669-3" |
| 4751 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4752 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4753 | + inkscape:vp_y="0 : 1000 : 0" |
| 4754 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4755 | + sodipodi:type="inkscape:persp3d" /> |
| 4756 | + <inkscape:perspective |
| 4757 | + id="perspective5644-8" |
| 4758 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4759 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4760 | + inkscape:vp_y="0 : 1000 : 0" |
| 4761 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4762 | + sodipodi:type="inkscape:persp3d" /> |
| 4763 | + <inkscape:perspective |
| 4764 | + id="perspective5601-8" |
| 4765 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4766 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4767 | + inkscape:vp_y="0 : 1000 : 0" |
| 4768 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4769 | + sodipodi:type="inkscape:persp3d" /> |
| 4770 | + <inkscape:perspective |
| 4771 | + id="perspective5522-3-4" |
| 4772 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4773 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4774 | + inkscape:vp_y="0 : 1000 : 0" |
| 4775 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4776 | + sodipodi:type="inkscape:persp3d" /> |
| 4777 | + <inkscape:perspective |
| 4778 | + id="perspective5522-8" |
| 4779 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4780 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4781 | + inkscape:vp_y="0 : 1000 : 0" |
| 4782 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4783 | + sodipodi:type="inkscape:persp3d" /> |
| 4784 | + <inkscape:perspective |
| 4785 | + id="perspective5497-6" |
| 4786 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4787 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4788 | + inkscape:vp_y="0 : 1000 : 0" |
| 4789 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4790 | + sodipodi:type="inkscape:persp3d" /> |
| 4791 | + <inkscape:perspective |
| 4792 | + id="perspective5472-5" |
| 4793 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4794 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4795 | + inkscape:vp_y="0 : 1000 : 0" |
| 4796 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4797 | + sodipodi:type="inkscape:persp3d" /> |
| 4798 | + <inkscape:perspective |
| 4799 | + id="perspective5447-6" |
| 4800 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4801 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4802 | + inkscape:vp_y="0 : 1000 : 0" |
| 4803 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4804 | + sodipodi:type="inkscape:persp3d" /> |
| 4805 | + <inkscape:perspective |
| 4806 | + id="perspective5422-5" |
| 4807 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4808 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4809 | + inkscape:vp_y="0 : 1000 : 0" |
| 4810 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4811 | + sodipodi:type="inkscape:persp3d" /> |
| 4812 | + <inkscape:perspective |
| 4813 | + id="perspective5397-4" |
| 4814 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4815 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4816 | + inkscape:vp_y="0 : 1000 : 0" |
| 4817 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4818 | + sodipodi:type="inkscape:persp3d" /> |
| 4819 | + <inkscape:perspective |
| 4820 | + id="perspective5372-8" |
| 4821 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4822 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4823 | + inkscape:vp_y="0 : 1000 : 0" |
| 4824 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4825 | + sodipodi:type="inkscape:persp3d" /> |
| 4826 | + <marker |
| 4827 | + style="overflow:visible" |
| 4828 | + id="Arrow1Mend-0-5" |
| 4829 | + refX="0" |
| 4830 | + refY="0" |
| 4831 | + orient="auto" |
| 4832 | + inkscape:stockid="Arrow1Mend"> |
| 4833 | + <path |
| 4834 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 4835 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 4836 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 4837 | + id="path3429-0-8" /> |
| 4838 | + </marker> |
| 4839 | + <inkscape:perspective |
| 4840 | + id="perspective5318-0-1" |
| 4841 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4842 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4843 | + inkscape:vp_y="0 : 1000 : 0" |
| 4844 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4845 | + sodipodi:type="inkscape:persp3d" /> |
| 4846 | + <marker |
| 4847 | + style="overflow:visible" |
| 4848 | + id="Arrow1Mend-474-2" |
| 4849 | + refX="0" |
| 4850 | + refY="0" |
| 4851 | + orient="auto" |
| 4852 | + inkscape:stockid="Arrow1Mend"> |
| 4853 | + <path |
| 4854 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 4855 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 4856 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 4857 | + id="path3429-77-7" /> |
| 4858 | + </marker> |
| 4859 | + <inkscape:perspective |
| 4860 | + id="perspective5318-6-6" |
| 4861 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4862 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4863 | + inkscape:vp_y="0 : 1000 : 0" |
| 4864 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4865 | + sodipodi:type="inkscape:persp3d" /> |
| 4866 | + <marker |
| 4867 | + style="overflow:visible" |
| 4868 | + id="Arrow1Mend-47-79" |
| 4869 | + refX="0" |
| 4870 | + refY="0" |
| 4871 | + orient="auto" |
| 4872 | + inkscape:stockid="Arrow1Mend"> |
| 4873 | + <path |
| 4874 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 4875 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 4876 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 4877 | + id="path3429-83-7" /> |
| 4878 | + </marker> |
| 4879 | + <inkscape:perspective |
| 4880 | + id="perspective5318-7" |
| 4881 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4882 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4883 | + inkscape:vp_y="0 : 1000 : 0" |
| 4884 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4885 | + sodipodi:type="inkscape:persp3d" /> |
| 4886 | + <marker |
| 4887 | + style="overflow:visible" |
| 4888 | + id="Arrow1Mend-98-2" |
| 4889 | + refX="0" |
| 4890 | + refY="0" |
| 4891 | + orient="auto" |
| 4892 | + inkscape:stockid="Arrow1Mend"> |
| 4893 | + <path |
| 4894 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 4895 | + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 4896 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 4897 | + id="path3429-9-1" /> |
| 4898 | + </marker> |
| 4899 | + <inkscape:perspective |
| 4900 | + id="perspective5291-9" |
| 4901 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4902 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4903 | + inkscape:vp_y="0 : 1000 : 0" |
| 4904 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4905 | + sodipodi:type="inkscape:persp3d" /> |
| 4906 | + <marker |
| 4907 | + style="overflow:visible" |
| 4908 | + id="Arrow1Mend1u-0-0" |
| 4909 | + refX="0" |
| 4910 | + refY="0" |
| 4911 | + orient="auto" |
| 4912 | + inkscape:stockid="Arrow1Mend1u"> |
| 4913 | + <path |
| 4914 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 4915 | + style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 4916 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 4917 | + id="path5351-02-6" /> |
| 4918 | + </marker> |
| 4919 | + <inkscape:perspective |
| 4920 | + id="perspective5263-7" |
| 4921 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4922 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4923 | + inkscape:vp_y="0 : 1000 : 0" |
| 4924 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4925 | + sodipodi:type="inkscape:persp3d" /> |
| 4926 | + <marker |
| 4927 | + style="overflow:visible" |
| 4928 | + id="marker5203-0" |
| 4929 | + refX="0" |
| 4930 | + refY="0" |
| 4931 | + orient="auto" |
| 4932 | + inkscape:stockid="Arrow1Mend1u6"> |
| 4933 | + <path |
| 4934 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 4935 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 4936 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 4937 | + id="path5205-3" /> |
| 4938 | + </marker> |
| 4939 | + <marker |
| 4940 | + style="overflow:visible" |
| 4941 | + id="Arrow1Mend1u6-5-8" |
| 4942 | + refX="0" |
| 4943 | + refY="0" |
| 4944 | + orient="auto" |
| 4945 | + inkscape:stockid="Arrow1Mend1u6"> |
| 4946 | + <path |
| 4947 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 4948 | + style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 4949 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 4950 | + id="path5603-7-8" /> |
| 4951 | + </marker> |
| 4952 | + <inkscape:perspective |
| 4953 | + id="perspective5197-9" |
| 4954 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4955 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4956 | + inkscape:vp_y="0 : 1000 : 0" |
| 4957 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4958 | + sodipodi:type="inkscape:persp3d" /> |
| 4959 | + <inkscape:perspective |
| 4960 | + id="perspective5172-08" |
| 4961 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4962 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4963 | + inkscape:vp_y="0 : 1000 : 0" |
| 4964 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4965 | + sodipodi:type="inkscape:persp3d" /> |
| 4966 | + <inkscape:perspective |
| 4967 | + id="perspective5147-9" |
| 4968 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4969 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4970 | + inkscape:vp_y="0 : 1000 : 0" |
| 4971 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4972 | + sodipodi:type="inkscape:persp3d" /> |
| 4973 | + <inkscape:perspective |
| 4974 | + id="perspective5125-1" |
| 4975 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4976 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4977 | + inkscape:vp_y="0 : 1000 : 0" |
| 4978 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4979 | + sodipodi:type="inkscape:persp3d" /> |
| 4980 | + <marker |
| 4981 | + style="overflow:visible" |
| 4982 | + id="Arrow1Mend1u-9-9" |
| 4983 | + refX="0" |
| 4984 | + refY="0" |
| 4985 | + orient="auto" |
| 4986 | + inkscape:stockid="Arrow1Mend1u"> |
| 4987 | + <path |
| 4988 | + transform="matrix(-0.4,0,0,-0.4,-4,0)" |
| 4989 | + style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" |
| 4990 | + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" |
| 4991 | + id="path5351-7-1" /> |
| 4992 | + </marker> |
| 4993 | + <inkscape:perspective |
| 4994 | + id="perspective4608-6" |
| 4995 | + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" |
| 4996 | + inkscape:vp_z="1 : 0.5 : 1" |
| 4997 | + inkscape:vp_y="0 : 1000 : 0" |
| 4998 | + inkscape:vp_x="0 : 0.5 : 1" |
| 4999 | + sodipodi:type="inkscape:persp3d" /> |
| 5000 | + <marker |
The diff has been truncated for viewing.


Big States refactor.
This is the new States, the machine the makes the big transitions in
SyncDaemon.
Previously, we had the manager in state.py, and a big collection of
states in states.py.
Now we have only one states.py, that is much much simpler. The
responsibilities are split in three:
- StateManager: big states
- QueueManager: handles which AQ queue to execute.
- ConnectionManager: hanldes the network status.
You can check graphs for all three in the 'docs' directory.
Also, some other changes are in this branch:
- a couple of events renaming, to make it more clear, and removed some
unused events.
- LocalRescan is another step in the big states, not something semi-handled
by main.py.
- Lot of docstring fixes
- No more max handshake timeouts, so that option is removed everywhere
- RequestQueue behaviour about what is WAITING and what is DONE.
Of course, previous tests are adapted to these changes.
Finally, included an extensive test suite for this.