##// END OF EJS Templates
Merge branch 'master' of git://github.com/ipython/ipython into qtfrontend
epatters -
r2608:1fe09a76 merge
parent child Browse files
Show More
@@ -0,0 +1,271 b''
1 """Kernel frontend classes.
2
3 To do:
4
5 1. Create custom channel subclasses for Qt.
6 2. Create logger to handle debugging and console messages.
7
8 """
9
10 from Queue import Queue, Empty
11 from threading import Thread
12 import traceback
13
14 import zmq
15 from zmq import POLLIN, POLLOUT, POLLERR
16 from zmq.eventloop import ioloop
17 from session import Session
18
19
20 class MissingHandlerError(Exception):
21 pass
22
23
24 class KernelManager(object):
25
26 def __init__(self, xreq_addr, sub_addr, rep_addr,
27 context=None, session=None):
28 self.context = zmq.Context() if context is None else context
29 self.session = Session() if session is None else session
30 self.xreq_addr = xreq_addr
31 self.sub_addr = sub_addr
32 self.rep_addr = rep_addr
33
34 def start_kernel(self):
35 """Start a localhost kernel on ip and port.
36
37 The SUB channel is for the frontend to receive messages published by
38 the kernel.
39
40 The REQ channel is for the frontend to make requests of the kernel.
41
42 The REP channel is for the kernel to request stdin (raw_input) from
43 the frontend.
44 """
45
46 def kill_kernel(self):
47 """Kill the running kernel"""
48
49 def is_alive(self):
50 """Is the kernel alive?"""
51 return True
52
53 def signal_kernel(self, signum):
54 """Send signum to the kernel."""
55
56 def get_sub_channel(self):
57 """Get the SUB socket channel object."""
58 return SubSocketChannel(self.context, self.session, self.sub_addr)
59
60 def get_xreq_channel(self):
61 """Get the REQ socket channel object to make requests of the kernel."""
62 return XReqSocketChannel(self.context, self.session, self.xreq_addr)
63
64 def get_rep_channel(self):
65 """Get the REP socket channel object to handle stdin (raw_input)."""
66 return RepSocketChannel(self.context, self.session, self.rep_addr)
67
68
69 class ZmqSocketChannel(Thread):
70
71 socket = None
72
73 def __init__(self, context, session, addr):
74 self.context = context
75 self.session = session
76 self.addr = addr
77 super(ZmqSocketChannel, self).__init__()
78 self.daemon = True
79
80
81 class SubSocketChannel(ZmqSocketChannel):
82
83 handlers = None
84 _overriden_call_handler = None
85
86 def __init__(self, context, session, addr):
87 self.handlers = {}
88 super(SubSocketChannel, self).__init__(context, session, addr)
89
90 def run(self):
91 self.socket = self.context.socket(zmq.SUB)
92 self.socket.setsockopt(zmq.SUBSCRIBE,'')
93 self.socket.setsockopt(zmq.IDENTITY, self.session.session)
94 self.socket.connect('tcp://%s:%i' % self.addr)
95 self.ioloop = ioloop.IOLoop()
96 self.ioloop.add_handler(self.socket, self._handle_events,
97 POLLIN|POLLERR)
98 self.ioloop.start()
99
100 def _handle_events(self, socket, events):
101 # Turn on and off POLLOUT depending on if we have made a request
102 if events & POLLERR:
103 self._handle_err()
104 if events & POLLIN:
105 self._handle_recv()
106
107 def _handle_err(self):
108 raise zmq.ZmqError()
109
110 def _handle_recv(self):
111 msg = self.socket.recv_json()
112 self.call_handlers(msg)
113
114 def override_call_handler(self, func):
115 """Permanently override the call_handler.
116
117 The function func will be called as::
118
119 func(handler, msg)
120
121 And must call::
122
123 handler(msg)
124
125 in the main thread.
126 """
127 assert callable(func), "not a callable: %r" % func
128 self._overriden_call_handler = func
129
130 def call_handlers(self, msg):
131 handler = self.handlers.get(msg['msg_type'], None)
132 if handler is not None:
133 try:
134 self.call_handler(handler, msg)
135 except:
136 # XXX: This should be logged at least
137 traceback.print_last()
138
139 def call_handler(self, handler, msg):
140 if self._overriden_call_handler is not None:
141 self._overriden_call_handler(handler, msg)
142 elif hasattr(self, '_call_handler'):
143 call_handler = getattr(self, '_call_handler')
144 call_handler(handler, msg)
145 else:
146 raise RuntimeError('no handler!')
147
148 def add_handler(self, callback, msg_type):
149 """Register a callback for msg type."""
150 self.handlers[msg_type] = callback
151
152 def remove_handler(self, msg_type):
153 self.handlers.pop(msg_type, None)
154
155
156 class XReqSocketChannel(ZmqSocketChannel):
157
158 handler_queue = None
159 command_queue = None
160 handlers = None
161 _overriden_call_handler = None
162
163 def __init__(self, context, session, addr):
164 self.handlers = {}
165 self.handler_queue = Queue()
166 self.command_queue = Queue()
167 super(XReqSocketChannel, self).__init__(context, session, addr)
168
169 def run(self):
170 self.socket = self.context.socket(zmq.XREQ)
171 self.socket.setsockopt(zmq.IDENTITY, self.session.session)
172 self.socket.connect('tcp://%s:%i' % self.addr)
173 self.ioloop = ioloop.IOLoop()
174 self.ioloop.add_handler(self.socket, self._handle_events,
175 POLLIN|POLLOUT|POLLERR)
176 self.ioloop.start()
177
178 def _handle_events(self, socket, events):
179 # Turn on and off POLLOUT depending on if we have made a request
180 if events & POLLERR:
181 self._handle_err()
182 if events & POLLOUT:
183 self._handle_send()
184 if events & POLLIN:
185 self._handle_recv()
186
187 def _handle_recv(self):
188 msg = self.socket.recv_json()
189 print "Got reply:", msg
190 try:
191 handler = self.handler_queue.get(False)
192 except Empty:
193 print "Message received with no handler!!!"
194 print msg
195 else:
196 self.call_handler(handler, msg)
197
198 def _handle_send(self):
199 try:
200 msg = self.command_queue.get(False)
201 except Empty:
202 pass
203 else:
204 self.socket.send_json(msg)
205
206 def _handle_err(self):
207 raise zmq.ZmqError()
208
209 def _queue_request(self, msg, callback):
210 handler = self._find_handler(msg['msg_type'], callback)
211 self.handler_queue.put(handler)
212 self.command_queue.put(msg)
213
214 def execute(self, code, callback=None):
215 # Create class for content/msg creation. Related to, but possibly
216 # not in Session.
217 content = dict(code=code)
218 msg = self.session.msg('execute_request', content)
219 self._queue_request(msg, callback)
220 return msg['header']['msg_id']
221
222 def complete(self, text, line, block=None, callback=None):
223 content = dict(text=text, line=line)
224 msg = self.session.msg('complete_request', content)
225 return self._queue_request(msg, callback)
226 return msg['header']['msg_id']
227
228 def object_info(self, oname, callback=None):
229 content = dict(oname=oname)
230 msg = self.session.msg('object_info_request', content)
231 return self._queue_request(msg, callback)
232 return msg['header']['msg_id']
233
234 def _find_handler(self, name, callback):
235 if callback is not None:
236 return callback
237 handler = self.handlers.get(name)
238 if handler is None:
239 raise MissingHandlerError('No handler defined for method: %s' % name)
240 return handler
241
242 def override_call_handler(self, func):
243 """Permanently override the call_handler.
244
245 The function func will be called as::
246
247 func(handler, msg)
248
249 And must call::
250
251 handler(msg)
252
253 in the main thread.
254 """
255 assert callable(func), "not a callable: %r" % func
256 self._overriden_call_handler = func
257
258 def call_handler(self, handler, msg):
259 if self._overriden_call_handler is not None:
260 self._overriden_call_handler(handler, msg)
261 elif hasattr(self, '_call_handler'):
262 call_handler = getattr(self, '_call_handler')
263 call_handler(handler, msg)
264 else:
265 raise RuntimeError('no handler!')
266
267
268 class RepSocketChannel(ZmqSocketChannel):
269
270 def on_raw_input():
271 pass
@@ -0,0 +1,52 b''
1 from Queue import Queue, Empty
2 import time
3
4 from kernelmanager import KernelManager
5
6 xreq_addr = ('127.0.0.1',5575)
7 sub_addr = ('127.0.0.1', 5576)
8 rep_addr = ('127.0.0.1', 5577)
9
10
11 km = KernelManager(xreq_addr, sub_addr, rep_addr)
12 # xreq_channel = km.get_xreq_channel()
13 sub_channel = km.get_sub_channel()
14
15 # xreq_channel.start()
16 sub_channel.start()
17
18 print "Channels are started"
19
20 def printer(msg):
21 print
22 print msg
23
24 class CallHandler(object):
25
26 def __init__(self):
27 self.queue = Queue()
28
29 def __call__(self, handler, msg):
30 self.queue.put((handler, msg))
31
32 def handle(self):
33 try:
34 handler, msg = self.queue.get(block=False)
35 except Empty:
36 pass
37 else:
38 handler(msg)
39
40 call_handler = CallHandler()
41 sub_channel.override_call_handler(call_handler)
42 sub_channel.add_handler(printer, 'pyin')
43 sub_channel.add_handler(printer, 'pyout')
44 sub_channel.add_handler(printer, 'stdout')
45 sub_channel.add_handler(printer, 'stderr')
46
47 for i in range(100):
48 call_handler.handle()
49 time.sleep(1)
50
51 # xreq_channel.join()
52 sub_channel.join() No newline at end of file
1 NO CONTENT: new file 100644, binary diff hidden
This diff has been collapsed as it changes many lines, (6760 lines changed) Show them Hide them
@@ -0,0 +1,6760 b''
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2 <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
4 <svg
5 xmlns:dc="http://purl.org/dc/elements/1.1/"
6 xmlns:cc="http://creativecommons.org/ns#"
7 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8 xmlns:svg="http://www.w3.org/2000/svg"
9 xmlns="http://www.w3.org/2000/svg"
10 xmlns:xlink="http://www.w3.org/1999/xlink"
11 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13 width="744.09448819"
14 height="1052.3622047"
15 id="svg2"
16 version="1.1"
17 inkscape:version="0.47 r22583"
18 sodipodi:docname="ipython-frontend-kernel.svg"
19 inkscape:export-filename="/home/jtriley/Documents/ipython-frontend-kernel.png"
20 inkscape:export-xdpi="90"
21 inkscape:export-ydpi="90">
22 <defs
23 id="defs4">
24 <marker
25 inkscape:stockid="Arrow1Send"
26 orient="auto"
27 refY="0.0"
28 refX="0.0"
29 id="Arrow1Send"
30 style="overflow:visible;">
31 <path
32 id="path5065"
33 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 "
34 style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
35 transform="scale(0.2) rotate(180) translate(6,0)" />
36 </marker>
37 <marker
38 inkscape:stockid="Arrow1Mstart"
39 orient="auto"
40 refY="0.0"
41 refX="0.0"
42 id="Arrow1Mstart"
43 style="overflow:visible">
44 <path
45 id="path5058"
46 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 "
47 style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
48 transform="scale(0.4) translate(10,0)" />
49 </marker>
50 <marker
51 inkscape:stockid="Arrow1Mend"
52 orient="auto"
53 refY="0.0"
54 refX="0.0"
55 id="Arrow1Mend"
56 style="overflow:visible;">
57 <path
58 id="path5061"
59 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 "
60 style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
61 transform="scale(0.4) rotate(180) translate(10,0)" />
62 </marker>
63 <marker
64 inkscape:stockid="Tail"
65 orient="auto"
66 refY="0.0"
67 refX="0.0"
68 id="Tail"
69 style="overflow:visible">
70 <g
71 id="g5088"
72 transform="scale(-1.2)">
73 <path
74 id="path5090"
75 d="M -3.8048674,-3.9585227 L 0.54352094,0"
76 style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
77 <path
78 id="path5092"
79 d="M -1.2866832,-3.9585227 L 3.0617053,0"
80 style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
81 <path
82 id="path5094"
83 d="M 1.3053582,-3.9585227 L 5.6537466,0"
84 style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
85 <path
86 id="path5096"
87 d="M -3.8048674,4.1775838 L 0.54352094,0.21974226"
88 style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
89 <path
90 id="path5098"
91 d="M -1.2866832,4.1775838 L 3.0617053,0.21974226"
92 style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
93 <path
94 id="path5100"
95 d="M 1.3053582,4.1775838 L 5.6537466,0.21974226"
96 style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
97 </g>
98 </marker>
99 <marker
100 inkscape:stockid="SquareL"
101 orient="auto"
102 refY="0.0"
103 refX="0.0"
104 id="SquareL"
105 style="overflow:visible">
106 <path
107 id="path5123"
108 d="M -5.0,-5.0 L -5.0,5.0 L 5.0,5.0 L 5.0,-5.0 L -5.0,-5.0 z "
109 style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
110 transform="scale(0.8)" />
111 </marker>
112 <marker
113 inkscape:stockid="Arrow2Lend"
114 orient="auto"
115 refY="0.0"
116 refX="0.0"
117 id="Arrow2Lend"
118 style="overflow:visible;">
119 <path
120 id="path5073"
121 style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
122 d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
123 transform="scale(1.1) rotate(180) translate(1,0)" />
124 </marker>
125 <marker
126 inkscape:stockid="Arrow1Lstart"
127 orient="auto"
128 refY="0.0"
129 refX="0.0"
130 id="Arrow1Lstart"
131 style="overflow:visible">
132 <path
133 id="path5052"
134 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 "
135 style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
136 transform="scale(0.8) translate(12.5,0)" />
137 </marker>
138 <marker
139 inkscape:stockid="Arrow1Lend"
140 orient="auto"
141 refY="0.0"
142 refX="0.0"
143 id="Arrow1Lend"
144 style="overflow:visible;">
145 <path
146 id="path5055"
147 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 "
148 style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
149 transform="scale(0.8) rotate(180) translate(12.5,0)" />
150 </marker>
151 <marker
152 inkscape:stockid="Arrow2Lstart"
153 orient="auto"
154 refY="0.0"
155 refX="0.0"
156 id="Arrow2Lstart"
157 style="overflow:visible">
158 <path
159 id="path5070"
160 style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round"
161 d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
162 transform="scale(1.1) translate(1,0)" />
163 </marker>
164 <inkscape:perspective
165 sodipodi:type="inkscape:persp3d"
166 inkscape:vp_x="0 : 526.18109 : 1"
167 inkscape:vp_y="0 : 1000 : 0"
168 inkscape:vp_z="744.09448 : 526.18109 : 1"
169 inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
170 id="perspective10" />
171 <inkscape:perspective
172 id="perspective2828"
173 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
174 inkscape:vp_z="1 : 0.5 : 1"
175 inkscape:vp_y="0 : 1000 : 0"
176 inkscape:vp_x="0 : 0.5 : 1"
177 sodipodi:type="inkscape:persp3d" />
178 <inkscape:perspective
179 id="perspective3632"
180 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
181 inkscape:vp_z="1 : 0.5 : 1"
182 inkscape:vp_y="0 : 1000 : 0"
183 inkscape:vp_x="0 : 0.5 : 1"
184 sodipodi:type="inkscape:persp3d" />
185 <inkscape:perspective
186 id="perspective3665"
187 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
188 inkscape:vp_z="1 : 0.5 : 1"
189 inkscape:vp_y="0 : 1000 : 0"
190 inkscape:vp_x="0 : 0.5 : 1"
191 sodipodi:type="inkscape:persp3d" />
192 <inkscape:perspective
193 id="perspective3735"
194 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
195 inkscape:vp_z="1 : 0.5 : 1"
196 inkscape:vp_y="0 : 1000 : 0"
197 inkscape:vp_x="0 : 0.5 : 1"
198 sodipodi:type="inkscape:persp3d" />
199 <inkscape:perspective
200 id="perspective3735-0"
201 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
202 inkscape:vp_z="1 : 0.5 : 1"
203 inkscape:vp_y="0 : 1000 : 0"
204 inkscape:vp_x="0 : 0.5 : 1"
205 sodipodi:type="inkscape:persp3d" />
206 <inkscape:perspective
207 id="perspective3766"
208 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
209 inkscape:vp_z="1 : 0.5 : 1"
210 inkscape:vp_y="0 : 1000 : 0"
211 inkscape:vp_x="0 : 0.5 : 1"
212 sodipodi:type="inkscape:persp3d" />
213 <inkscape:perspective
214 id="perspective3796"
215 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
216 inkscape:vp_z="1 : 0.5 : 1"
217 inkscape:vp_y="0 : 1000 : 0"
218 inkscape:vp_x="0 : 0.5 : 1"
219 sodipodi:type="inkscape:persp3d" />
220 <inkscape:perspective
221 id="perspective3841"
222 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
223 inkscape:vp_z="1 : 0.5 : 1"
224 inkscape:vp_y="0 : 1000 : 0"
225 inkscape:vp_x="0 : 0.5 : 1"
226 sodipodi:type="inkscape:persp3d" />
227 <inkscape:perspective
228 id="perspective3867"
229 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
230 inkscape:vp_z="1 : 0.5 : 1"
231 inkscape:vp_y="0 : 1000 : 0"
232 inkscape:vp_x="0 : 0.5 : 1"
233 sodipodi:type="inkscape:persp3d" />
234 <inkscape:perspective
235 id="perspective3894"
236 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
237 inkscape:vp_z="1 : 0.5 : 1"
238 inkscape:vp_y="0 : 1000 : 0"
239 inkscape:vp_x="0 : 0.5 : 1"
240 sodipodi:type="inkscape:persp3d" />
241 <inkscape:perspective
242 id="perspective3894-7"
243 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
244 inkscape:vp_z="1 : 0.5 : 1"
245 inkscape:vp_y="0 : 1000 : 0"
246 inkscape:vp_x="0 : 0.5 : 1"
247 sodipodi:type="inkscape:persp3d" />
248 <inkscape:perspective
249 id="perspective3935"
250 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
251 inkscape:vp_z="1 : 0.5 : 1"
252 inkscape:vp_y="0 : 1000 : 0"
253 inkscape:vp_x="0 : 0.5 : 1"
254 sodipodi:type="inkscape:persp3d" />
255 <inkscape:perspective
256 id="perspective3963"
257 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
258 inkscape:vp_z="1 : 0.5 : 1"
259 inkscape:vp_y="0 : 1000 : 0"
260 inkscape:vp_x="0 : 0.5 : 1"
261 sodipodi:type="inkscape:persp3d" />
262 <inkscape:perspective
263 id="perspective3995"
264 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
265 inkscape:vp_z="1 : 0.5 : 1"
266 inkscape:vp_y="0 : 1000 : 0"
267 inkscape:vp_x="0 : 0.5 : 1"
268 sodipodi:type="inkscape:persp3d" />
269 <inkscape:perspective
270 id="perspective4020"
271 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
272 inkscape:vp_z="1 : 0.5 : 1"
273 inkscape:vp_y="0 : 1000 : 0"
274 inkscape:vp_x="0 : 0.5 : 1"
275 sodipodi:type="inkscape:persp3d" />
276 <inkscape:perspective
277 id="perspective4045"
278 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
279 inkscape:vp_z="1 : 0.5 : 1"
280 inkscape:vp_y="0 : 1000 : 0"
281 inkscape:vp_x="0 : 0.5 : 1"
282 sodipodi:type="inkscape:persp3d" />
283 <inkscape:perspective
284 id="perspective4126"
285 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
286 inkscape:vp_z="1 : 0.5 : 1"
287 inkscape:vp_y="0 : 1000 : 0"
288 inkscape:vp_x="0 : 0.5 : 1"
289 sodipodi:type="inkscape:persp3d" />
290 <inkscape:perspective
291 id="perspective4126-4"
292 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
293 inkscape:vp_z="1 : 0.5 : 1"
294 inkscape:vp_y="0 : 1000 : 0"
295 inkscape:vp_x="0 : 0.5 : 1"
296 sodipodi:type="inkscape:persp3d" />
297 <inkscape:perspective
298 id="perspective4245"
299 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
300 inkscape:vp_z="1 : 0.5 : 1"
301 inkscape:vp_y="0 : 1000 : 0"
302 inkscape:vp_x="0 : 0.5 : 1"
303 sodipodi:type="inkscape:persp3d" />
304 <inkscape:perspective
305 id="perspective4245-8"
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="perspective4280"
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="perspective4280-6"
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="perspective4873"
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="perspective4873-5"
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="perspective4914"
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="perspective4914-3"
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 <inkscape:perspective
354 id="perspective4977"
355 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
356 inkscape:vp_z="1 : 0.5 : 1"
357 inkscape:vp_y="0 : 1000 : 0"
358 inkscape:vp_x="0 : 0.5 : 1"
359 sodipodi:type="inkscape:persp3d" />
360 <inkscape:perspective
361 id="perspective10625"
362 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
363 inkscape:vp_z="1 : 0.5 : 1"
364 inkscape:vp_y="0 : 1000 : 0"
365 inkscape:vp_x="0 : 0.5 : 1"
366 sodipodi:type="inkscape:persp3d" />
367 <marker
368 inkscape:stockid="Arrow2Lend"
369 orient="auto"
370 refY="0"
371 refX="0"
372 id="Arrow2Lend-1"
373 style="overflow:visible">
374 <path
375 id="path5073-6"
376 style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
377 d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
378 transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
379 </marker>
380 <inkscape:perspective
381 id="perspective10653"
382 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
383 inkscape:vp_z="1 : 0.5 : 1"
384 inkscape:vp_y="0 : 1000 : 0"
385 inkscape:vp_x="0 : 0.5 : 1"
386 sodipodi:type="inkscape:persp3d" />
387 <inkscape:perspective
388 id="perspective10729"
389 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
390 inkscape:vp_z="1 : 0.5 : 1"
391 inkscape:vp_y="0 : 1000 : 0"
392 inkscape:vp_x="0 : 0.5 : 1"
393 sodipodi:type="inkscape:persp3d" />
394 <linearGradient
395 y2="214.21933"
396 x2="171.66098"
397 y1="319.12198"
398 x1="171.66098"
399 gradientTransform="matrix(0.5946191,0,0,0.6857303,581.99821,199.9669)"
400 gradientUnits="userSpaceOnUse"
401 id="linearGradient4597"
402 xlink:href="#linearGradient3134"
403 inkscape:collect="always" />
404 <linearGradient
405 y2="214.21933"
406 x2="171.66098"
407 y1="319.12198"
408 x1="171.66098"
409 gradientTransform="matrix(0.5946191,0,0,0.6857303,425.42457,285.82987)"
410 gradientUnits="userSpaceOnUse"
411 id="linearGradient4480"
412 xlink:href="#linearGradient3134"
413 inkscape:collect="always" />
414 <linearGradient
415 y2="214.21933"
416 x2="171.66098"
417 y1="319.12198"
418 x1="171.66098"
419 gradientTransform="matrix(0.5946191,0,0,0.6857303,347.64282,285.82987)"
420 gradientUnits="userSpaceOnUse"
421 id="linearGradient4472"
422 xlink:href="#linearGradient3134"
423 inkscape:collect="always" />
424 <linearGradient
425 y2="214.21933"
426 x2="171.66098"
427 y1="319.12198"
428 x1="171.66098"
429 gradientTransform="matrix(0.5946191,0,0,0.6857303,265.82046,285.82987)"
430 gradientUnits="userSpaceOnUse"
431 id="linearGradient4464"
432 xlink:href="#linearGradient3134"
433 inkscape:collect="always" />
434 <linearGradient
435 y2="214.21933"
436 x2="171.66098"
437 y1="319.12198"
438 x1="171.66098"
439 gradientTransform="matrix(0.5946191,0,0,0.6857303,179.95749,285.82987)"
440 gradientUnits="userSpaceOnUse"
441 id="linearGradient4456"
442 xlink:href="#linearGradient3134"
443 inkscape:collect="always" />
444 <linearGradient
445 y2="214.21933"
446 x2="171.66098"
447 y1="319.12198"
448 x1="171.66098"
449 gradientTransform="matrix(0.5946191,0,0,0.6857303,101.16559,285.82987)"
450 gradientUnits="userSpaceOnUse"
451 id="linearGradient4448"
452 xlink:href="#linearGradient3134"
453 inkscape:collect="always" />
454 <linearGradient
455 y2="214.21933"
456 x2="171.66098"
457 y1="319.12198"
458 x1="171.66098"
459 gradientTransform="matrix(0.5946191,0,0,0.6857303,23.383846,285.82987)"
460 gradientUnits="userSpaceOnUse"
461 id="linearGradient4440"
462 xlink:href="#linearGradient3134"
463 inkscape:collect="always" />
464 <linearGradient
465 y2="214.21933"
466 x2="171.66098"
467 y1="319.12198"
468 x1="171.66098"
469 gradientTransform="matrix(0.5946191,0,0,0.6857303,-55.408053,199.9669)"
470 gradientUnits="userSpaceOnUse"
471 id="linearGradient4427"
472 xlink:href="#linearGradient3134"
473 inkscape:collect="always" />
474 <linearGradient
475 y2="214.21933"
476 x2="171.66098"
477 y1="319.12198"
478 x1="171.66098"
479 gradientTransform="matrix(0.5946191,0,0,0.6857303,661.80026,199.9669)"
480 gradientUnits="userSpaceOnUse"
481 id="linearGradient4356"
482 xlink:href="#linearGradient3134"
483 inkscape:collect="always" />
484 <linearGradient
485 y2="214.21933"
486 x2="171.66098"
487 y1="319.12198"
488 x1="171.66098"
489 gradientTransform="matrix(0.5946191,0,0,0.6857303,581.99821,199.9669)"
490 gradientUnits="userSpaceOnUse"
491 id="linearGradient4348"
492 xlink:href="#linearGradient3134"
493 inkscape:collect="always" />
494 <linearGradient
495 y2="214.21933"
496 x2="171.66098"
497 y1="319.12198"
498 x1="171.66098"
499 gradientTransform="matrix(0.5946191,0,0,0.6857303,499.1657,199.9669)"
500 gradientUnits="userSpaceOnUse"
501 id="linearGradient4340"
502 xlink:href="#linearGradient3134"
503 inkscape:collect="always" />
504 <linearGradient
505 y2="214.21933"
506 x2="171.66098"
507 y1="319.12198"
508 x1="171.66098"
509 gradientTransform="matrix(0.5946191,0,0,0.6857303,421.38395,199.9669)"
510 gradientUnits="userSpaceOnUse"
511 id="linearGradient4332"
512 xlink:href="#linearGradient3134"
513 inkscape:collect="always" />
514 <linearGradient
515 y2="214.21933"
516 x2="171.66098"
517 y1="319.12198"
518 x1="171.66098"
519 gradientTransform="matrix(0.5946191,0,0,0.6857303,338.55144,199.9669)"
520 gradientUnits="userSpaceOnUse"
521 id="linearGradient4324"
522 xlink:href="#linearGradient3134"
523 inkscape:collect="always" />
524 <linearGradient
525 y2="214.21933"
526 x2="171.66098"
527 y1="319.12198"
528 x1="171.66098"
529 gradientTransform="matrix(0.5946191,0,0,0.6857303,261.77985,199.9669)"
530 gradientUnits="userSpaceOnUse"
531 id="linearGradient4316"
532 xlink:href="#linearGradient3134"
533 inkscape:collect="always" />
534 <linearGradient
535 y2="214.21933"
536 x2="171.66098"
537 y1="319.12198"
538 x1="171.66098"
539 gradientTransform="matrix(0.5946191,0,0,0.6857303,183.9981,199.9669)"
540 gradientUnits="userSpaceOnUse"
541 id="linearGradient4308"
542 xlink:href="#linearGradient3134"
543 inkscape:collect="always" />
544 <linearGradient
545 y2="214.21933"
546 x2="171.66098"
547 y1="319.12198"
548 x1="171.66098"
549 gradientTransform="matrix(0.5946191,0,0,0.6857303,102.17574,199.9669)"
550 gradientUnits="userSpaceOnUse"
551 id="linearGradient4300"
552 xlink:href="#linearGradient3134"
553 inkscape:collect="always" />
554 <linearGradient
555 y2="214.21933"
556 x2="171.66098"
557 y1="319.12198"
558 x1="171.66098"
559 gradientTransform="matrix(0.5946191,0,0,0.6857303,23.383846,199.9669)"
560 gradientUnits="userSpaceOnUse"
561 id="linearGradient4292"
562 xlink:href="#linearGradient3134"
563 inkscape:collect="always" />
564 <linearGradient
565 id="linearGradient3134">
566 <stop
567 id="stop3136"
568 offset="0"
569 style="stop-color:#f6f6f6;stop-opacity:1;" />
570 <stop
571 id="stop3138"
572 offset="1"
573 style="stop-color:#b7b7b7;stop-opacity:1;" />
574 </linearGradient>
575 <linearGradient
576 id="linearGradient5756">
577 <stop
578 style="stop-color:#dadada;stop-opacity:1;"
579 offset="0"
580 id="stop5758" />
581 <stop
582 style="stop-color:#b7b7b7;stop-opacity:1;"
583 offset="1"
584 id="stop5760" />
585 </linearGradient>
586 <inkscape:perspective
587 id="perspective11303"
588 inkscape:persp3d-origin="526.18109 : 248.03149 : 1"
589 inkscape:vp_z="1052.3622 : 372.04724 : 1"
590 inkscape:vp_y="0 : 1000 : 0"
591 inkscape:vp_x="0 : 372.04724 : 1"
592 sodipodi:type="inkscape:persp3d" />
593 <inkscape:perspective
594 id="perspective11733"
595 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
596 inkscape:vp_z="1 : 0.5 : 1"
597 inkscape:vp_y="0 : 1000 : 0"
598 inkscape:vp_x="0 : 0.5 : 1"
599 sodipodi:type="inkscape:persp3d" />
600 <marker
601 inkscape:stockid="Arrow2Lend"
602 orient="auto"
603 refY="0"
604 refX="0"
605 id="Arrow2Lend-0"
606 style="overflow:visible">
607 <path
608 id="path5073-3"
609 style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
610 d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
611 transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
612 </marker>
613 <inkscape:perspective
614 id="perspective12001"
615 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
616 inkscape:vp_z="1 : 0.5 : 1"
617 inkscape:vp_y="0 : 1000 : 0"
618 inkscape:vp_x="0 : 0.5 : 1"
619 sodipodi:type="inkscape:persp3d" />
620 <inkscape:perspective
621 id="perspective12023"
622 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
623 inkscape:vp_z="1 : 0.5 : 1"
624 inkscape:vp_y="0 : 1000 : 0"
625 inkscape:vp_x="0 : 0.5 : 1"
626 sodipodi:type="inkscape:persp3d" />
627 <inkscape:perspective
628 id="perspective12023-2"
629 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
630 inkscape:vp_z="1 : 0.5 : 1"
631 inkscape:vp_y="0 : 1000 : 0"
632 inkscape:vp_x="0 : 0.5 : 1"
633 sodipodi:type="inkscape:persp3d" />
634 <inkscape:perspective
635 id="perspective12059"
636 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
637 inkscape:vp_z="1 : 0.5 : 1"
638 inkscape:vp_y="0 : 1000 : 0"
639 inkscape:vp_x="0 : 0.5 : 1"
640 sodipodi:type="inkscape:persp3d" />
641 <inkscape:perspective
642 id="perspective12059-1"
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 <inkscape:perspective
649 id="perspective6789"
650 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
651 inkscape:vp_z="1 : 0.5 : 1"
652 inkscape:vp_y="0 : 1000 : 0"
653 inkscape:vp_x="0 : 0.5 : 1"
654 sodipodi:type="inkscape:persp3d" />
655 <marker
656 inkscape:stockid="Arrow2Lend"
657 orient="auto"
658 refY="0"
659 refX="0"
660 id="Arrow2Lend-4"
661 style="overflow:visible">
662 <path
663 id="path5073-1"
664 style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
665 d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
666 transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
667 </marker>
668 <inkscape:perspective
669 id="perspective6789-0"
670 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
671 inkscape:vp_z="1 : 0.5 : 1"
672 inkscape:vp_y="0 : 1000 : 0"
673 inkscape:vp_x="0 : 0.5 : 1"
674 sodipodi:type="inkscape:persp3d" />
675 <marker
676 inkscape:stockid="Arrow2Lend"
677 orient="auto"
678 refY="0"
679 refX="0"
680 id="Arrow2Lend-8"
681 style="overflow:visible">
682 <path
683 id="path5073-61"
684 style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
685 d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
686 transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
687 </marker>
688 <inkscape:perspective
689 id="perspective6789-2"
690 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
691 inkscape:vp_z="1 : 0.5 : 1"
692 inkscape:vp_y="0 : 1000 : 0"
693 inkscape:vp_x="0 : 0.5 : 1"
694 sodipodi:type="inkscape:persp3d" />
695 <marker
696 inkscape:stockid="Arrow2Lend"
697 orient="auto"
698 refY="0"
699 refX="0"
700 id="Arrow2Lend-06"
701 style="overflow:visible">
702 <path
703 id="path5073-5"
704 style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
705 d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
706 transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
707 </marker>
708 <inkscape:perspective
709 id="perspective7707"
710 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
711 inkscape:vp_z="1 : 0.5 : 1"
712 inkscape:vp_y="0 : 1000 : 0"
713 inkscape:vp_x="0 : 0.5 : 1"
714 sodipodi:type="inkscape:persp3d" />
715 <marker
716 inkscape:stockid="Arrow1Send"
717 orient="auto"
718 refY="0"
719 refX="0"
720 id="Arrow1Send-8"
721 style="overflow:visible">
722 <path
723 id="path5065-3"
724 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
725 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
726 transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
727 </marker>
728 <inkscape:perspective
729 id="perspective7707-1"
730 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
731 inkscape:vp_z="1 : 0.5 : 1"
732 inkscape:vp_y="0 : 1000 : 0"
733 inkscape:vp_x="0 : 0.5 : 1"
734 sodipodi:type="inkscape:persp3d" />
735 <marker
736 inkscape:stockid="Arrow1Send"
737 orient="auto"
738 refY="0"
739 refX="0"
740 id="Arrow1Send-6"
741 style="overflow:visible">
742 <path
743 id="path5065-8"
744 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
745 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
746 transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
747 </marker>
748 <inkscape:perspective
749 id="perspective7707-19"
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 <marker
756 inkscape:stockid="Arrow1Send"
757 orient="auto"
758 refY="0"
759 refX="0"
760 id="Arrow1Send-9"
761 style="overflow:visible">
762 <path
763 id="path5065-39"
764 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
765 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
766 transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
767 </marker>
768 <linearGradient
769 inkscape:collect="always"
770 xlink:href="#linearGradient3134"
771 id="linearGradient6263"
772 gradientUnits="userSpaceOnUse"
773 gradientTransform="matrix(0.5946191,0,0,0.6857303,-55.408053,114.10393)"
774 x1="171.66098"
775 y1="319.12198"
776 x2="171.66098"
777 y2="214.21933" />
778 <linearGradient
779 inkscape:collect="always"
780 xlink:href="#linearGradient3134"
781 id="linearGradient6265"
782 gradientUnits="userSpaceOnUse"
783 gradientTransform="matrix(0.5946191,0,0,0.6857303,23.383845,114.10393)"
784 x1="171.66098"
785 y1="319.12198"
786 x2="171.66098"
787 y2="214.21933" />
788 <linearGradient
789 inkscape:collect="always"
790 xlink:href="#linearGradient3134"
791 id="linearGradient6267"
792 gradientUnits="userSpaceOnUse"
793 gradientTransform="matrix(0.5946191,0,0,0.6857303,102.17574,114.10393)"
794 x1="171.66098"
795 y1="319.12198"
796 x2="171.66098"
797 y2="214.21933" />
798 <linearGradient
799 inkscape:collect="always"
800 xlink:href="#linearGradient3134"
801 id="linearGradient6269"
802 gradientUnits="userSpaceOnUse"
803 gradientTransform="matrix(0.5946191,0,0,0.6857303,181.97779,114.10393)"
804 x1="171.66098"
805 y1="319.12198"
806 x2="171.66098"
807 y2="214.21933" />
808 <linearGradient
809 inkscape:collect="always"
810 xlink:href="#linearGradient3134"
811 id="linearGradient6271"
812 gradientUnits="userSpaceOnUse"
813 gradientTransform="matrix(0.5946191,0,0,0.6857303,257.73923,114.10393)"
814 x1="171.66098"
815 y1="319.12198"
816 x2="171.66098"
817 y2="214.21933" />
818 <linearGradient
819 inkscape:collect="always"
820 xlink:href="#linearGradient3134"
821 id="linearGradient6273"
822 gradientUnits="userSpaceOnUse"
823 gradientTransform="matrix(0.5946191,0,0,0.6857303,339.56159,114.10393)"
824 x1="171.66098"
825 y1="319.12198"
826 x2="171.66098"
827 y2="214.21933" />
828 <linearGradient
829 inkscape:collect="always"
830 xlink:href="#linearGradient3134"
831 id="linearGradient6275"
832 gradientUnits="userSpaceOnUse"
833 gradientTransform="matrix(0.5946191,0,0,0.6857303,419.36364,114.10393)"
834 x1="171.66098"
835 y1="319.12198"
836 x2="171.66098"
837 y2="214.21933" />
838 <linearGradient
839 inkscape:collect="always"
840 xlink:href="#linearGradient3134"
841 id="linearGradient6277"
842 gradientUnits="userSpaceOnUse"
843 gradientTransform="matrix(0.5946191,0,0,0.6857303,498.15554,114.10393)"
844 x1="171.66098"
845 y1="319.12198"
846 x2="171.66098"
847 y2="214.21933" />
848 <linearGradient
849 inkscape:collect="always"
850 xlink:href="#linearGradient3134"
851 id="linearGradient6279"
852 gradientUnits="userSpaceOnUse"
853 gradientTransform="matrix(0.5946191,0,0,0.6857303,576.94744,114.10393)"
854 x1="171.66098"
855 y1="319.12198"
856 x2="171.66098"
857 y2="214.21933" />
858 <linearGradient
859 inkscape:collect="always"
860 xlink:href="#linearGradient3134"
861 id="linearGradient6281"
862 gradientUnits="userSpaceOnUse"
863 gradientTransform="matrix(0.5946191,0,0,0.6857303,652.70888,114.10393)"
864 x1="171.66098"
865 y1="319.12198"
866 x2="171.66098"
867 y2="214.21933" />
868 <linearGradient
869 inkscape:collect="always"
870 xlink:href="#linearGradient3134"
871 id="linearGradient6283"
872 gradientUnits="userSpaceOnUse"
873 gradientTransform="matrix(0.5946191,0,0,0.6857303,-55.408053,199.9669)"
874 x1="171.66098"
875 y1="319.12198"
876 x2="171.66098"
877 y2="214.21933" />
878 <linearGradient
879 inkscape:collect="always"
880 xlink:href="#linearGradient3134"
881 id="linearGradient6285"
882 gradientUnits="userSpaceOnUse"
883 gradientTransform="matrix(0.5946191,0,0,0.6857303,23.383846,199.9669)"
884 x1="171.66098"
885 y1="319.12198"
886 x2="171.66098"
887 y2="214.21933" />
888 <linearGradient
889 inkscape:collect="always"
890 xlink:href="#linearGradient3134"
891 id="linearGradient6287"
892 gradientUnits="userSpaceOnUse"
893 gradientTransform="matrix(0.5946191,0,0,0.6857303,102.17574,199.9669)"
894 x1="171.66098"
895 y1="319.12198"
896 x2="171.66098"
897 y2="214.21933" />
898 <linearGradient
899 inkscape:collect="always"
900 xlink:href="#linearGradient3134"
901 id="linearGradient6289"
902 gradientUnits="userSpaceOnUse"
903 gradientTransform="matrix(0.5946191,0,0,0.6857303,183.9981,199.9669)"
904 x1="171.66098"
905 y1="319.12198"
906 x2="171.66098"
907 y2="214.21933" />
908 <linearGradient
909 inkscape:collect="always"
910 xlink:href="#linearGradient3134"
911 id="linearGradient6291"
912 gradientUnits="userSpaceOnUse"
913 gradientTransform="matrix(0.5946191,0,0,0.6857303,261.77985,199.9669)"
914 x1="171.66098"
915 y1="319.12198"
916 x2="171.66098"
917 y2="214.21933" />
918 <linearGradient
919 inkscape:collect="always"
920 xlink:href="#linearGradient3134"
921 id="linearGradient6293"
922 gradientUnits="userSpaceOnUse"
923 gradientTransform="matrix(0.5946191,0,0,0.6857303,338.55144,199.9669)"
924 x1="171.66098"
925 y1="319.12198"
926 x2="171.66098"
927 y2="214.21933" />
928 <linearGradient
929 inkscape:collect="always"
930 xlink:href="#linearGradient3134"
931 id="linearGradient6295"
932 gradientUnits="userSpaceOnUse"
933 gradientTransform="matrix(0.5946191,0,0,0.6857303,421.38395,199.9669)"
934 x1="171.66098"
935 y1="319.12198"
936 x2="171.66098"
937 y2="214.21933" />
938 <linearGradient
939 inkscape:collect="always"
940 xlink:href="#linearGradient3134"
941 id="linearGradient6297"
942 gradientUnits="userSpaceOnUse"
943 gradientTransform="matrix(0.5946191,0,0,0.6857303,499.1657,199.9669)"
944 x1="171.66098"
945 y1="319.12198"
946 x2="171.66098"
947 y2="214.21933" />
948 <linearGradient
949 inkscape:collect="always"
950 xlink:href="#linearGradient3134"
951 id="linearGradient6299"
952 gradientUnits="userSpaceOnUse"
953 gradientTransform="matrix(0.5946191,0,0,0.6857303,581.99821,199.9669)"
954 x1="171.66098"
955 y1="319.12198"
956 x2="171.66098"
957 y2="214.21933" />
958 <linearGradient
959 inkscape:collect="always"
960 xlink:href="#linearGradient3134"
961 id="linearGradient6301"
962 gradientUnits="userSpaceOnUse"
963 gradientTransform="matrix(0.5946191,0,0,0.6857303,-55.408053,285.82987)"
964 x1="171.66098"
965 y1="319.12198"
966 x2="171.66098"
967 y2="214.21933" />
968 <linearGradient
969 inkscape:collect="always"
970 xlink:href="#linearGradient3134"
971 id="linearGradient6303"
972 gradientUnits="userSpaceOnUse"
973 gradientTransform="matrix(0.5946191,0,0,0.6857303,23.383846,285.82987)"
974 x1="171.66098"
975 y1="319.12198"
976 x2="171.66098"
977 y2="214.21933" />
978 <linearGradient
979 inkscape:collect="always"
980 xlink:href="#linearGradient3134"
981 id="linearGradient6305"
982 gradientUnits="userSpaceOnUse"
983 gradientTransform="matrix(0.5946191,0,0,0.6857303,101.16559,285.82987)"
984 x1="171.66098"
985 y1="319.12198"
986 x2="171.66098"
987 y2="214.21933" />
988 <linearGradient
989 inkscape:collect="always"
990 xlink:href="#linearGradient3134"
991 id="linearGradient6307"
992 gradientUnits="userSpaceOnUse"
993 gradientTransform="matrix(0.5946191,0,0,0.6857303,179.95749,285.82987)"
994 x1="171.66098"
995 y1="319.12198"
996 x2="171.66098"
997 y2="214.21933" />
998 <linearGradient
999 inkscape:collect="always"
1000 xlink:href="#linearGradient3134"
1001 id="linearGradient6309"
1002 gradientUnits="userSpaceOnUse"
1003 gradientTransform="matrix(0.5946191,0,0,0.6857303,265.82046,285.82987)"
1004 x1="171.66098"
1005 y1="319.12198"
1006 x2="171.66098"
1007 y2="214.21933" />
1008 <linearGradient
1009 inkscape:collect="always"
1010 xlink:href="#linearGradient3134"
1011 id="linearGradient6311"
1012 gradientUnits="userSpaceOnUse"
1013 gradientTransform="matrix(0.5946191,0,0,0.6857303,347.64282,285.82987)"
1014 x1="171.66098"
1015 y1="319.12198"
1016 x2="171.66098"
1017 y2="214.21933" />
1018 <linearGradient
1019 inkscape:collect="always"
1020 xlink:href="#linearGradient3134"
1021 id="linearGradient6313"
1022 gradientUnits="userSpaceOnUse"
1023 gradientTransform="matrix(0.5946191,0,0,0.6857303,417.34334,285.82987)"
1024 x1="171.66098"
1025 y1="319.12198"
1026 x2="171.66098"
1027 y2="214.21933" />
1028 <linearGradient
1029 inkscape:collect="always"
1030 xlink:href="#linearGradient3134"
1031 id="linearGradient6317"
1032 gradientUnits="userSpaceOnUse"
1033 gradientTransform="matrix(0.5946191,0,0,0.6857303,-55.408053,29.818216)"
1034 x1="171.66098"
1035 y1="319.12198"
1036 x2="171.66098"
1037 y2="214.21933" />
1038 <linearGradient
1039 inkscape:collect="always"
1040 xlink:href="#linearGradient3134"
1041 id="linearGradient6319"
1042 gradientUnits="userSpaceOnUse"
1043 gradientTransform="matrix(0.5946191,0,0,0.6857303,21.734804,29.818216)"
1044 x1="171.66098"
1045 y1="319.12198"
1046 x2="171.66098"
1047 y2="214.21933" />
1048 <linearGradient
1049 inkscape:collect="always"
1050 xlink:href="#linearGradient3134"
1051 id="linearGradient6321"
1052 gradientUnits="userSpaceOnUse"
1053 gradientTransform="matrix(0.5946191,0,0,0.6857303,103.16338,29.818216)"
1054 x1="171.66098"
1055 y1="319.12198"
1056 x2="171.66098"
1057 y2="214.21933" />
1058 <linearGradient
1059 inkscape:collect="always"
1060 xlink:href="#linearGradient3134"
1061 id="linearGradient6323"
1062 gradientUnits="userSpaceOnUse"
1063 gradientTransform="matrix(0.5946191,0,0,0.6857303,178.87767,29.818216)"
1064 x1="171.66098"
1065 y1="319.12198"
1066 x2="171.66098"
1067 y2="214.21933" />
1068 <linearGradient
1069 inkscape:collect="always"
1070 xlink:href="#linearGradient3134"
1071 id="linearGradient6325"
1072 gradientUnits="userSpaceOnUse"
1073 gradientTransform="matrix(0.5946191,0,0,0.6857303,256.02053,29.818216)"
1074 x1="171.66098"
1075 y1="319.12198"
1076 x2="171.66098"
1077 y2="214.21933" />
1078 <linearGradient
1079 inkscape:collect="always"
1080 xlink:href="#linearGradient3134"
1081 id="linearGradient6327"
1082 gradientUnits="userSpaceOnUse"
1083 gradientTransform="matrix(0.5946191,0,0,0.6857303,333.93443,29.818216)"
1084 x1="171.66098"
1085 y1="319.12198"
1086 x2="171.66098"
1087 y2="214.21933" />
1088 <linearGradient
1089 inkscape:collect="always"
1090 xlink:href="#linearGradient3134"
1091 id="linearGradient6329"
1092 gradientUnits="userSpaceOnUse"
1093 gradientTransform="matrix(0.5946191,0,0,0.6857303,416.02053,29.818216)"
1094 x1="171.66098"
1095 y1="319.12198"
1096 x2="171.66098"
1097 y2="214.21933" />
1098 <linearGradient
1099 inkscape:collect="always"
1100 xlink:href="#linearGradient3134"
1101 id="linearGradient6331"
1102 gradientUnits="userSpaceOnUse"
1103 gradientTransform="matrix(0.5946191,0,0,0.6857303,496.02053,29.818216)"
1104 x1="171.66098"
1105 y1="319.12198"
1106 x2="171.66098"
1107 y2="214.21933" />
1108 <linearGradient
1109 inkscape:collect="always"
1110 xlink:href="#linearGradient3134"
1111 id="linearGradient6333"
1112 gradientUnits="userSpaceOnUse"
1113 gradientTransform="matrix(0.5946191,0,0,0.6857303,577.4491,29.818216)"
1114 x1="171.66098"
1115 y1="319.12198"
1116 x2="171.66098"
1117 y2="214.21933" />
1118 <linearGradient
1119 inkscape:collect="always"
1120 xlink:href="#linearGradient3134"
1121 id="linearGradient6335"
1122 gradientUnits="userSpaceOnUse"
1123 gradientTransform="matrix(0.5946191,0,0,0.6857303,660.30624,29.818216)"
1124 x1="171.66098"
1125 y1="319.12198"
1126 x2="171.66098"
1127 y2="214.21933" />
1128 <linearGradient
1129 inkscape:collect="always"
1130 xlink:href="#linearGradient3134"
1131 id="linearGradient6337"
1132 gradientUnits="userSpaceOnUse"
1133 gradientTransform="matrix(1.9559964,0,0,0.6857303,343.53616,285.68268)"
1134 x1="171.66098"
1135 y1="319.12198"
1136 x2="171.66098"
1137 y2="214.21933" />
1138 <inkscape:perspective
1139 id="perspective3219"
1140 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1141 inkscape:vp_z="1 : 0.5 : 1"
1142 inkscape:vp_y="0 : 1000 : 0"
1143 inkscape:vp_x="0 : 0.5 : 1"
1144 sodipodi:type="inkscape:persp3d" />
1145 <linearGradient
1146 id="linearGradient5756-2">
1147 <stop
1148 style="stop-color:#dadada;stop-opacity:1;"
1149 offset="0"
1150 id="stop5758-4" />
1151 <stop
1152 style="stop-color:#b7b7b7;stop-opacity:1;"
1153 offset="1"
1154 id="stop5760-7" />
1155 </linearGradient>
1156 <linearGradient
1157 id="linearGradient3134-3">
1158 <stop
1159 id="stop3136-9"
1160 offset="0"
1161 style="stop-color:#f6f6f6;stop-opacity:1;" />
1162 <stop
1163 id="stop3138-2"
1164 offset="1"
1165 style="stop-color:#b7b7b7;stop-opacity:1;" />
1166 </linearGradient>
1167 <linearGradient
1168 id="linearGradient3232">
1169 <stop
1170 id="stop3234"
1171 offset="0"
1172 style="stop-color:#f6f6f6;stop-opacity:1;" />
1173 <stop
1174 id="stop3236"
1175 offset="1"
1176 style="stop-color:#b7b7b7;stop-opacity:1;" />
1177 </linearGradient>
1178 <linearGradient
1179 id="linearGradient3239">
1180 <stop
1181 id="stop3241"
1182 offset="0"
1183 style="stop-color:#f6f6f6;stop-opacity:1;" />
1184 <stop
1185 id="stop3243"
1186 offset="1"
1187 style="stop-color:#b7b7b7;stop-opacity:1;" />
1188 </linearGradient>
1189 <linearGradient
1190 id="linearGradient3246">
1191 <stop
1192 id="stop3248"
1193 offset="0"
1194 style="stop-color:#f6f6f6;stop-opacity:1;" />
1195 <stop
1196 id="stop3250"
1197 offset="1"
1198 style="stop-color:#b7b7b7;stop-opacity:1;" />
1199 </linearGradient>
1200 <linearGradient
1201 id="linearGradient3253">
1202 <stop
1203 id="stop3255"
1204 offset="0"
1205 style="stop-color:#f6f6f6;stop-opacity:1;" />
1206 <stop
1207 id="stop3257"
1208 offset="1"
1209 style="stop-color:#b7b7b7;stop-opacity:1;" />
1210 </linearGradient>
1211 <linearGradient
1212 id="linearGradient3260">
1213 <stop
1214 id="stop3262"
1215 offset="0"
1216 style="stop-color:#f6f6f6;stop-opacity:1;" />
1217 <stop
1218 id="stop3264"
1219 offset="1"
1220 style="stop-color:#b7b7b7;stop-opacity:1;" />
1221 </linearGradient>
1222 <linearGradient
1223 id="linearGradient3267">
1224 <stop
1225 id="stop3269"
1226 offset="0"
1227 style="stop-color:#f6f6f6;stop-opacity:1;" />
1228 <stop
1229 id="stop3271"
1230 offset="1"
1231 style="stop-color:#b7b7b7;stop-opacity:1;" />
1232 </linearGradient>
1233 <linearGradient
1234 id="linearGradient3274">
1235 <stop
1236 id="stop3276"
1237 offset="0"
1238 style="stop-color:#f6f6f6;stop-opacity:1;" />
1239 <stop
1240 id="stop3278"
1241 offset="1"
1242 style="stop-color:#b7b7b7;stop-opacity:1;" />
1243 </linearGradient>
1244 <linearGradient
1245 id="linearGradient3281">
1246 <stop
1247 id="stop3283"
1248 offset="0"
1249 style="stop-color:#f6f6f6;stop-opacity:1;" />
1250 <stop
1251 id="stop3285"
1252 offset="1"
1253 style="stop-color:#b7b7b7;stop-opacity:1;" />
1254 </linearGradient>
1255 <linearGradient
1256 id="linearGradient3288">
1257 <stop
1258 id="stop3290"
1259 offset="0"
1260 style="stop-color:#f6f6f6;stop-opacity:1;" />
1261 <stop
1262 id="stop3292"
1263 offset="1"
1264 style="stop-color:#b7b7b7;stop-opacity:1;" />
1265 </linearGradient>
1266 <linearGradient
1267 id="linearGradient3295">
1268 <stop
1269 id="stop3297"
1270 offset="0"
1271 style="stop-color:#f6f6f6;stop-opacity:1;" />
1272 <stop
1273 id="stop3299"
1274 offset="1"
1275 style="stop-color:#b7b7b7;stop-opacity:1;" />
1276 </linearGradient>
1277 <linearGradient
1278 id="linearGradient3302">
1279 <stop
1280 id="stop3304"
1281 offset="0"
1282 style="stop-color:#f6f6f6;stop-opacity:1;" />
1283 <stop
1284 id="stop3306"
1285 offset="1"
1286 style="stop-color:#b7b7b7;stop-opacity:1;" />
1287 </linearGradient>
1288 <linearGradient
1289 id="linearGradient3309">
1290 <stop
1291 id="stop3311"
1292 offset="0"
1293 style="stop-color:#f6f6f6;stop-opacity:1;" />
1294 <stop
1295 id="stop3313"
1296 offset="1"
1297 style="stop-color:#b7b7b7;stop-opacity:1;" />
1298 </linearGradient>
1299 <linearGradient
1300 id="linearGradient3316">
1301 <stop
1302 id="stop3318"
1303 offset="0"
1304 style="stop-color:#f6f6f6;stop-opacity:1;" />
1305 <stop
1306 id="stop3320"
1307 offset="1"
1308 style="stop-color:#b7b7b7;stop-opacity:1;" />
1309 </linearGradient>
1310 <linearGradient
1311 id="linearGradient3323">
1312 <stop
1313 id="stop3325"
1314 offset="0"
1315 style="stop-color:#f6f6f6;stop-opacity:1;" />
1316 <stop
1317 id="stop3327"
1318 offset="1"
1319 style="stop-color:#b7b7b7;stop-opacity:1;" />
1320 </linearGradient>
1321 <linearGradient
1322 id="linearGradient3330">
1323 <stop
1324 id="stop3332"
1325 offset="0"
1326 style="stop-color:#f6f6f6;stop-opacity:1;" />
1327 <stop
1328 id="stop3334"
1329 offset="1"
1330 style="stop-color:#b7b7b7;stop-opacity:1;" />
1331 </linearGradient>
1332 <linearGradient
1333 id="linearGradient3337">
1334 <stop
1335 id="stop3339"
1336 offset="0"
1337 style="stop-color:#f6f6f6;stop-opacity:1;" />
1338 <stop
1339 id="stop3341"
1340 offset="1"
1341 style="stop-color:#b7b7b7;stop-opacity:1;" />
1342 </linearGradient>
1343 <linearGradient
1344 id="linearGradient3344">
1345 <stop
1346 id="stop3346"
1347 offset="0"
1348 style="stop-color:#f6f6f6;stop-opacity:1;" />
1349 <stop
1350 id="stop3348"
1351 offset="1"
1352 style="stop-color:#b7b7b7;stop-opacity:1;" />
1353 </linearGradient>
1354 <linearGradient
1355 id="linearGradient3351">
1356 <stop
1357 id="stop3353"
1358 offset="0"
1359 style="stop-color:#f6f6f6;stop-opacity:1;" />
1360 <stop
1361 id="stop3355"
1362 offset="1"
1363 style="stop-color:#b7b7b7;stop-opacity:1;" />
1364 </linearGradient>
1365 <linearGradient
1366 id="linearGradient3358">
1367 <stop
1368 id="stop3360"
1369 offset="0"
1370 style="stop-color:#f6f6f6;stop-opacity:1;" />
1371 <stop
1372 id="stop3362"
1373 offset="1"
1374 style="stop-color:#b7b7b7;stop-opacity:1;" />
1375 </linearGradient>
1376 <linearGradient
1377 id="linearGradient3365">
1378 <stop
1379 id="stop3367"
1380 offset="0"
1381 style="stop-color:#f6f6f6;stop-opacity:1;" />
1382 <stop
1383 id="stop3369"
1384 offset="1"
1385 style="stop-color:#b7b7b7;stop-opacity:1;" />
1386 </linearGradient>
1387 <linearGradient
1388 id="linearGradient3372">
1389 <stop
1390 id="stop3374"
1391 offset="0"
1392 style="stop-color:#f6f6f6;stop-opacity:1;" />
1393 <stop
1394 id="stop3376"
1395 offset="1"
1396 style="stop-color:#b7b7b7;stop-opacity:1;" />
1397 </linearGradient>
1398 <linearGradient
1399 id="linearGradient3379">
1400 <stop
1401 id="stop3381"
1402 offset="0"
1403 style="stop-color:#f6f6f6;stop-opacity:1;" />
1404 <stop
1405 id="stop3383"
1406 offset="1"
1407 style="stop-color:#b7b7b7;stop-opacity:1;" />
1408 </linearGradient>
1409 <linearGradient
1410 id="linearGradient3386">
1411 <stop
1412 id="stop3388"
1413 offset="0"
1414 style="stop-color:#f6f6f6;stop-opacity:1;" />
1415 <stop
1416 id="stop3390"
1417 offset="1"
1418 style="stop-color:#b7b7b7;stop-opacity:1;" />
1419 </linearGradient>
1420 <linearGradient
1421 id="linearGradient3393">
1422 <stop
1423 id="stop3395"
1424 offset="0"
1425 style="stop-color:#f6f6f6;stop-opacity:1;" />
1426 <stop
1427 id="stop3397"
1428 offset="1"
1429 style="stop-color:#b7b7b7;stop-opacity:1;" />
1430 </linearGradient>
1431 <linearGradient
1432 id="linearGradient3400">
1433 <stop
1434 id="stop3402"
1435 offset="0"
1436 style="stop-color:#f6f6f6;stop-opacity:1;" />
1437 <stop
1438 id="stop3404"
1439 offset="1"
1440 style="stop-color:#b7b7b7;stop-opacity:1;" />
1441 </linearGradient>
1442 <linearGradient
1443 id="linearGradient3407">
1444 <stop
1445 id="stop3409"
1446 offset="0"
1447 style="stop-color:#f6f6f6;stop-opacity:1;" />
1448 <stop
1449 id="stop3411"
1450 offset="1"
1451 style="stop-color:#b7b7b7;stop-opacity:1;" />
1452 </linearGradient>
1453 <linearGradient
1454 id="linearGradient3414">
1455 <stop
1456 id="stop3416"
1457 offset="0"
1458 style="stop-color:#f6f6f6;stop-opacity:1;" />
1459 <stop
1460 id="stop3418"
1461 offset="1"
1462 style="stop-color:#b7b7b7;stop-opacity:1;" />
1463 </linearGradient>
1464 <linearGradient
1465 id="linearGradient3421">
1466 <stop
1467 id="stop3423"
1468 offset="0"
1469 style="stop-color:#f6f6f6;stop-opacity:1;" />
1470 <stop
1471 id="stop3425"
1472 offset="1"
1473 style="stop-color:#b7b7b7;stop-opacity:1;" />
1474 </linearGradient>
1475 <linearGradient
1476 id="linearGradient3428">
1477 <stop
1478 id="stop3430"
1479 offset="0"
1480 style="stop-color:#f6f6f6;stop-opacity:1;" />
1481 <stop
1482 id="stop3432"
1483 offset="1"
1484 style="stop-color:#b7b7b7;stop-opacity:1;" />
1485 </linearGradient>
1486 <linearGradient
1487 id="linearGradient3435">
1488 <stop
1489 id="stop3437"
1490 offset="0"
1491 style="stop-color:#f6f6f6;stop-opacity:1;" />
1492 <stop
1493 id="stop3439"
1494 offset="1"
1495 style="stop-color:#b7b7b7;stop-opacity:1;" />
1496 </linearGradient>
1497 <linearGradient
1498 id="linearGradient3442">
1499 <stop
1500 id="stop3444"
1501 offset="0"
1502 style="stop-color:#f6f6f6;stop-opacity:1;" />
1503 <stop
1504 id="stop3446"
1505 offset="1"
1506 style="stop-color:#b7b7b7;stop-opacity:1;" />
1507 </linearGradient>
1508 <linearGradient
1509 id="linearGradient3449">
1510 <stop
1511 id="stop3451"
1512 offset="0"
1513 style="stop-color:#f6f6f6;stop-opacity:1;" />
1514 <stop
1515 id="stop3453"
1516 offset="1"
1517 style="stop-color:#b7b7b7;stop-opacity:1;" />
1518 </linearGradient>
1519 <linearGradient
1520 id="linearGradient3456">
1521 <stop
1522 id="stop3458"
1523 offset="0"
1524 style="stop-color:#f6f6f6;stop-opacity:1;" />
1525 <stop
1526 id="stop3460"
1527 offset="1"
1528 style="stop-color:#b7b7b7;stop-opacity:1;" />
1529 </linearGradient>
1530 <linearGradient
1531 id="linearGradient3463">
1532 <stop
1533 id="stop3465"
1534 offset="0"
1535 style="stop-color:#f6f6f6;stop-opacity:1;" />
1536 <stop
1537 id="stop3467"
1538 offset="1"
1539 style="stop-color:#b7b7b7;stop-opacity:1;" />
1540 </linearGradient>
1541 <linearGradient
1542 id="linearGradient3470">
1543 <stop
1544 id="stop3472"
1545 offset="0"
1546 style="stop-color:#f6f6f6;stop-opacity:1;" />
1547 <stop
1548 id="stop3474"
1549 offset="1"
1550 style="stop-color:#b7b7b7;stop-opacity:1;" />
1551 </linearGradient>
1552 <linearGradient
1553 id="linearGradient3477">
1554 <stop
1555 id="stop3479"
1556 offset="0"
1557 style="stop-color:#f6f6f6;stop-opacity:1;" />
1558 <stop
1559 id="stop3481"
1560 offset="1"
1561 style="stop-color:#b7b7b7;stop-opacity:1;" />
1562 </linearGradient>
1563 <linearGradient
1564 id="linearGradient3484">
1565 <stop
1566 id="stop3486"
1567 offset="0"
1568 style="stop-color:#f6f6f6;stop-opacity:1;" />
1569 <stop
1570 id="stop3488"
1571 offset="1"
1572 style="stop-color:#b7b7b7;stop-opacity:1;" />
1573 </linearGradient>
1574 <inkscape:perspective
1575 id="perspective3219-7"
1576 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1577 inkscape:vp_z="1 : 0.5 : 1"
1578 inkscape:vp_y="0 : 1000 : 0"
1579 inkscape:vp_x="0 : 0.5 : 1"
1580 sodipodi:type="inkscape:persp3d" />
1581 <linearGradient
1582 id="linearGradient5756-9">
1583 <stop
1584 style="stop-color:#dadada;stop-opacity:1;"
1585 offset="0"
1586 id="stop5758-1" />
1587 <stop
1588 style="stop-color:#b7b7b7;stop-opacity:1;"
1589 offset="1"
1590 id="stop5760-70" />
1591 </linearGradient>
1592 <linearGradient
1593 inkscape:collect="always"
1594 xlink:href="#linearGradient3134-0"
1595 id="linearGradient6263-6"
1596 gradientUnits="userSpaceOnUse"
1597 gradientTransform="matrix(0.5946191,0,0,0.6857303,-55.408053,114.10393)"
1598 x1="171.66098"
1599 y1="319.12198"
1600 x2="171.66098"
1601 y2="214.21933" />
1602 <linearGradient
1603 id="linearGradient3134-0">
1604 <stop
1605 id="stop3136-8"
1606 offset="0"
1607 style="stop-color:#f6f6f6;stop-opacity:1;" />
1608 <stop
1609 id="stop3138-5"
1610 offset="1"
1611 style="stop-color:#b7b7b7;stop-opacity:1;" />
1612 </linearGradient>
1613 <linearGradient
1614 inkscape:collect="always"
1615 xlink:href="#linearGradient3134-0"
1616 id="linearGradient6265-3"
1617 gradientUnits="userSpaceOnUse"
1618 gradientTransform="matrix(0.5946191,0,0,0.6857303,23.383845,114.10393)"
1619 x1="171.66098"
1620 y1="319.12198"
1621 x2="171.66098"
1622 y2="214.21933" />
1623 <linearGradient
1624 id="linearGradient3232-9">
1625 <stop
1626 id="stop3234-4"
1627 offset="0"
1628 style="stop-color:#f6f6f6;stop-opacity:1;" />
1629 <stop
1630 id="stop3236-1"
1631 offset="1"
1632 style="stop-color:#b7b7b7;stop-opacity:1;" />
1633 </linearGradient>
1634 <linearGradient
1635 inkscape:collect="always"
1636 xlink:href="#linearGradient3134-0"
1637 id="linearGradient6267-5"
1638 gradientUnits="userSpaceOnUse"
1639 gradientTransform="matrix(0.5946191,0,0,0.6857303,102.17574,114.10393)"
1640 x1="171.66098"
1641 y1="319.12198"
1642 x2="171.66098"
1643 y2="214.21933" />
1644 <linearGradient
1645 id="linearGradient3239-4">
1646 <stop
1647 id="stop3241-1"
1648 offset="0"
1649 style="stop-color:#f6f6f6;stop-opacity:1;" />
1650 <stop
1651 id="stop3243-5"
1652 offset="1"
1653 style="stop-color:#b7b7b7;stop-opacity:1;" />
1654 </linearGradient>
1655 <linearGradient
1656 inkscape:collect="always"
1657 xlink:href="#linearGradient3134-0"
1658 id="linearGradient6269-5"
1659 gradientUnits="userSpaceOnUse"
1660 gradientTransform="matrix(0.5946191,0,0,0.6857303,181.97779,114.10393)"
1661 x1="171.66098"
1662 y1="319.12198"
1663 x2="171.66098"
1664 y2="214.21933" />
1665 <linearGradient
1666 id="linearGradient3246-4">
1667 <stop
1668 id="stop3248-9"
1669 offset="0"
1670 style="stop-color:#f6f6f6;stop-opacity:1;" />
1671 <stop
1672 id="stop3250-8"
1673 offset="1"
1674 style="stop-color:#b7b7b7;stop-opacity:1;" />
1675 </linearGradient>
1676 <linearGradient
1677 inkscape:collect="always"
1678 xlink:href="#linearGradient3134-0"
1679 id="linearGradient6271-3"
1680 gradientUnits="userSpaceOnUse"
1681 gradientTransform="matrix(0.5946191,0,0,0.6857303,257.73923,114.10393)"
1682 x1="171.66098"
1683 y1="319.12198"
1684 x2="171.66098"
1685 y2="214.21933" />
1686 <linearGradient
1687 id="linearGradient3253-8">
1688 <stop
1689 id="stop3255-5"
1690 offset="0"
1691 style="stop-color:#f6f6f6;stop-opacity:1;" />
1692 <stop
1693 id="stop3257-2"
1694 offset="1"
1695 style="stop-color:#b7b7b7;stop-opacity:1;" />
1696 </linearGradient>
1697 <linearGradient
1698 inkscape:collect="always"
1699 xlink:href="#linearGradient3134-0"
1700 id="linearGradient6273-2"
1701 gradientUnits="userSpaceOnUse"
1702 gradientTransform="matrix(0.5946191,0,0,0.6857303,339.56159,114.10393)"
1703 x1="171.66098"
1704 y1="319.12198"
1705 x2="171.66098"
1706 y2="214.21933" />
1707 <linearGradient
1708 id="linearGradient3260-2">
1709 <stop
1710 id="stop3262-7"
1711 offset="0"
1712 style="stop-color:#f6f6f6;stop-opacity:1;" />
1713 <stop
1714 id="stop3264-0"
1715 offset="1"
1716 style="stop-color:#b7b7b7;stop-opacity:1;" />
1717 </linearGradient>
1718 <linearGradient
1719 inkscape:collect="always"
1720 xlink:href="#linearGradient3134-0"
1721 id="linearGradient6275-3"
1722 gradientUnits="userSpaceOnUse"
1723 gradientTransform="matrix(0.5946191,0,0,0.6857303,419.36364,114.10393)"
1724 x1="171.66098"
1725 y1="319.12198"
1726 x2="171.66098"
1727 y2="214.21933" />
1728 <linearGradient
1729 id="linearGradient3267-4">
1730 <stop
1731 id="stop3269-6"
1732 offset="0"
1733 style="stop-color:#f6f6f6;stop-opacity:1;" />
1734 <stop
1735 id="stop3271-3"
1736 offset="1"
1737 style="stop-color:#b7b7b7;stop-opacity:1;" />
1738 </linearGradient>
1739 <linearGradient
1740 inkscape:collect="always"
1741 xlink:href="#linearGradient3134-0"
1742 id="linearGradient6277-6"
1743 gradientUnits="userSpaceOnUse"
1744 gradientTransform="matrix(0.5946191,0,0,0.6857303,498.15554,114.10393)"
1745 x1="171.66098"
1746 y1="319.12198"
1747 x2="171.66098"
1748 y2="214.21933" />
1749 <linearGradient
1750 id="linearGradient3274-3">
1751 <stop
1752 id="stop3276-3"
1753 offset="0"
1754 style="stop-color:#f6f6f6;stop-opacity:1;" />
1755 <stop
1756 id="stop3278-4"
1757 offset="1"
1758 style="stop-color:#b7b7b7;stop-opacity:1;" />
1759 </linearGradient>
1760 <linearGradient
1761 inkscape:collect="always"
1762 xlink:href="#linearGradient3134-0"
1763 id="linearGradient6279-4"
1764 gradientUnits="userSpaceOnUse"
1765 gradientTransform="matrix(0.5946191,0,0,0.6857303,576.94744,114.10393)"
1766 x1="171.66098"
1767 y1="319.12198"
1768 x2="171.66098"
1769 y2="214.21933" />
1770 <linearGradient
1771 id="linearGradient3281-3">
1772 <stop
1773 id="stop3283-9"
1774 offset="0"
1775 style="stop-color:#f6f6f6;stop-opacity:1;" />
1776 <stop
1777 id="stop3285-7"
1778 offset="1"
1779 style="stop-color:#b7b7b7;stop-opacity:1;" />
1780 </linearGradient>
1781 <linearGradient
1782 inkscape:collect="always"
1783 xlink:href="#linearGradient3134-0"
1784 id="linearGradient6281-2"
1785 gradientUnits="userSpaceOnUse"
1786 gradientTransform="matrix(0.5946191,0,0,0.6857303,652.70888,114.10393)"
1787 x1="171.66098"
1788 y1="319.12198"
1789 x2="171.66098"
1790 y2="214.21933" />
1791 <linearGradient
1792 id="linearGradient3288-5">
1793 <stop
1794 id="stop3290-8"
1795 offset="0"
1796 style="stop-color:#f6f6f6;stop-opacity:1;" />
1797 <stop
1798 id="stop3292-9"
1799 offset="1"
1800 style="stop-color:#b7b7b7;stop-opacity:1;" />
1801 </linearGradient>
1802 <linearGradient
1803 inkscape:collect="always"
1804 xlink:href="#linearGradient3134-0"
1805 id="linearGradient6283-0"
1806 gradientUnits="userSpaceOnUse"
1807 gradientTransform="matrix(0.5946191,0,0,0.6857303,-55.408053,199.9669)"
1808 x1="171.66098"
1809 y1="319.12198"
1810 x2="171.66098"
1811 y2="214.21933" />
1812 <linearGradient
1813 id="linearGradient3295-2">
1814 <stop
1815 id="stop3297-4"
1816 offset="0"
1817 style="stop-color:#f6f6f6;stop-opacity:1;" />
1818 <stop
1819 id="stop3299-7"
1820 offset="1"
1821 style="stop-color:#b7b7b7;stop-opacity:1;" />
1822 </linearGradient>
1823 <linearGradient
1824 inkscape:collect="always"
1825 xlink:href="#linearGradient3134-0"
1826 id="linearGradient6285-6"
1827 gradientUnits="userSpaceOnUse"
1828 gradientTransform="matrix(0.5946191,0,0,0.6857303,23.383846,199.9669)"
1829 x1="171.66098"
1830 y1="319.12198"
1831 x2="171.66098"
1832 y2="214.21933" />
1833 <linearGradient
1834 id="linearGradient3302-5">
1835 <stop
1836 id="stop3304-7"
1837 offset="0"
1838 style="stop-color:#f6f6f6;stop-opacity:1;" />
1839 <stop
1840 id="stop3306-1"
1841 offset="1"
1842 style="stop-color:#b7b7b7;stop-opacity:1;" />
1843 </linearGradient>
1844 <linearGradient
1845 inkscape:collect="always"
1846 xlink:href="#linearGradient3134-0"
1847 id="linearGradient6287-3"
1848 gradientUnits="userSpaceOnUse"
1849 gradientTransform="matrix(0.5946191,0,0,0.6857303,102.17574,199.9669)"
1850 x1="171.66098"
1851 y1="319.12198"
1852 x2="171.66098"
1853 y2="214.21933" />
1854 <linearGradient
1855 id="linearGradient3309-3">
1856 <stop
1857 id="stop3311-3"
1858 offset="0"
1859 style="stop-color:#f6f6f6;stop-opacity:1;" />
1860 <stop
1861 id="stop3313-8"
1862 offset="1"
1863 style="stop-color:#b7b7b7;stop-opacity:1;" />
1864 </linearGradient>
1865 <linearGradient
1866 inkscape:collect="always"
1867 xlink:href="#linearGradient3134-0"
1868 id="linearGradient6289-51"
1869 gradientUnits="userSpaceOnUse"
1870 gradientTransform="matrix(0.5946191,0,0,0.6857303,183.9981,199.9669)"
1871 x1="171.66098"
1872 y1="319.12198"
1873 x2="171.66098"
1874 y2="214.21933" />
1875 <linearGradient
1876 id="linearGradient3316-0">
1877 <stop
1878 id="stop3318-8"
1879 offset="0"
1880 style="stop-color:#f6f6f6;stop-opacity:1;" />
1881 <stop
1882 id="stop3320-7"
1883 offset="1"
1884 style="stop-color:#b7b7b7;stop-opacity:1;" />
1885 </linearGradient>
1886 <linearGradient
1887 inkscape:collect="always"
1888 xlink:href="#linearGradient3134-0"
1889 id="linearGradient6291-6"
1890 gradientUnits="userSpaceOnUse"
1891 gradientTransform="matrix(0.5946191,0,0,0.6857303,261.77985,199.9669)"
1892 x1="171.66098"
1893 y1="319.12198"
1894 x2="171.66098"
1895 y2="214.21933" />
1896 <linearGradient
1897 id="linearGradient3323-3">
1898 <stop
1899 id="stop3325-5"
1900 offset="0"
1901 style="stop-color:#f6f6f6;stop-opacity:1;" />
1902 <stop
1903 id="stop3327-0"
1904 offset="1"
1905 style="stop-color:#b7b7b7;stop-opacity:1;" />
1906 </linearGradient>
1907 <linearGradient
1908 inkscape:collect="always"
1909 xlink:href="#linearGradient3134-0"
1910 id="linearGradient6293-8"
1911 gradientUnits="userSpaceOnUse"
1912 gradientTransform="matrix(0.5946191,0,0,0.6857303,338.55144,199.9669)"
1913 x1="171.66098"
1914 y1="319.12198"
1915 x2="171.66098"
1916 y2="214.21933" />
1917 <linearGradient
1918 id="linearGradient3330-0">
1919 <stop
1920 id="stop3332-4"
1921 offset="0"
1922 style="stop-color:#f6f6f6;stop-opacity:1;" />
1923 <stop
1924 id="stop3334-1"
1925 offset="1"
1926 style="stop-color:#b7b7b7;stop-opacity:1;" />
1927 </linearGradient>
1928 <linearGradient
1929 inkscape:collect="always"
1930 xlink:href="#linearGradient3134-0"
1931 id="linearGradient6295-1"
1932 gradientUnits="userSpaceOnUse"
1933 gradientTransform="matrix(0.5946191,0,0,0.6857303,421.38395,199.9669)"
1934 x1="171.66098"
1935 y1="319.12198"
1936 x2="171.66098"
1937 y2="214.21933" />
1938 <linearGradient
1939 id="linearGradient3337-3">
1940 <stop
1941 id="stop3339-5"
1942 offset="0"
1943 style="stop-color:#f6f6f6;stop-opacity:1;" />
1944 <stop
1945 id="stop3341-9"
1946 offset="1"
1947 style="stop-color:#b7b7b7;stop-opacity:1;" />
1948 </linearGradient>
1949 <linearGradient
1950 inkscape:collect="always"
1951 xlink:href="#linearGradient3134-0"
1952 id="linearGradient6297-3"
1953 gradientUnits="userSpaceOnUse"
1954 gradientTransform="matrix(0.5946191,0,0,0.6857303,499.1657,199.9669)"
1955 x1="171.66098"
1956 y1="319.12198"
1957 x2="171.66098"
1958 y2="214.21933" />
1959 <linearGradient
1960 id="linearGradient3344-4">
1961 <stop
1962 id="stop3346-1"
1963 offset="0"
1964 style="stop-color:#f6f6f6;stop-opacity:1;" />
1965 <stop
1966 id="stop3348-5"
1967 offset="1"
1968 style="stop-color:#b7b7b7;stop-opacity:1;" />
1969 </linearGradient>
1970 <linearGradient
1971 inkscape:collect="always"
1972 xlink:href="#linearGradient3134-0"
1973 id="linearGradient6299-0"
1974 gradientUnits="userSpaceOnUse"
1975 gradientTransform="matrix(0.5946191,0,0,0.6857303,581.99821,199.9669)"
1976 x1="171.66098"
1977 y1="319.12198"
1978 x2="171.66098"
1979 y2="214.21933" />
1980 <linearGradient
1981 id="linearGradient3351-8">
1982 <stop
1983 id="stop3353-3"
1984 offset="0"
1985 style="stop-color:#f6f6f6;stop-opacity:1;" />
1986 <stop
1987 id="stop3355-5"
1988 offset="1"
1989 style="stop-color:#b7b7b7;stop-opacity:1;" />
1990 </linearGradient>
1991 <linearGradient
1992 inkscape:collect="always"
1993 xlink:href="#linearGradient3134-0"
1994 id="linearGradient6301-6"
1995 gradientUnits="userSpaceOnUse"
1996 gradientTransform="matrix(0.5946191,0,0,0.6857303,-55.408053,285.82987)"
1997 x1="171.66098"
1998 y1="319.12198"
1999 x2="171.66098"
2000 y2="214.21933" />
2001 <linearGradient
2002 id="linearGradient3358-5">
2003 <stop
2004 id="stop3360-9"
2005 offset="0"
2006 style="stop-color:#f6f6f6;stop-opacity:1;" />
2007 <stop
2008 id="stop3362-9"
2009 offset="1"
2010 style="stop-color:#b7b7b7;stop-opacity:1;" />
2011 </linearGradient>
2012 <linearGradient
2013 inkscape:collect="always"
2014 xlink:href="#linearGradient3134-0"
2015 id="linearGradient6303-0"
2016 gradientUnits="userSpaceOnUse"
2017 gradientTransform="matrix(0.5946191,0,0,0.6857303,23.383846,285.82987)"
2018 x1="171.66098"
2019 y1="319.12198"
2020 x2="171.66098"
2021 y2="214.21933" />
2022 <linearGradient
2023 id="linearGradient3365-7">
2024 <stop
2025 id="stop3367-6"
2026 offset="0"
2027 style="stop-color:#f6f6f6;stop-opacity:1;" />
2028 <stop
2029 id="stop3369-3"
2030 offset="1"
2031 style="stop-color:#b7b7b7;stop-opacity:1;" />
2032 </linearGradient>
2033 <linearGradient
2034 inkscape:collect="always"
2035 xlink:href="#linearGradient3134-0"
2036 id="linearGradient6305-7"
2037 gradientUnits="userSpaceOnUse"
2038 gradientTransform="matrix(0.5946191,0,0,0.6857303,101.16559,285.82987)"
2039 x1="171.66098"
2040 y1="319.12198"
2041 x2="171.66098"
2042 y2="214.21933" />
2043 <linearGradient
2044 id="linearGradient3372-6">
2045 <stop
2046 id="stop3374-1"
2047 offset="0"
2048 style="stop-color:#f6f6f6;stop-opacity:1;" />
2049 <stop
2050 id="stop3376-5"
2051 offset="1"
2052 style="stop-color:#b7b7b7;stop-opacity:1;" />
2053 </linearGradient>
2054 <linearGradient
2055 inkscape:collect="always"
2056 xlink:href="#linearGradient3134-0"
2057 id="linearGradient6307-0"
2058 gradientUnits="userSpaceOnUse"
2059 gradientTransform="matrix(0.5946191,0,0,0.6857303,179.95749,285.82987)"
2060 x1="171.66098"
2061 y1="319.12198"
2062 x2="171.66098"
2063 y2="214.21933" />
2064 <linearGradient
2065 id="linearGradient3379-6">
2066 <stop
2067 id="stop3381-5"
2068 offset="0"
2069 style="stop-color:#f6f6f6;stop-opacity:1;" />
2070 <stop
2071 id="stop3383-0"
2072 offset="1"
2073 style="stop-color:#b7b7b7;stop-opacity:1;" />
2074 </linearGradient>
2075 <linearGradient
2076 inkscape:collect="always"
2077 xlink:href="#linearGradient3134-0"
2078 id="linearGradient6309-8"
2079 gradientUnits="userSpaceOnUse"
2080 gradientTransform="matrix(0.5946191,0,0,0.6857303,265.82046,285.82987)"
2081 x1="171.66098"
2082 y1="319.12198"
2083 x2="171.66098"
2084 y2="214.21933" />
2085 <linearGradient
2086 id="linearGradient3386-1">
2087 <stop
2088 id="stop3388-2"
2089 offset="0"
2090 style="stop-color:#f6f6f6;stop-opacity:1;" />
2091 <stop
2092 id="stop3390-2"
2093 offset="1"
2094 style="stop-color:#b7b7b7;stop-opacity:1;" />
2095 </linearGradient>
2096 <linearGradient
2097 inkscape:collect="always"
2098 xlink:href="#linearGradient3134-0"
2099 id="linearGradient6311-6"
2100 gradientUnits="userSpaceOnUse"
2101 gradientTransform="matrix(0.5946191,0,0,0.6857303,347.64282,285.82987)"
2102 x1="171.66098"
2103 y1="319.12198"
2104 x2="171.66098"
2105 y2="214.21933" />
2106 <linearGradient
2107 id="linearGradient3393-9">
2108 <stop
2109 id="stop3395-1"
2110 offset="0"
2111 style="stop-color:#f6f6f6;stop-opacity:1;" />
2112 <stop
2113 id="stop3397-0"
2114 offset="1"
2115 style="stop-color:#b7b7b7;stop-opacity:1;" />
2116 </linearGradient>
2117 <linearGradient
2118 inkscape:collect="always"
2119 xlink:href="#linearGradient3134-0"
2120 id="linearGradient6313-4"
2121 gradientUnits="userSpaceOnUse"
2122 gradientTransform="matrix(0.5946191,0,0,0.6857303,417.34334,285.82987)"
2123 x1="171.66098"
2124 y1="319.12198"
2125 x2="171.66098"
2126 y2="214.21933" />
2127 <linearGradient
2128 id="linearGradient3400-2">
2129 <stop
2130 id="stop3402-7"
2131 offset="0"
2132 style="stop-color:#f6f6f6;stop-opacity:1;" />
2133 <stop
2134 id="stop3404-4"
2135 offset="1"
2136 style="stop-color:#b7b7b7;stop-opacity:1;" />
2137 </linearGradient>
2138 <linearGradient
2139 id="linearGradient3407-3">
2140 <stop
2141 id="stop3409-2"
2142 offset="0"
2143 style="stop-color:#f6f6f6;stop-opacity:1;" />
2144 <stop
2145 id="stop3411-8"
2146 offset="1"
2147 style="stop-color:#b7b7b7;stop-opacity:1;" />
2148 </linearGradient>
2149 <linearGradient
2150 inkscape:collect="always"
2151 xlink:href="#linearGradient3134-0"
2152 id="linearGradient6317-0"
2153 gradientUnits="userSpaceOnUse"
2154 gradientTransform="matrix(0.5946191,0,0,0.6857303,-55.408053,29.818216)"
2155 x1="171.66098"
2156 y1="319.12198"
2157 x2="171.66098"
2158 y2="214.21933" />
2159 <linearGradient
2160 id="linearGradient3414-3">
2161 <stop
2162 id="stop3416-7"
2163 offset="0"
2164 style="stop-color:#f6f6f6;stop-opacity:1;" />
2165 <stop
2166 id="stop3418-0"
2167 offset="1"
2168 style="stop-color:#b7b7b7;stop-opacity:1;" />
2169 </linearGradient>
2170 <linearGradient
2171 inkscape:collect="always"
2172 xlink:href="#linearGradient3134-0"
2173 id="linearGradient6319-0"
2174 gradientUnits="userSpaceOnUse"
2175 gradientTransform="matrix(0.5946191,0,0,0.6857303,21.734804,29.818216)"
2176 x1="171.66098"
2177 y1="319.12198"
2178 x2="171.66098"
2179 y2="214.21933" />
2180 <linearGradient
2181 id="linearGradient3421-3">
2182 <stop
2183 id="stop3423-4"
2184 offset="0"
2185 style="stop-color:#f6f6f6;stop-opacity:1;" />
2186 <stop
2187 id="stop3425-9"
2188 offset="1"
2189 style="stop-color:#b7b7b7;stop-opacity:1;" />
2190 </linearGradient>
2191 <linearGradient
2192 inkscape:collect="always"
2193 xlink:href="#linearGradient3134-0"
2194 id="linearGradient6321-2"
2195 gradientUnits="userSpaceOnUse"
2196 gradientTransform="matrix(0.5946191,0,0,0.6857303,103.16338,29.818216)"
2197 x1="171.66098"
2198 y1="319.12198"
2199 x2="171.66098"
2200 y2="214.21933" />
2201 <linearGradient
2202 id="linearGradient3428-7">
2203 <stop
2204 id="stop3430-4"
2205 offset="0"
2206 style="stop-color:#f6f6f6;stop-opacity:1;" />
2207 <stop
2208 id="stop3432-2"
2209 offset="1"
2210 style="stop-color:#b7b7b7;stop-opacity:1;" />
2211 </linearGradient>
2212 <linearGradient
2213 inkscape:collect="always"
2214 xlink:href="#linearGradient3134-0"
2215 id="linearGradient6323-5"
2216 gradientUnits="userSpaceOnUse"
2217 gradientTransform="matrix(0.5946191,0,0,0.6857303,178.87767,29.818216)"
2218 x1="171.66098"
2219 y1="319.12198"
2220 x2="171.66098"
2221 y2="214.21933" />
2222 <linearGradient
2223 id="linearGradient3435-2">
2224 <stop
2225 id="stop3437-4"
2226 offset="0"
2227 style="stop-color:#f6f6f6;stop-opacity:1;" />
2228 <stop
2229 id="stop3439-4"
2230 offset="1"
2231 style="stop-color:#b7b7b7;stop-opacity:1;" />
2232 </linearGradient>
2233 <linearGradient
2234 inkscape:collect="always"
2235 xlink:href="#linearGradient3134-0"
2236 id="linearGradient6325-3"
2237 gradientUnits="userSpaceOnUse"
2238 gradientTransform="matrix(0.5946191,0,0,0.6857303,256.02053,29.818216)"
2239 x1="171.66098"
2240 y1="319.12198"
2241 x2="171.66098"
2242 y2="214.21933" />
2243 <linearGradient
2244 id="linearGradient3442-8">
2245 <stop
2246 id="stop3444-6"
2247 offset="0"
2248 style="stop-color:#f6f6f6;stop-opacity:1;" />
2249 <stop
2250 id="stop3446-0"
2251 offset="1"
2252 style="stop-color:#b7b7b7;stop-opacity:1;" />
2253 </linearGradient>
2254 <linearGradient
2255 inkscape:collect="always"
2256 xlink:href="#linearGradient3134-0"
2257 id="linearGradient6327-8"
2258 gradientUnits="userSpaceOnUse"
2259 gradientTransform="matrix(0.5946191,0,0,0.6857303,333.93443,29.818216)"
2260 x1="171.66098"
2261 y1="319.12198"
2262 x2="171.66098"
2263 y2="214.21933" />
2264 <linearGradient
2265 id="linearGradient3449-9">
2266 <stop
2267 id="stop3451-2"
2268 offset="0"
2269 style="stop-color:#f6f6f6;stop-opacity:1;" />
2270 <stop
2271 id="stop3453-2"
2272 offset="1"
2273 style="stop-color:#b7b7b7;stop-opacity:1;" />
2274 </linearGradient>
2275 <linearGradient
2276 inkscape:collect="always"
2277 xlink:href="#linearGradient3134-0"
2278 id="linearGradient6329-31"
2279 gradientUnits="userSpaceOnUse"
2280 gradientTransform="matrix(0.5946191,0,0,0.6857303,416.02053,29.818216)"
2281 x1="171.66098"
2282 y1="319.12198"
2283 x2="171.66098"
2284 y2="214.21933" />
2285 <linearGradient
2286 id="linearGradient3456-8">
2287 <stop
2288 id="stop3458-3"
2289 offset="0"
2290 style="stop-color:#f6f6f6;stop-opacity:1;" />
2291 <stop
2292 id="stop3460-4"
2293 offset="1"
2294 style="stop-color:#b7b7b7;stop-opacity:1;" />
2295 </linearGradient>
2296 <linearGradient
2297 inkscape:collect="always"
2298 xlink:href="#linearGradient3134-0"
2299 id="linearGradient6331-2"
2300 gradientUnits="userSpaceOnUse"
2301 gradientTransform="matrix(0.5946191,0,0,0.6857303,496.02053,29.818216)"
2302 x1="171.66098"
2303 y1="319.12198"
2304 x2="171.66098"
2305 y2="214.21933" />
2306 <linearGradient
2307 id="linearGradient3463-2">
2308 <stop
2309 id="stop3465-4"
2310 offset="0"
2311 style="stop-color:#f6f6f6;stop-opacity:1;" />
2312 <stop
2313 id="stop3467-5"
2314 offset="1"
2315 style="stop-color:#b7b7b7;stop-opacity:1;" />
2316 </linearGradient>
2317 <linearGradient
2318 inkscape:collect="always"
2319 xlink:href="#linearGradient3134-0"
2320 id="linearGradient6333-1"
2321 gradientUnits="userSpaceOnUse"
2322 gradientTransform="matrix(0.5946191,0,0,0.6857303,577.4491,29.818216)"
2323 x1="171.66098"
2324 y1="319.12198"
2325 x2="171.66098"
2326 y2="214.21933" />
2327 <linearGradient
2328 id="linearGradient3470-7">
2329 <stop
2330 id="stop3472-5"
2331 offset="0"
2332 style="stop-color:#f6f6f6;stop-opacity:1;" />
2333 <stop
2334 id="stop3474-7"
2335 offset="1"
2336 style="stop-color:#b7b7b7;stop-opacity:1;" />
2337 </linearGradient>
2338 <linearGradient
2339 inkscape:collect="always"
2340 xlink:href="#linearGradient3134-0"
2341 id="linearGradient6335-1"
2342 gradientUnits="userSpaceOnUse"
2343 gradientTransform="matrix(0.5946191,0,0,0.6857303,660.30624,29.818216)"
2344 x1="171.66098"
2345 y1="319.12198"
2346 x2="171.66098"
2347 y2="214.21933" />
2348 <linearGradient
2349 id="linearGradient3477-6">
2350 <stop
2351 id="stop3479-9"
2352 offset="0"
2353 style="stop-color:#f6f6f6;stop-opacity:1;" />
2354 <stop
2355 id="stop3481-8"
2356 offset="1"
2357 style="stop-color:#b7b7b7;stop-opacity:1;" />
2358 </linearGradient>
2359 <linearGradient
2360 inkscape:collect="always"
2361 xlink:href="#linearGradient3134-0"
2362 id="linearGradient6337-1"
2363 gradientUnits="userSpaceOnUse"
2364 gradientTransform="matrix(1.9559964,0,0,0.6857303,343.53616,285.68268)"
2365 x1="171.66098"
2366 y1="319.12198"
2367 x2="171.66098"
2368 y2="214.21933" />
2369 <linearGradient
2370 id="linearGradient3484-3">
2371 <stop
2372 id="stop3486-3"
2373 offset="0"
2374 style="stop-color:#f6f6f6;stop-opacity:1;" />
2375 <stop
2376 id="stop3488-3"
2377 offset="1"
2378 style="stop-color:#b7b7b7;stop-opacity:1;" />
2379 </linearGradient>
2380 <linearGradient
2381 inkscape:collect="always"
2382 xlink:href="#linearGradient3134-0"
2383 id="linearGradient4933"
2384 gradientUnits="userSpaceOnUse"
2385 gradientTransform="matrix(0.7753191,0,0,0.15960984,-106.93223,45.461266)"
2386 x1="171.66098"
2387 y1="319.12198"
2388 x2="171.66098"
2389 y2="214.21933" />
2390 <linearGradient
2391 inkscape:collect="always"
2392 xlink:href="#linearGradient5756-9"
2393 id="linearGradient5040"
2394 gradientUnits="userSpaceOnUse"
2395 gradientTransform="matrix(1.6394366,0,0,1.0001283,-239.14484,-220.22534)"
2396 x1="171.66098"
2397 y1="319.12198"
2398 x2="171.66098"
2399 y2="214.21933" />
2400 <linearGradient
2401 inkscape:collect="always"
2402 xlink:href="#linearGradient3134"
2403 id="linearGradient6175"
2404 gradientUnits="userSpaceOnUse"
2405 gradientTransform="matrix(0.7753191,0,0,0.15960984,241.72444,41.501454)"
2406 x1="171.66098"
2407 y1="319.12198"
2408 x2="171.66098"
2409 y2="214.21933" />
2410 <linearGradient
2411 inkscape:collect="always"
2412 xlink:href="#linearGradient5756"
2413 id="linearGradient6282"
2414 gradientUnits="userSpaceOnUse"
2415 gradientTransform="matrix(1.6394366,0,0,1.0001283,106.86557,-224.18515)"
2416 x1="171.66098"
2417 y1="319.12198"
2418 x2="171.66098"
2419 y2="214.21933" />
2420 <linearGradient
2421 inkscape:collect="always"
2422 xlink:href="#linearGradient5756-2"
2423 id="linearGradient7058"
2424 gradientUnits="userSpaceOnUse"
2425 gradientTransform="matrix(1.6394366,0,0,1.0001283,465.85077,-219.91284)"
2426 x1="171.66098"
2427 y1="319.12198"
2428 x2="171.66098"
2429 y2="214.21933" />
2430 <linearGradient
2431 inkscape:collect="always"
2432 xlink:href="#linearGradient3134-3"
2433 id="linearGradient7060"
2434 gradientUnits="userSpaceOnUse"
2435 gradientTransform="matrix(0.5946191,0,0,0.6857303,-55.408053,114.10393)"
2436 x1="171.66098"
2437 y1="319.12198"
2438 x2="171.66098"
2439 y2="214.21933" />
2440 <linearGradient
2441 inkscape:collect="always"
2442 xlink:href="#linearGradient3134-3"
2443 id="linearGradient7062"
2444 gradientUnits="userSpaceOnUse"
2445 gradientTransform="matrix(0.5946191,0,0,0.6857303,23.383845,114.10393)"
2446 x1="171.66098"
2447 y1="319.12198"
2448 x2="171.66098"
2449 y2="214.21933" />
2450 <linearGradient
2451 inkscape:collect="always"
2452 xlink:href="#linearGradient3134-3"
2453 id="linearGradient7064"
2454 gradientUnits="userSpaceOnUse"
2455 gradientTransform="matrix(0.5946191,0,0,0.6857303,102.17574,114.10393)"
2456 x1="171.66098"
2457 y1="319.12198"
2458 x2="171.66098"
2459 y2="214.21933" />
2460 <linearGradient
2461 inkscape:collect="always"
2462 xlink:href="#linearGradient3134-3"
2463 id="linearGradient7066"
2464 gradientUnits="userSpaceOnUse"
2465 gradientTransform="matrix(0.5946191,0,0,0.6857303,181.97779,114.10393)"
2466 x1="171.66098"
2467 y1="319.12198"
2468 x2="171.66098"
2469 y2="214.21933" />
2470 <linearGradient
2471 inkscape:collect="always"
2472 xlink:href="#linearGradient3134-3"
2473 id="linearGradient7068"
2474 gradientUnits="userSpaceOnUse"
2475 gradientTransform="matrix(0.5946191,0,0,0.6857303,257.73923,114.10393)"
2476 x1="171.66098"
2477 y1="319.12198"
2478 x2="171.66098"
2479 y2="214.21933" />
2480 <linearGradient
2481 inkscape:collect="always"
2482 xlink:href="#linearGradient3134-3"
2483 id="linearGradient7070"
2484 gradientUnits="userSpaceOnUse"
2485 gradientTransform="matrix(0.5946191,0,0,0.6857303,339.56159,114.10393)"
2486 x1="171.66098"
2487 y1="319.12198"
2488 x2="171.66098"
2489 y2="214.21933" />
2490 <linearGradient
2491 inkscape:collect="always"
2492 xlink:href="#linearGradient3134-3"
2493 id="linearGradient7072"
2494 gradientUnits="userSpaceOnUse"
2495 gradientTransform="matrix(0.5946191,0,0,0.6857303,419.36364,114.10393)"
2496 x1="171.66098"
2497 y1="319.12198"
2498 x2="171.66098"
2499 y2="214.21933" />
2500 <linearGradient
2501 inkscape:collect="always"
2502 xlink:href="#linearGradient3134-3"
2503 id="linearGradient7074"
2504 gradientUnits="userSpaceOnUse"
2505 gradientTransform="matrix(0.5946191,0,0,0.6857303,498.15554,114.10393)"
2506 x1="171.66098"
2507 y1="319.12198"
2508 x2="171.66098"
2509 y2="214.21933" />
2510 <linearGradient
2511 inkscape:collect="always"
2512 xlink:href="#linearGradient3134-3"
2513 id="linearGradient7076"
2514 gradientUnits="userSpaceOnUse"
2515 gradientTransform="matrix(0.5946191,0,0,0.6857303,576.94744,114.10393)"
2516 x1="171.66098"
2517 y1="319.12198"
2518 x2="171.66098"
2519 y2="214.21933" />
2520 <linearGradient
2521 inkscape:collect="always"
2522 xlink:href="#linearGradient3134-3"
2523 id="linearGradient7078"
2524 gradientUnits="userSpaceOnUse"
2525 gradientTransform="matrix(0.5946191,0,0,0.6857303,652.70888,114.10393)"
2526 x1="171.66098"
2527 y1="319.12198"
2528 x2="171.66098"
2529 y2="214.21933" />
2530 <linearGradient
2531 inkscape:collect="always"
2532 xlink:href="#linearGradient3134-3"
2533 id="linearGradient7080"
2534 gradientUnits="userSpaceOnUse"
2535 gradientTransform="matrix(0.5946191,0,0,0.6857303,-55.408053,199.9669)"
2536 x1="171.66098"
2537 y1="319.12198"
2538 x2="171.66098"
2539 y2="214.21933" />
2540 <linearGradient
2541 inkscape:collect="always"
2542 xlink:href="#linearGradient3134-3"
2543 id="linearGradient7082"
2544 gradientUnits="userSpaceOnUse"
2545 gradientTransform="matrix(0.5946191,0,0,0.6857303,23.383846,199.9669)"
2546 x1="171.66098"
2547 y1="319.12198"
2548 x2="171.66098"
2549 y2="214.21933" />
2550 <linearGradient
2551 inkscape:collect="always"
2552 xlink:href="#linearGradient3134-3"
2553 id="linearGradient7084"
2554 gradientUnits="userSpaceOnUse"
2555 gradientTransform="matrix(0.5946191,0,0,0.6857303,102.17574,199.9669)"
2556 x1="171.66098"
2557 y1="319.12198"
2558 x2="171.66098"
2559 y2="214.21933" />
2560 <linearGradient
2561 inkscape:collect="always"
2562 xlink:href="#linearGradient3134-3"
2563 id="linearGradient7086"
2564 gradientUnits="userSpaceOnUse"
2565 gradientTransform="matrix(0.5946191,0,0,0.6857303,183.9981,199.9669)"
2566 x1="171.66098"
2567 y1="319.12198"
2568 x2="171.66098"
2569 y2="214.21933" />
2570 <linearGradient
2571 inkscape:collect="always"
2572 xlink:href="#linearGradient3134-3"
2573 id="linearGradient7088"
2574 gradientUnits="userSpaceOnUse"
2575 gradientTransform="matrix(0.5946191,0,0,0.6857303,261.77985,199.9669)"
2576 x1="171.66098"
2577 y1="319.12198"
2578 x2="171.66098"
2579 y2="214.21933" />
2580 <linearGradient
2581 inkscape:collect="always"
2582 xlink:href="#linearGradient3134-3"
2583 id="linearGradient7090"
2584 gradientUnits="userSpaceOnUse"
2585 gradientTransform="matrix(0.5946191,0,0,0.6857303,338.55144,199.9669)"
2586 x1="171.66098"
2587 y1="319.12198"
2588 x2="171.66098"
2589 y2="214.21933" />
2590 <linearGradient
2591 inkscape:collect="always"
2592 xlink:href="#linearGradient3134-3"
2593 id="linearGradient7092"
2594 gradientUnits="userSpaceOnUse"
2595 gradientTransform="matrix(0.5946191,0,0,0.6857303,421.38395,199.9669)"
2596 x1="171.66098"
2597 y1="319.12198"
2598 x2="171.66098"
2599 y2="214.21933" />
2600 <linearGradient
2601 inkscape:collect="always"
2602 xlink:href="#linearGradient3134-3"
2603 id="linearGradient7094"
2604 gradientUnits="userSpaceOnUse"
2605 gradientTransform="matrix(0.5946191,0,0,0.6857303,499.1657,199.9669)"
2606 x1="171.66098"
2607 y1="319.12198"
2608 x2="171.66098"
2609 y2="214.21933" />
2610 <linearGradient
2611 inkscape:collect="always"
2612 xlink:href="#linearGradient3134-3"
2613 id="linearGradient7096"
2614 gradientUnits="userSpaceOnUse"
2615 gradientTransform="matrix(0.5946191,0,0,0.6857303,581.99821,199.9669)"
2616 x1="171.66098"
2617 y1="319.12198"
2618 x2="171.66098"
2619 y2="214.21933" />
2620 <linearGradient
2621 inkscape:collect="always"
2622 xlink:href="#linearGradient3134-3"
2623 id="linearGradient7098"
2624 gradientUnits="userSpaceOnUse"
2625 gradientTransform="matrix(0.5946191,0,0,0.6857303,-55.408053,285.82987)"
2626 x1="171.66098"
2627 y1="319.12198"
2628 x2="171.66098"
2629 y2="214.21933" />
2630 <linearGradient
2631 inkscape:collect="always"
2632 xlink:href="#linearGradient3134-3"
2633 id="linearGradient7100"
2634 gradientUnits="userSpaceOnUse"
2635 gradientTransform="matrix(0.5946191,0,0,0.6857303,23.383846,285.82987)"
2636 x1="171.66098"
2637 y1="319.12198"
2638 x2="171.66098"
2639 y2="214.21933" />
2640 <linearGradient
2641 inkscape:collect="always"
2642 xlink:href="#linearGradient3134-3"
2643 id="linearGradient7102"
2644 gradientUnits="userSpaceOnUse"
2645 gradientTransform="matrix(0.5946191,0,0,0.6857303,101.16559,285.82987)"
2646 x1="171.66098"
2647 y1="319.12198"
2648 x2="171.66098"
2649 y2="214.21933" />
2650 <linearGradient
2651 inkscape:collect="always"
2652 xlink:href="#linearGradient3134-3"
2653 id="linearGradient7104"
2654 gradientUnits="userSpaceOnUse"
2655 gradientTransform="matrix(0.5946191,0,0,0.6857303,179.95749,285.82987)"
2656 x1="171.66098"
2657 y1="319.12198"
2658 x2="171.66098"
2659 y2="214.21933" />
2660 <linearGradient
2661 inkscape:collect="always"
2662 xlink:href="#linearGradient3134-3"
2663 id="linearGradient7106"
2664 gradientUnits="userSpaceOnUse"
2665 gradientTransform="matrix(0.5946191,0,0,0.6857303,265.82046,285.82987)"
2666 x1="171.66098"
2667 y1="319.12198"
2668 x2="171.66098"
2669 y2="214.21933" />
2670 <linearGradient
2671 inkscape:collect="always"
2672 xlink:href="#linearGradient3134-3"
2673 id="linearGradient7108"
2674 gradientUnits="userSpaceOnUse"
2675 gradientTransform="matrix(0.5946191,0,0,0.6857303,347.64282,285.82987)"
2676 x1="171.66098"
2677 y1="319.12198"
2678 x2="171.66098"
2679 y2="214.21933" />
2680 <linearGradient
2681 inkscape:collect="always"
2682 xlink:href="#linearGradient3134-3"
2683 id="linearGradient7110"
2684 gradientUnits="userSpaceOnUse"
2685 gradientTransform="matrix(0.5946191,0,0,0.6857303,417.34334,285.82987)"
2686 x1="171.66098"
2687 y1="319.12198"
2688 x2="171.66098"
2689 y2="214.21933" />
2690 <linearGradient
2691 inkscape:collect="always"
2692 xlink:href="#linearGradient3134-3"
2693 id="linearGradient7112"
2694 gradientUnits="userSpaceOnUse"
2695 gradientTransform="matrix(0.7753191,0,0,0.15960984,600.70964,45.773766)"
2696 x1="171.66098"
2697 y1="319.12198"
2698 x2="171.66098"
2699 y2="214.21933" />
2700 <linearGradient
2701 inkscape:collect="always"
2702 xlink:href="#linearGradient3134-3"
2703 id="linearGradient7114"
2704 gradientUnits="userSpaceOnUse"
2705 gradientTransform="matrix(0.5946191,0,0,0.6857303,-55.408053,29.818216)"
2706 x1="171.66098"
2707 y1="319.12198"
2708 x2="171.66098"
2709 y2="214.21933" />
2710 <linearGradient
2711 inkscape:collect="always"
2712 xlink:href="#linearGradient3134-3"
2713 id="linearGradient7116"
2714 gradientUnits="userSpaceOnUse"
2715 gradientTransform="matrix(0.5946191,0,0,0.6857303,21.734804,29.818216)"
2716 x1="171.66098"
2717 y1="319.12198"
2718 x2="171.66098"
2719 y2="214.21933" />
2720 <linearGradient
2721 inkscape:collect="always"
2722 xlink:href="#linearGradient3134-3"
2723 id="linearGradient7118"
2724 gradientUnits="userSpaceOnUse"
2725 gradientTransform="matrix(0.5946191,0,0,0.6857303,103.16338,29.818216)"
2726 x1="171.66098"
2727 y1="319.12198"
2728 x2="171.66098"
2729 y2="214.21933" />
2730 <linearGradient
2731 inkscape:collect="always"
2732 xlink:href="#linearGradient3134-3"
2733 id="linearGradient7120"
2734 gradientUnits="userSpaceOnUse"
2735 gradientTransform="matrix(0.5946191,0,0,0.6857303,178.87767,29.818216)"
2736 x1="171.66098"
2737 y1="319.12198"
2738 x2="171.66098"
2739 y2="214.21933" />
2740 <linearGradient
2741 inkscape:collect="always"
2742 xlink:href="#linearGradient3134-3"
2743 id="linearGradient7122"
2744 gradientUnits="userSpaceOnUse"
2745 gradientTransform="matrix(0.5946191,0,0,0.6857303,256.02053,29.818216)"
2746 x1="171.66098"
2747 y1="319.12198"
2748 x2="171.66098"
2749 y2="214.21933" />
2750 <linearGradient
2751 inkscape:collect="always"
2752 xlink:href="#linearGradient3134-3"
2753 id="linearGradient7124"
2754 gradientUnits="userSpaceOnUse"
2755 gradientTransform="matrix(0.5946191,0,0,0.6857303,333.93443,29.818216)"
2756 x1="171.66098"
2757 y1="319.12198"
2758 x2="171.66098"
2759 y2="214.21933" />
2760 <linearGradient
2761 inkscape:collect="always"
2762 xlink:href="#linearGradient3134-3"
2763 id="linearGradient7126"
2764 gradientUnits="userSpaceOnUse"
2765 gradientTransform="matrix(0.5946191,0,0,0.6857303,416.02053,29.818216)"
2766 x1="171.66098"
2767 y1="319.12198"
2768 x2="171.66098"
2769 y2="214.21933" />
2770 <linearGradient
2771 inkscape:collect="always"
2772 xlink:href="#linearGradient3134-3"
2773 id="linearGradient7128"
2774 gradientUnits="userSpaceOnUse"
2775 gradientTransform="matrix(0.5946191,0,0,0.6857303,496.02053,29.818216)"
2776 x1="171.66098"
2777 y1="319.12198"
2778 x2="171.66098"
2779 y2="214.21933" />
2780 <linearGradient
2781 inkscape:collect="always"
2782 xlink:href="#linearGradient3134-3"
2783 id="linearGradient7130"
2784 gradientUnits="userSpaceOnUse"
2785 gradientTransform="matrix(0.5946191,0,0,0.6857303,577.4491,29.818216)"
2786 x1="171.66098"
2787 y1="319.12198"
2788 x2="171.66098"
2789 y2="214.21933" />
2790 <linearGradient
2791 inkscape:collect="always"
2792 xlink:href="#linearGradient3134-3"
2793 id="linearGradient7132"
2794 gradientUnits="userSpaceOnUse"
2795 gradientTransform="matrix(0.5946191,0,0,0.6857303,660.30624,29.818216)"
2796 x1="171.66098"
2797 y1="319.12198"
2798 x2="171.66098"
2799 y2="214.21933" />
2800 <linearGradient
2801 inkscape:collect="always"
2802 xlink:href="#linearGradient3134-3"
2803 id="linearGradient7134"
2804 gradientUnits="userSpaceOnUse"
2805 gradientTransform="matrix(1.9559964,0,0,0.6857303,343.53616,285.68268)"
2806 x1="171.66098"
2807 y1="319.12198"
2808 x2="171.66098"
2809 y2="214.21933" />
2810 <inkscape:perspective
2811 id="perspective5992"
2812 inkscape:persp3d-origin="200 : 161.33333 : 1"
2813 inkscape:vp_z="400 : 242 : 1"
2814 inkscape:vp_y="0 : 1000 : 0"
2815 inkscape:vp_x="0 : 242 : 1"
2816 sodipodi:type="inkscape:persp3d" />
2817 <inkscape:perspective
2818 id="perspective8459"
2819 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2820 inkscape:vp_z="1 : 0.5 : 1"
2821 inkscape:vp_y="0 : 1000 : 0"
2822 inkscape:vp_x="0 : 0.5 : 1"
2823 sodipodi:type="inkscape:persp3d" />
2824 <marker
2825 inkscape:stockid="Arrow1Send"
2826 orient="auto"
2827 refY="0"
2828 refX="0"
2829 id="Arrow1Send-9-8"
2830 style="overflow:visible">
2831 <path
2832 id="path5065-39-9"
2833 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2834 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2835 transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
2836 </marker>
2837 <marker
2838 inkscape:stockid="Arrow1Mend"
2839 orient="auto"
2840 refY="0"
2841 refX="0"
2842 id="Arrow1Mend-3"
2843 style="overflow:visible">
2844 <path
2845 id="path5061-3"
2846 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2847 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2848 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
2849 </marker>
2850 <inkscape:perspective
2851 id="perspective8493"
2852 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2853 inkscape:vp_z="1 : 0.5 : 1"
2854 inkscape:vp_y="0 : 1000 : 0"
2855 inkscape:vp_x="0 : 0.5 : 1"
2856 sodipodi:type="inkscape:persp3d" />
2857 <marker
2858 inkscape:stockid="Arrow1Send"
2859 orient="auto"
2860 refY="0"
2861 refX="0"
2862 id="Arrow1Send-9-4"
2863 style="overflow:visible">
2864 <path
2865 id="path5065-39-8"
2866 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2867 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2868 transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
2869 </marker>
2870 <marker
2871 inkscape:stockid="Arrow1Mend"
2872 orient="auto"
2873 refY="0"
2874 refX="0"
2875 id="Arrow1Mend-2"
2876 style="overflow:visible">
2877 <path
2878 id="path5061-36"
2879 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2880 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2881 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
2882 </marker>
2883 <inkscape:perspective
2884 id="perspective8527"
2885 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2886 inkscape:vp_z="1 : 0.5 : 1"
2887 inkscape:vp_y="0 : 1000 : 0"
2888 inkscape:vp_x="0 : 0.5 : 1"
2889 sodipodi:type="inkscape:persp3d" />
2890 <marker
2891 inkscape:stockid="Arrow1Send"
2892 orient="auto"
2893 refY="0"
2894 refX="0"
2895 id="Arrow1Send-9-1"
2896 style="overflow:visible">
2897 <path
2898 id="path5065-39-5"
2899 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2900 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2901 transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
2902 </marker>
2903 <marker
2904 inkscape:stockid="Arrow1Mend"
2905 orient="auto"
2906 refY="0"
2907 refX="0"
2908 id="Arrow1Mend-35"
2909 style="overflow:visible">
2910 <path
2911 id="path5061-7"
2912 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2913 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2914 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
2915 </marker>
2916 <inkscape:perspective
2917 id="perspective8561"
2918 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2919 inkscape:vp_z="1 : 0.5 : 1"
2920 inkscape:vp_y="0 : 1000 : 0"
2921 inkscape:vp_x="0 : 0.5 : 1"
2922 sodipodi:type="inkscape:persp3d" />
2923 <marker
2924 inkscape:stockid="Arrow1Send"
2925 orient="auto"
2926 refY="0"
2927 refX="0"
2928 id="Arrow1Send-9-2"
2929 style="overflow:visible">
2930 <path
2931 id="path5065-39-2"
2932 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2933 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2934 transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
2935 </marker>
2936 <marker
2937 inkscape:stockid="Arrow1Mend"
2938 orient="auto"
2939 refY="0"
2940 refX="0"
2941 id="Arrow1Mend-5"
2942 style="overflow:visible">
2943 <path
2944 id="path5061-6"
2945 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2946 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2947 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
2948 </marker>
2949 </defs>
2950 <sodipodi:namedview
2951 id="base"
2952 pagecolor="#ffffff"
2953 bordercolor="#666666"
2954 borderopacity="1.0"
2955 inkscape:pageopacity="0.0"
2956 inkscape:pageshadow="2"
2957 inkscape:zoom="0.90509668"
2958 inkscape:cx="256.73404"
2959 inkscape:cy="303.39911"
2960 inkscape:document-units="px"
2961 inkscape:current-layer="layer1"
2962 showgrid="false"
2963 showguides="true"
2964 inkscape:guide-bbox="true"
2965 inkscape:window-width="1440"
2966 inkscape:window-height="825"
2967 inkscape:window-x="0"
2968 inkscape:window-y="24"
2969 inkscape:window-maximized="1"
2970 inkscape:snap-nodes="true" />
2971 <metadata
2972 id="metadata7">
2973 <rdf:RDF>
2974 <cc:Work
2975 rdf:about="">
2976 <dc:format>image/svg+xml</dc:format>
2977 <dc:type
2978 rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
2979 <dc:title />
2980 </cc:Work>
2981 </rdf:RDF>
2982 </metadata>
2983 <g
2984 inkscape:label="Layer 1"
2985 inkscape:groupmode="layer"
2986 id="layer1">
2987 <flowRoot
2988 xml:space="preserve"
2989 id="flowRoot3679"
2990 style="font-size:40px;font-style:normal;font-weight:normal;writing-mode:tb-rl;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"><flowRegion
2991 id="flowRegion3681"><rect
2992 id="rect3683"
2993 width="46.42857"
2994 height="117.85714"
2995 x="480.71429"
2996 y="490.93362"
2997 style="writing-mode:tb-rl" /></flowRegion><flowPara
2998 id="flowPara3685">PUBsfasdfasdf</flowPara></flowRoot> <rect
2999 style="fill:#0000ff;fill-opacity:1"
3000 id="rect4229"
3001 width="715.18799"
3002 height="175.45087"
3003 x="8.1421356"
3004 y="565.46863"
3005 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
3006 inkscape:export-xdpi="90"
3007 inkscape:export-ydpi="90" />
3008 <text
3009 xml:space="preserve"
3010 style="font-size:40px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
3011 x="197.70563"
3012 y="711.97626"
3013 id="text4231"
3014 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
3015 inkscape:export-xdpi="90"
3016 inkscape:export-ydpi="90"><tspan
3017 sodipodi:role="line"
3018 id="tspan4233"
3019 x="197.70563"
3020 y="711.97626"
3021 style="font-weight:bold">IPython Kernel</tspan></text>
3022 <rect
3023 style="fill:#241c1c;fill-opacity:1"
3024 id="rect4235"
3025 width="151.52289"
3026 height="92.934036"
3027 x="43.015251"
3028 y="565.53973"
3029 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
3030 inkscape:export-xdpi="90"
3031 inkscape:export-ydpi="90" />
3032 <rect
3033 style="fill:#008000;fill-opacity:1"
3034 id="rect4235-2"
3035 width="151.52289"
3036 height="92.934036"
3037 x="285.4671"
3038 y="565.53973"
3039 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
3040 inkscape:export-xdpi="90"
3041 inkscape:export-ydpi="90" />
3042 <rect
3043 style="fill:#ff0000;fill-opacity:1"
3044 id="rect4235-8"
3045 width="151.52289"
3046 height="92.934036"
3047 x="530.37073"
3048 y="565.53973"
3049 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
3050 inkscape:export-xdpi="90"
3051 inkscape:export-ydpi="90" />
3052 <text
3053 xml:space="preserve"
3054 style="font-size:40px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
3055 x="75.632164"
3056 y="624.2724"
3057 id="text4268"
3058 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
3059 inkscape:export-xdpi="90"
3060 inkscape:export-ydpi="90"><tspan
3061 sodipodi:role="line"
3062 id="tspan4270"
3063 x="75.632164"
3064 y="624.2724"
3065 style="fill:#ffffff">REQ</tspan></text>
3066 <text
3067 xml:space="preserve"
3068 style="font-size:40px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
3069 x="308.98245"
3070 y="626.58685"
3071 id="text4268-9"
3072 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
3073 inkscape:export-xdpi="90"
3074 inkscape:export-ydpi="90"><tspan
3075 sodipodi:role="line"
3076 id="tspan4270-1"
3077 x="308.98245"
3078 y="626.58685"
3079 style="fill:#ffffff">XREP</tspan></text>
3080 <text
3081 xml:space="preserve"
3082 style="font-size:40px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
3083 x="565.14587"
3084 y="626.30365"
3085 id="text4268-4"
3086 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
3087 inkscape:export-xdpi="90"
3088 inkscape:export-ydpi="90"><tspan
3089 sodipodi:role="line"
3090 id="tspan4270-7"
3091 x="565.14587"
3092 y="626.30365"
3093 style="fill:#ffffff">PUB</tspan></text>
3094 <flowRoot
3095 xml:space="preserve"
3096 id="flowRoot4308"
3097 style="font-size:40px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
3098 transform="translate(84.260191,-74.726213)"
3099 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
3100 inkscape:export-xdpi="90"
3101 inkscape:export-ydpi="90"><flowRegion
3102 id="flowRegion4310"><rect
3103 id="rect4312"
3104 width="687.85077"
3105 height="287.19901"
3106 x="74.751289"
3107 y="834.16925" /></flowRegion><flowPara
3108 id="flowPara4845"
3109 style="font-weight:normal"> - Kernel raw_input</flowPara><flowPara
3110 style="font-weight:normal"
3111 id="flowPara6339"> - Requests to kernel</flowPara><flowPara
3112 style="font-weight:normal"
3113 id="flowPara4851"> - Kernel output broadcast</flowPara><flowPara
3114 style="font-weight:normal"
3115 id="flowPara12084"> - Request/Reply direction</flowPara></flowRoot> <rect
3116 style="fill:#0000ff;fill-rule:evenodd;stroke:#000000;stroke-width:0.93826735px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
3117 id="rect2816"
3118 width="336.66351"
3119 height="265.22681"
3120 x="211.68776"
3121 y="129.72862"
3122 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
3123 inkscape:export-xdpi="90"
3124 inkscape:export-ydpi="90" />
3125 <rect
3126 style="fill:#00ff00"
3127 id="rect3695"
3128 width="240"
3129 height="51.42857"
3130 x="253.54944"
3131 y="144.6738"
3132 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
3133 inkscape:export-xdpi="90"
3134 inkscape:export-ydpi="90" />
3135 <flowRoot
3136 xml:space="preserve"
3137 id="flowRoot3614"
3138 style="font-size:40px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
3139 transform="translate(170.4283,-70.442566)"
3140 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
3141 inkscape:export-xdpi="90"
3142 inkscape:export-ydpi="90"><flowRegion
3143 id="flowRegion3616"><rect
3144 id="rect3618"
3145 width="286.88333"
3146 height="82.832504"
3147 x="127.27922"
3148 y="222.01678" /></flowRegion><flowPara
3149 id="flowPara3620"
3150 style="font-size:28px;font-weight:bold">Front-end</flowPara></flowRoot> <path
3151 style="fill:#05ff00;stroke:#2af510;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none;fill-opacity:1"
3152 d="m 373.73648,243.10253 -0.11904,-45.00016"
3153 id="path3711"
3154 inkscape:connector-type="polyline"
3155 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
3156 inkscape:export-xdpi="90"
3157 inkscape:export-ydpi="90" />
3158 <rect
3159 style="fill:#00ff00;fill-opacity:1"
3160 id="rect3884"
3161 width="318.09625"
3162 height="130.85158"
3163 x="221.90559"
3164 y="244.85242"
3165 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
3166 inkscape:export-xdpi="90"
3167 inkscape:export-ydpi="90" />
3168 <text
3169 xml:space="preserve"
3170 style="font-size:40px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
3171 x="277.12085"
3172 y="287.81665"
3173 id="text3713"
3174 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
3175 inkscape:export-xdpi="90"
3176 inkscape:export-ydpi="90"><tspan
3177 sodipodi:role="line"
3178 x="277.12085"
3179 y="287.81665"
3180 id="tspan3717"
3181 style="font-size:28px;font-weight:bold">Kernel Proxy</tspan></text>
3182 <rect
3183 style="fill:#280b0b;fill-opacity:1"
3184 id="rect4859-9"
3185 width="92.172592"
3186 height="44.285713"
3187 x="435.88266"
3188 y="313.34006"
3189 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
3190 inkscape:export-xdpi="90"
3191 inkscape:export-ydpi="90" />
3192 <text
3193 xml:space="preserve"
3194 style="font-size:40px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
3195 x="454.03732"
3196 y="345.68896"
3197 id="text4861-2"
3198 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
3199 inkscape:export-xdpi="90"
3200 inkscape:export-ydpi="90"><tspan
3201 sodipodi:role="line"
3202 id="tspan4863-6"
3203 x="454.03732"
3204 y="345.68896"
3205 style="font-size:28px;fill:#ffffff">REP</tspan></text>
3206 <rect
3207 style="fill:#ff0000;fill-opacity:1"
3208 id="rect4859-9-4"
3209 width="92.172592"
3210 height="44.285713"
3211 x="334.2355"
3212 y="313.62433"
3213 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
3214 inkscape:export-xdpi="90"
3215 inkscape:export-ydpi="90" />
3216 <text
3217 xml:space="preserve"
3218 style="font-size:40px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
3219 x="351.64505"
3220 y="345.95956"
3221 id="text4861-2-8"
3222 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
3223 inkscape:export-xdpi="90"
3224 inkscape:export-ydpi="90"><tspan
3225 sodipodi:role="line"
3226 id="tspan4863-6-9"
3227 x="351.64505"
3228 y="345.95956"
3229 style="font-size:28px;fill:#ffffff">SUB</tspan></text>
3230 <rect
3231 style="fill:#008000;fill-opacity:1"
3232 id="rect4859-9-3"
3233 width="92.172592"
3234 height="44.285713"
3235 x="232.23549"
3236 y="313.62433"
3237 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
3238 inkscape:export-xdpi="90"
3239 inkscape:export-ydpi="90" />
3240 <text
3241 xml:space="preserve"
3242 style="font-size:40px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
3243 x="239.47998"
3244 y="344.35312"
3245 id="text4861-2-2"
3246 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
3247 inkscape:export-xdpi="90"
3248 inkscape:export-ydpi="90"><tspan
3249 sodipodi:role="line"
3250 id="tspan4863-6-97"
3251 x="239.47998"
3252 y="344.35312"
3253 style="font-size:28px;fill:#ffffff">XREQ</tspan></text>
3254 <rect
3255 style="fill:#0000ff;fill-rule:evenodd;stroke:#000000;stroke-width:0.80252945px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
3256 id="rect2816-3"
3257 width="246.17426"
3258 height="265.36255"
3259 x="604.09601"
3260 y="129.66075" />
3261 <rect
3262 style="fill:#00ff00"
3263 id="rect3695-4"
3264 width="224.375"
3265 height="51.42857"
3266 x="616.02551"
3267 y="144.67378" />
3268 <flowRoot
3269 xml:space="preserve"
3270 id="flowRoot3614-1"
3271 style="font-size:40px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
3272 transform="translate(522.42786,-70.442567)"><flowRegion
3273 id="flowRegion3616-8"><rect
3274 id="rect3618-9"
3275 width="286.88333"
3276 height="82.832504"
3277 x="127.27922"
3278 y="222.01678" /></flowRegion><flowPara
3279 id="flowPara3620-0"
3280 style="font-size:28px;font-weight:bold">Front-end </flowPara></flowRoot> <path
3281 style="fill:none;stroke:#06ff00;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3282 d="m 728.27256,243.10253 -0.1191,-45.00015"
3283 id="path3711-4"
3284 inkscape:connector-type="polyline" />
3285 <rect
3286 style="fill:#00ff00;fill-opacity:1"
3287 id="rect3884-4"
3288 width="225.90875"
3289 height="130.85158"
3290 x="614.38171"
3291 y="244.85243" />
3292 <text
3293 xml:space="preserve"
3294 style="font-size:40px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
3295 x="621.59692"
3296 y="287.81665"
3297 id="text3713-9"><tspan
3298 sodipodi:role="line"
3299 x="621.59692"
3300 y="287.81665"
3301 id="tspan3717-9"
3302 style="font-size:28px;font-weight:bold">Kernel Proxy</tspan></text>
3303 <rect
3304 style="fill:#ff0000;fill-opacity:1"
3305 id="rect4859-9-4-5"
3306 width="92.172592"
3307 height="44.285713"
3308 x="726.71155"
3309 y="313.62433" />
3310 <text
3311 xml:space="preserve"
3312 style="font-size:40px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
3313 x="744.12109"
3314 y="345.95956"
3315 id="text4861-2-8-0"><tspan
3316 sodipodi:role="line"
3317 id="tspan4863-6-9-1"
3318 x="744.12109"
3319 y="345.95956"
3320 style="font-size:28px;fill:#ffffff">SUB</tspan></text>
3321 <rect
3322 style="fill:#008000;fill-opacity:1"
3323 id="rect4859-9-3-5"
3324 width="92.172592"
3325 height="44.285713"
3326 x="624.71161"
3327 y="313.62433" />
3328 <text
3329 xml:space="preserve"
3330 style="font-size:40px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
3331 x="631.95612"
3332 y="344.35312"
3333 id="text4861-2-2-8"><tspan
3334 sodipodi:role="line"
3335 id="tspan4863-6-97-6"
3336 x="631.95612"
3337 y="344.35312"
3338 style="font-size:28px;fill:#ffffff">XREQ</tspan></text>
3339 <rect
3340 style="fill:#0000ff;fill-rule:evenodd;stroke:#000000;stroke-width:0.80252945px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
3341 id="rect2816-3-6"
3342 width="246.17426"
3343 height="265.36255"
3344 x="-86.899628"
3345 y="129.66077" />
3346 <rect
3347 style="fill:#00ff00"
3348 id="rect3695-4-1"
3349 width="224.375"
3350 height="51.42857"
3351 x="-74.970123"
3352 y="144.6738" />
3353 <flowRoot
3354 xml:space="preserve"
3355 id="flowRoot3614-1-3"
3356 style="font-size:40px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
3357 transform="translate(-167.37833,-70.442569)"><flowRegion
3358 id="flowRegion3616-8-8"><rect
3359 id="rect3618-9-6"
3360 width="286.88333"
3361 height="82.832504"
3362 x="127.27922"
3363 y="222.01678" /></flowRegion><flowPara
3364 id="flowPara3620-0-0"
3365 style="font-size:28px;font-weight:bold">Front-end</flowPara></flowRoot> <path
3366 style="fill:none;stroke:#04ff00;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
3367 d="m 37.276897,243.10252 -0.11904,-45.00015"
3368 id="path3711-4-8"
3369 inkscape:connector-type="polyline"
3370 sodipodi:nodetypes="cc" />
3371 <rect
3372 style="fill:#00ff00;fill-opacity:1"
3373 id="rect3884-4-1"
3374 width="225.90875"
3375 height="130.85158"
3376 x="-76.613922"
3377 y="244.85245" />
3378 <text
3379 xml:space="preserve"
3380 style="font-size:40px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
3381 x="-69.398712"
3382 y="287.81665"
3383 id="text3713-9-4"><tspan
3384 sodipodi:role="line"
3385 x="-69.398712"
3386 y="287.81665"
3387 id="tspan3717-9-0"
3388 style="font-size:28px;font-weight:bold">Kernel Proxy</tspan></text>
3389 <rect
3390 style="fill:#ff0000;fill-opacity:1"
3391 id="rect4859-9-4-5-6"
3392 width="92.172592"
3393 height="44.285713"
3394 x="35.715977"
3395 y="313.62433" />
3396 <text
3397 xml:space="preserve"
3398 style="font-size:40px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
3399 x="53.125515"
3400 y="345.95956"
3401 id="text4861-2-8-0-0"><tspan
3402 sodipodi:role="line"
3403 id="tspan4863-6-9-1-7"
3404 x="53.125515"
3405 y="345.95956"
3406 style="font-size:28px;fill:#ffffff">SUB</tspan></text>
3407 <rect
3408 style="fill:#008000;fill-opacity:1"
3409 id="rect4859-9-3-5-8"
3410 width="92.172592"
3411 height="44.285713"
3412 x="-66.284027"
3413 y="313.62433" />
3414 <text
3415 xml:space="preserve"
3416 style="font-size:40px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
3417 x="-59.039528"
3418 y="344.35312"
3419 id="text4861-2-2-8-7"><tspan
3420 sodipodi:role="line"
3421 id="tspan4863-6-97-6-1"
3422 x="-59.039528"
3423 y="344.35312"
3424 style="font-size:28px;fill:#ffffff">XREQ</tspan></text>
3425 <path
3426 style="fill:#ff0000;stroke:#ff0000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-mid:url(#Arrow1Mstart)"
3427 d="m 123.8316,357.91004 355.72174,187.40953 50.81739,26.77279"
3428 id="path10788"
3429 inkscape:connector-type="polyline"
3430 inkscape:connection-start="#rect4859-9-4-5-6"
3431 inkscape:connection-end="#rect4235-8"
3432 sodipodi:nodetypes="ccc"
3433 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
3434 inkscape:export-xdpi="90"
3435 inkscape:export-ydpi="90" />
3436 <path
3437 style="fill:#d40000;fill-opacity:1;stroke:#ff0000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-mid:url(#Arrow1Mstart)"
3438 d="M 759.43823,357.91004 696.80284,461.72488 634.16746,565.53973"
3439 id="path10790"
3440 inkscape:connector-type="polyline"
3441 inkscape:connection-start="#rect4859-9-4-5"
3442 inkscape:connection-end="#rect4235-8"
3443 sodipodi:nodetypes="ccc"
3444 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
3445 inkscape:export-xdpi="90"
3446 inkscape:export-ydpi="90" />
3447 <path
3448 style="fill:none;stroke:#278900;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-mid:url(#Arrow1Mstart)"
3449 d="M 10.376699,357.91004 297.06778,565.53973"
3450 id="path10792"
3451 inkscape:connector-type="polyline"
3452 inkscape:connection-start="#rect4859-9-3-5-8"
3453 inkscape:connection-end="#rect4235-2"
3454 sodipodi:nodetypes="ccc"
3455 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
3456 inkscape:export-xdpi="90"
3457 inkscape:export-ydpi="90" />
3458 <path
3459 style="fill:#008000;fill-opacity:1;stroke:#238800;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-mid:url(#Arrow1Mstart)"
3460 d="M 645.98339,357.91004 413.30206,565.53973"
3461 id="path10794"
3462 inkscape:connector-type="polyline"
3463 inkscape:connection-start="#rect4859-9-3-5"
3464 inkscape:connection-end="#rect4235-2"
3465 sodipodi:nodetypes="ccc"
3466 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
3467 inkscape:export-xdpi="90"
3468 inkscape:export-ydpi="90" />
3469 <path
3470 style="fill:none;stroke:#ff0000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-mid:url(#Arrow1Mstart)"
3471 d="m 398.42235,357.91004 127.29423,155.72226 42.43141,51.90743"
3472 id="path10796"
3473 inkscape:connector-type="polyline"
3474 inkscape:connection-start="#rect4859-9-4"
3475 inkscape:connection-end="#rect4235-8"
3476 sodipodi:nodetypes="ccc"
3477 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
3478 inkscape:export-xdpi="90"
3479 inkscape:export-ydpi="90" />
3480 <path
3481 style="fill:#280b0b;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-mid:none"
3482 d="M 179.80746,565.53973 452.88606,357.62577"
3483 id="path10800"
3484 inkscape:connector-type="polyline"
3485 inkscape:connection-start="#rect4235"
3486 inkscape:connection-end="#rect4859-9"
3487 sodipodi:nodetypes="ccc"
3488 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
3489 inkscape:export-xdpi="90"
3490 inkscape:export-ydpi="90" />
3491 <path
3492 style="fill:#ff0000;stroke:#449900;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-mid:url(#Arrow1Mend)"
3493 d="M 347.28257,565.53973 284.96744,357.91004"
3494 id="path10802"
3495 inkscape:connector-type="polyline"
3496 inkscape:connection-start="#rect4235-2"
3497 inkscape:connection-end="#rect4859-9-3"
3498 sodipodi:nodetypes="ccc"
3499 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
3500 inkscape:export-xdpi="90"
3501 inkscape:export-ydpi="90" />
3502 <rect
3503 style="fill:#000000;fill-opacity:1;stroke:none"
3504 id="rect11963"
3505 width="218.76115"
3506 height="125.95339"
3507 x="274.21359"
3508 y="-20.699326" />
3509 <rect
3510 inkscape:label="#rect2160"
3511 ry="1.1637948"
3512 rx="1.1637946"
3513 y="-8.9381561"
3514 x="289.54568"
3515 height="102.87033"
3516 width="187.36421"
3517 id="rect4783"
3518 style="fill:url(#linearGradient6282);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:0.46551785;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
3519 <g
3520 style="stroke:#570f0f;stroke-opacity:1"
3521 id="q"
3522 inkscape:label="#g4203"
3523 transform="matrix(0.23275892,0,0,0.23275892,289.14995,-44.778246)">
3524 <rect
3525 inkscape:label="#rect2160"
3526 ry="5"
3527 rx="5"
3528 y="261.68634"
3529 x="10.849505"
3530 height="70.532257"
3531 width="67.956474"
3532 id="Q"
3533 style="fill:url(#linearGradient6263);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
3534 <text
3535 sodipodi:linespacing="100%"
3536 id="text3142"
3537 y="318.48373"
3538 x="19.733997"
3539 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
3540 xml:space="preserve"><tspan
3541 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
3542 y="318.48373"
3543 x="19.733997"
3544 id="tspan3144"
3545 sodipodi:role="line">Q</tspan></text>
3546 </g>
3547 <g
3548 style="stroke:#570f0f;stroke-opacity:1"
3549 id="w"
3550 transform="matrix(0.23275892,0,0,0.23275892,289.12382,-44.778246)"
3551 inkscape:label="#g4208">
3552 <rect
3553 style="fill:url(#linearGradient6265);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3554 id="rect4115"
3555 width="67.956474"
3556 height="70.532257"
3557 x="89.641403"
3558 y="261.68634"
3559 rx="5"
3560 ry="5"
3561 inkscape:label="#rect2160" />
3562 <text
3563 xml:space="preserve"
3564 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
3565 x="93.385269"
3566 y="319.85873"
3567 id="text4117"
3568 sodipodi:linespacing="100%"><tspan
3569 sodipodi:role="line"
3570 id="tspan4119"
3571 x="93.385269"
3572 y="319.85873"
3573 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">W</tspan></text>
3574 </g>
3575 <g
3576 style="stroke:#570f0f;stroke-opacity:1"
3577 id="e"
3578 transform="matrix(0.23275892,0,0,0.23275892,289.0977,-44.778246)"
3579 inkscape:label="#g4213">
3580 <rect
3581 style="fill:url(#linearGradient6267);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3582 id="rect4123"
3583 width="67.956474"
3584 height="70.532257"
3585 x="168.4333"
3586 y="261.68634"
3587 rx="5"
3588 ry="5"
3589 inkscape:label="#rect2160" />
3590 <text
3591 xml:space="preserve"
3592 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
3593 x="180.25529"
3594 y="319.8587"
3595 id="text4125"
3596 sodipodi:linespacing="100%"><tspan
3597 sodipodi:role="line"
3598 id="tspan4127"
3599 x="180.25529"
3600 y="319.8587"
3601 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">E</tspan></text>
3602 </g>
3603 <g
3604 style="stroke:#570f0f;stroke-opacity:1"
3605 id="r"
3606 transform="matrix(0.23275892,0,0,0.23275892,288.83645,-44.778246)"
3607 inkscape:label="#g4218">
3608 <rect
3609 style="fill:url(#linearGradient6269);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3610 id="rect4131"
3611 width="67.956474"
3612 height="70.532257"
3613 x="248.23535"
3614 y="261.68634"
3615 rx="5"
3616 ry="5"
3617 inkscape:label="#rect2160" />
3618 <text
3619 xml:space="preserve"
3620 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
3621 x="256.99484"
3622 y="319.8587"
3623 id="text4133"
3624 sodipodi:linespacing="100%"><tspan
3625 sodipodi:role="line"
3626 id="tspan4135"
3627 x="256.99484"
3628 y="319.8587"
3629 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">R</tspan></text>
3630 </g>
3631 <g
3632 style="stroke:#570f0f;stroke-opacity:1"
3633 id="t"
3634 transform="matrix(0.23275892,0,0,0.23275892,289.51569,-44.778246)"
3635 inkscape:label="#g4223">
3636 <rect
3637 inkscape:label="#rect2160"
3638 ry="5"
3639 rx="5"
3640 y="261.68634"
3641 x="323.9968"
3642 height="70.532257"
3643 width="67.956474"
3644 id="rect4139"
3645 style="fill:url(#linearGradient6271);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
3646 <text
3647 sodipodi:linespacing="100%"
3648 id="text4141"
3649 y="319.8587"
3650 x="338.31879"
3651 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
3652 xml:space="preserve"><tspan
3653 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
3654 y="319.8587"
3655 x="338.31879"
3656 id="tspan4143"
3657 sodipodi:role="line">T</tspan></text>
3658 </g>
3659 <g
3660 style="stroke:#570f0f;stroke-opacity:1"
3661 id="y"
3662 transform="matrix(0.23275892,0,0,0.23275892,288.7842,-44.778246)"
3663 inkscape:label="#g4228">
3664 <rect
3665 style="fill:url(#linearGradient6273);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3666 id="rect4147"
3667 width="67.956474"
3668 height="70.532257"
3669 x="405.81915"
3670 y="261.68634"
3671 rx="5"
3672 ry="5"
3673 inkscape:label="#rect2160" />
3674 <text
3675 xml:space="preserve"
3676 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
3677 x="418.60989"
3678 y="319.8587"
3679 id="text4149"
3680 sodipodi:linespacing="100%"><tspan
3681 sodipodi:role="line"
3682 id="tspan4151"
3683 x="418.60989"
3684 y="319.8587"
3685 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">Y</tspan></text>
3686 </g>
3687 <g
3688 style="stroke:#570f0f;stroke-opacity:1"
3689 id="u"
3690 transform="matrix(0.23275892,0,0,0.23275892,288.52295,-44.778246)"
3691 inkscape:label="#g4233">
3692 <rect
3693 inkscape:label="#rect2160"
3694 ry="5"
3695 rx="5"
3696 y="261.68634"
3697 x="485.62122"
3698 height="70.532257"
3699 width="67.956474"
3700 id="rect4155"
3701 style="fill:url(#linearGradient6275);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
3702 <text
3703 sodipodi:linespacing="100%"
3704 id="text4157"
3705 y="319.46808"
3706 x="496.55258"
3707 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
3708 xml:space="preserve"><tspan
3709 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
3710 y="319.46808"
3711 x="496.55258"
3712 id="tspan4159"
3713 sodipodi:role="line">U</tspan></text>
3714 </g>
3715 <g
3716 style="stroke:#570f0f;stroke-opacity:1"
3717 id="i"
3718 transform="matrix(0.23275892,0,0,0.23275892,288.49683,-44.778246)"
3719 inkscape:label="#g4238">
3720 <rect
3721 style="fill:url(#linearGradient6277);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3722 id="rect4163"
3723 width="67.956474"
3724 height="70.532257"
3725 x="564.41309"
3726 y="261.68634"
3727 rx="5"
3728 ry="5"
3729 inkscape:label="#rect2160" />
3730 <text
3731 xml:space="preserve"
3732 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
3733 x="589.3913"
3734 y="319.8587"
3735 id="text4165"
3736 sodipodi:linespacing="100%"><tspan
3737 sodipodi:role="line"
3738 id="tspan4167"
3739 x="589.3913"
3740 y="319.8587"
3741 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">I</tspan></text>
3742 </g>
3743 <g
3744 style="stroke:#570f0f;stroke-opacity:1"
3745 id="o"
3746 transform="matrix(0.23275892,0,0,0.23275892,288.4707,-44.778246)"
3747 inkscape:label="#g4243">
3748 <rect
3749 inkscape:label="#rect2160"
3750 ry="5"
3751 rx="5"
3752 y="261.68634"
3753 x="643.20496"
3754 height="70.532257"
3755 width="67.956474"
3756 id="rect4171"
3757 style="fill:url(#linearGradient6279);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
3758 <text
3759 sodipodi:linespacing="100%"
3760 id="text4173"
3761 y="319.87433"
3762 x="652.18317"
3763 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
3764 xml:space="preserve"><tspan
3765 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
3766 y="319.87433"
3767 x="652.18317"
3768 id="tspan4175"
3769 sodipodi:role="line">O</tspan></text>
3770 </g>
3771 <g
3772 style="stroke:#570f0f;stroke-opacity:1"
3773 id="p"
3774 transform="matrix(0.23275892,0,0,0.23275892,289.14994,-44.778246)"
3775 inkscape:label="#g4248">
3776 <rect
3777 style="fill:url(#linearGradient6281);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3778 id="rect4179"
3779 width="67.956474"
3780 height="70.532257"
3781 x="718.96637"
3782 y="261.68634"
3783 rx="5"
3784 ry="5"
3785 inkscape:label="#rect2160" />
3786 <text
3787 xml:space="preserve"
3788 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
3789 x="730.52271"
3790 y="319.8587"
3791 id="text4181"
3792 sodipodi:linespacing="100%"><tspan
3793 sodipodi:role="line"
3794 id="tspan4183"
3795 x="730.52271"
3796 y="319.8587"
3797 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">P</tspan></text>
3798 </g>
3799 <g
3800 style="stroke:#570f0f;stroke-opacity:1"
3801 id="a"
3802 inkscape:label="#g4358"
3803 transform="matrix(0.23275892,0,0,0.23275892,289.14995,-44.778246)">
3804 <rect
3805 style="fill:url(#linearGradient6283);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3806 id="rect4273"
3807 width="67.956474"
3808 height="70.532257"
3809 x="10.849505"
3810 y="347.54932"
3811 rx="5"
3812 ry="5"
3813 inkscape:label="#rect2160" />
3814 <text
3815 xml:space="preserve"
3816 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
3817 x="23.483994"
3818 y="405.72168"
3819 id="text4275"
3820 sodipodi:linespacing="100%"><tspan
3821 sodipodi:role="line"
3822 id="tspan4277"
3823 x="23.483994"
3824 y="405.72168"
3825 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">A</tspan></text>
3826 </g>
3827 <g
3828 style="stroke:#570f0f;stroke-opacity:1"
3829 id="s"
3830 transform="matrix(0.23275892,0,0,0.23275892,289.12056,-44.778246)"
3831 inkscape:label="#g4363">
3832 <rect
3833 inkscape:label="#rect2160"
3834 ry="5"
3835 rx="5"
3836 y="347.54932"
3837 x="89.641403"
3838 height="70.532257"
3839 width="67.956474"
3840 id="rect4286"
3841 style="fill:url(#linearGradient6285);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
3842 <text
3843 sodipodi:linespacing="100%"
3844 id="text4288"
3845 y="405.72168"
3846 x="102.51027"
3847 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
3848 xml:space="preserve"><tspan
3849 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
3850 y="405.72168"
3851 x="102.51027"
3852 id="tspan4290"
3853 sodipodi:role="line">S</tspan></text>
3854 </g>
3855 <g
3856 style="stroke:#570f0f;stroke-opacity:1"
3857 id="d"
3858 transform="matrix(0.23275892,0,0,0.23275892,289.09117,-44.778246)"
3859 inkscape:label="#g4368">
3860 <rect
3861 style="fill:url(#linearGradient6287);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3862 id="rect4294"
3863 width="67.956474"
3864 height="70.532257"
3865 x="168.4333"
3866 y="347.54932"
3867 rx="5"
3868 ry="5"
3869 inkscape:label="#rect2160" />
3870 <text
3871 xml:space="preserve"
3872 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
3873 x="178.53654"
3874 y="405.72168"
3875 id="text4296"
3876 sodipodi:linespacing="100%"><tspan
3877 sodipodi:role="line"
3878 id="tspan4298"
3879 x="178.53654"
3880 y="405.72168"
3881 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">D</tspan></text>
3882 </g>
3883 <g
3884 style="stroke:#570f0f;stroke-opacity:1"
3885 id="f"
3886 transform="matrix(0.23275892,0,0,0.23275892,288.35641,-44.778246)"
3887 inkscape:label="#g4373">
3888 <rect
3889 inkscape:label="#rect2160"
3890 ry="5"
3891 rx="5"
3892 y="347.54932"
3893 x="250.25566"
3894 height="70.532257"
3895 width="67.956474"
3896 id="rect4302"
3897 style="fill:url(#linearGradient6289);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
3898 <text
3899 sodipodi:linespacing="100%"
3900 id="text4304"
3901 y="405.72168"
3902 x="263.53076"
3903 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
3904 xml:space="preserve"><tspan
3905 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
3906 y="405.72168"
3907 x="263.53076"
3908 id="tspan4306"
3909 sodipodi:role="line">F</tspan></text>
3910 </g>
3911 <g
3912 style="stroke:#570f0f;stroke-opacity:1"
3913 id="g"
3914 transform="matrix(0.23275892,0,0,0.23275892,288.56214,-44.778246)"
3915 inkscape:label="#g4378">
3916 <rect
3917 style="fill:url(#linearGradient6291);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3918 id="rect4310"
3919 width="67.956474"
3920 height="70.532257"
3921 x="328.03741"
3922 y="347.54932"
3923 rx="5"
3924 ry="5"
3925 inkscape:label="#rect2160" />
3926 <text
3927 xml:space="preserve"
3928 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
3929 x="337.42191"
3930 y="405.72168"
3931 id="text4312"
3932 sodipodi:linespacing="100%"><tspan
3933 sodipodi:role="line"
3934 id="tspan4314"
3935 x="337.42191"
3936 y="405.72168"
3937 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">G</tspan></text>
3938 </g>
3939 <g
3940 style="stroke:#570f0f;stroke-opacity:1"
3941 id="h"
3942 transform="matrix(0.23275892,0,0,0.23275892,289.003,-44.778246)"
3943 inkscape:label="#g4383">
3944 <rect
3945 inkscape:label="#rect2160"
3946 ry="5"
3947 rx="5"
3948 y="347.54932"
3949 x="404.80902"
3950 height="70.532257"
3951 width="67.956474"
3952 id="rect4318"
3953 style="fill:url(#linearGradient6293);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
3954 <text
3955 sodipodi:linespacing="100%"
3956 id="text4320"
3957 y="405.72168"
3958 x="415.69351"
3959 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
3960 xml:space="preserve"><tspan
3961 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
3962 y="405.72168"
3963 x="415.69351"
3964 id="tspan4322"
3965 sodipodi:role="line">H</tspan></text>
3966 </g>
3967 <g
3968 style="stroke:#570f0f;stroke-opacity:1"
3969 id="j"
3970 transform="matrix(0.23275892,0,0,0.23275892,288.03312,-44.778246)"
3971 inkscape:label="#g4388">
3972 <rect
3973 style="fill:url(#linearGradient6295);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
3974 id="rect4326"
3975 width="67.956474"
3976 height="70.532257"
3977 x="487.64154"
3978 y="347.54932"
3979 rx="5"
3980 ry="5"
3981 inkscape:label="#rect2160" />
3982 <text
3983 xml:space="preserve"
3984 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
3985 x="507.24478"
3986 y="405.33105"
3987 id="text4328"
3988 sodipodi:linespacing="100%"><tspan
3989 sodipodi:role="line"
3990 id="tspan4330"
3991 x="507.24478"
3992 y="405.33105"
3993 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">J</tspan></text>
3994 </g>
3995 <g
3996 style="stroke:#570f0f;stroke-opacity:1"
3997 id="k"
3998 transform="matrix(0.23275892,0,0,0.23275892,288.23886,-44.778246)"
3999 inkscape:label="#g4393">
4000 <rect
4001 inkscape:label="#rect2160"
4002 ry="5"
4003 rx="5"
4004 y="347.54932"
4005 x="565.42328"
4006 height="70.532257"
4007 width="67.956474"
4008 id="rect4334"
4009 style="fill:url(#linearGradient6297);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
4010 <text
4011 sodipodi:linespacing="100%"
4012 id="text4336"
4013 y="405.72168"
4014 x="575.77649"
4015 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4016 xml:space="preserve"><tspan
4017 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
4018 y="405.72168"
4019 x="575.77649"
4020 id="tspan4338"
4021 sodipodi:role="line">K</tspan></text>
4022 </g>
4023 <g
4024 style="stroke:#570f0f;stroke-opacity:1"
4025 id="l"
4026 transform="matrix(0.23275892,0,0,0.23275892,287.26898,-44.778246)"
4027 inkscape:label="#g4398">
4028 <rect
4029 style="fill:url(#linearGradient6299);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
4030 id="rect4342"
4031 width="67.956474"
4032 height="70.532257"
4033 x="648.2558"
4034 y="347.54932"
4035 rx="5"
4036 ry="5"
4037 inkscape:label="#rect2160" />
4038 <text
4039 xml:space="preserve"
4040 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4041 x="663.23401"
4042 y="405.72168"
4043 id="text4344"
4044 sodipodi:linespacing="100%"><tspan
4045 sodipodi:role="line"
4046 id="tspan4346"
4047 x="663.23401"
4048 y="405.72168"
4049 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">L</tspan></text>
4050 </g>
4051 <g
4052 style="stroke:#570f0f;stroke-opacity:1"
4053 id="z"
4054 inkscape:label="#g4482"
4055 transform="matrix(0.23275892,0,0,0.23275892,289.14995,-44.778246)">
4056 <rect
4057 inkscape:label="#rect2160"
4058 ry="5"
4059 rx="5"
4060 y="433.41229"
4061 x="10.849505"
4062 height="70.532257"
4063 width="67.956474"
4064 id="rect4421"
4065 style="fill:url(#linearGradient6301);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
4066 <text
4067 sodipodi:linespacing="100%"
4068 id="text4423"
4069 y="491.58466"
4070 x="25.437119"
4071 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4072 xml:space="preserve"><tspan
4073 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
4074 y="491.58466"
4075 x="25.437119"
4076 id="tspan4425"
4077 sodipodi:role="line">Z</tspan></text>
4078 </g>
4079 <g
4080 style="stroke:#570f0f;stroke-opacity:1"
4081 id="x"
4082 transform="matrix(0.23275892,0,0,0.23275892,289.14995,-44.778246)"
4083 inkscape:label="#g4515">
4084 <rect
4085 style="fill:url(#linearGradient6303);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
4086 id="rect4434"
4087 width="67.956474"
4088 height="70.532257"
4089 x="89.641403"
4090 y="433.41229"
4091 rx="5"
4092 ry="5"
4093 inkscape:label="#rect2160" />
4094 <text
4095 xml:space="preserve"
4096 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4097 x="102.33839"
4098 y="491.58466"
4099 id="text4436"
4100 sodipodi:linespacing="100%"><tspan
4101 sodipodi:role="line"
4102 id="tspan4438"
4103 x="102.33839"
4104 y="491.58466"
4105 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">X</tspan></text>
4106 </g>
4107 <g
4108 style="stroke:#570f0f;stroke-opacity:1"
4109 id="c"
4110 transform="matrix(0.23275892,0,0,0.23275892,289.38507,-44.778246)"
4111 inkscape:label="#g4510">
4112 <rect
4113 inkscape:label="#rect2160"
4114 ry="5"
4115 rx="5"
4116 y="433.41229"
4117 x="167.42316"
4118 height="70.532257"
4119 width="67.956474"
4120 id="rect4442"
4121 style="fill:url(#linearGradient6305);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
4122 <text
4123 sodipodi:linespacing="100%"
4124 id="text4444"
4125 y="491.58466"
4126 x="177.9639"
4127 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4128 xml:space="preserve"><tspan
4129 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
4130 y="491.58466"
4131 x="177.9639"
4132 id="tspan4446"
4133 sodipodi:role="line">C</tspan></text>
4134 </g>
4135 <g
4136 style="stroke:#570f0f;stroke-opacity:1"
4137 id="v"
4138 transform="matrix(0.23275892,0,0,0.23275892,289.38507,-44.778246)"
4139 inkscape:label="#g4505">
4140 <rect
4141 style="fill:url(#linearGradient6307);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
4142 id="rect4450"
4143 width="67.956474"
4144 height="70.532257"
4145 x="246.21506"
4146 y="433.41229"
4147 rx="5"
4148 ry="5"
4149 inkscape:label="#rect2160" />
4150 <text
4151 xml:space="preserve"
4152 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4153 x="258.95892"
4154 y="491.58466"
4155 id="text4452"
4156 sodipodi:linespacing="100%"><tspan
4157 sodipodi:role="line"
4158 id="tspan4454"
4159 x="258.95892"
4160 y="491.58466"
4161 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">V</tspan></text>
4162 </g>
4163 <g
4164 style="stroke:#570f0f;stroke-opacity:1"
4165 id="b"
4166 transform="matrix(0.23275892,0,0,0.23275892,287.73921,-44.778246)"
4167 inkscape:label="#g4492">
4168 <rect
4169 inkscape:label="#rect2160"
4170 ry="5"
4171 rx="5"
4172 y="433.41229"
4173 x="332.07803"
4174 height="70.532257"
4175 width="67.956474"
4176 id="rect4458"
4177 style="fill:url(#linearGradient6309);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
4178 <text
4179 sodipodi:linespacing="100%"
4180 id="text4460"
4181 y="491.58466"
4182 x="344.0719"
4183 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4184 xml:space="preserve"><tspan
4185 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
4186 y="491.58466"
4187 x="344.0719"
4188 id="tspan4462"
4189 sodipodi:role="line">B</tspan></text>
4190 </g>
4191 <g
4192 style="stroke:#570f0f;stroke-opacity:1"
4193 id="n"
4194 transform="matrix(0.23275892,0,0,0.23275892,287.03385,-44.778246)"
4195 inkscape:label="#g4487">
4196 <rect
4197 style="fill:url(#linearGradient6311);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
4198 id="rect4466"
4199 width="67.956474"
4200 height="70.532257"
4201 x="413.90039"
4202 y="433.41229"
4203 rx="5"
4204 ry="5"
4205 inkscape:label="#rect2160" />
4206 <text
4207 xml:space="preserve"
4208 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4209 x="424.95676"
4210 y="491.58466"
4211 id="text4468"
4212 sodipodi:linespacing="100%"><tspan
4213 sodipodi:role="line"
4214 id="tspan4470"
4215 x="424.95676"
4216 y="491.58466"
4217 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">N</tspan></text>
4218 </g>
4219 <g
4220 style="stroke:#570f0f;stroke-opacity:1"
4221 id="m"
4222 inkscape:label="#g5775"
4223 transform="matrix(0.23275892,0,0,0.23275892,289.14995,-44.778246)">
4224 <rect
4225 inkscape:label="#rect2160"
4226 ry="5"
4227 rx="5"
4228 y="433.41229"
4229 x="483.60089"
4230 height="70.532257"
4231 width="67.956474"
4232 id="rect4474"
4233 style="fill:url(#linearGradient6313);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
4234 <text
4235 sodipodi:linespacing="100%"
4236 id="text4476"
4237 y="491.58466"
4238 x="490.96976"
4239 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4240 xml:space="preserve"><tspan
4241 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
4242 y="491.58466"
4243 x="490.96976"
4244 id="tspan4478"
4245 sodipodi:role="line">M</tspan></text>
4246 </g>
4247 <rect
4248 style="fill:url(#linearGradient6175);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:0.46551785;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
4249 id="rect4497"
4250 width="88.60791"
4251 height="16.417011"
4252 x="328.11716"
4253 y="75.852585"
4254 rx="1.1637946"
4255 ry="1.1637946"
4256 inkscape:label="#rect2160" />
4257 <g
4258 style="stroke:#570f0f;stroke-opacity:1"
4259 id="1"
4260 inkscape:label="#g4707"
4261 transform="matrix(0.23275892,0,0,0.23275892,289.14995,-44.778246)">
4262 <rect
4263 style="fill:url(#linearGradient6317);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
4264 id="rect4618"
4265 width="67.956474"
4266 height="70.532257"
4267 x="10.849505"
4268 y="177.40062"
4269 rx="5"
4270 ry="5"
4271 inkscape:label="#rect2160" />
4272 <text
4273 xml:space="preserve"
4274 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4275 x="29.421494"
4276 y="235.66675"
4277 id="text4620"
4278 sodipodi:linespacing="100%"><tspan
4279 sodipodi:role="line"
4280 id="tspan4622"
4281 x="29.421494"
4282 y="235.66675"
4283 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">1</tspan></text>
4284 </g>
4285 <g
4286 style="stroke:#570f0f;stroke-opacity:1"
4287 id="2"
4288 transform="matrix(0.23275892,0,0,0.23275892,289.50094,-44.778246)"
4289 inkscape:label="#g4712">
4290 <rect
4291 inkscape:label="#rect2160"
4292 ry="5"
4293 rx="5"
4294 y="177.40062"
4295 x="87.992363"
4296 height="70.532257"
4297 width="67.956474"
4298 id="rect4631"
4299 style="fill:url(#linearGradient6319);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
4300 <text
4301 sodipodi:linespacing="100%"
4302 id="text4633"
4303 y="235.66675"
4304 x="104.92372"
4305 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4306 xml:space="preserve"><tspan
4307 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
4308 y="235.66675"
4309 x="104.92372"
4310 id="tspan4635"
4311 sodipodi:role="line">2</tspan></text>
4312 </g>
4313 <g
4314 style="stroke:#570f0f;stroke-opacity:1"
4315 id="3"
4316 transform="matrix(0.23275892,0,0,0.23275892,288.85438,-44.778246)"
4317 inkscape:label="#g4717">
4318 <rect
4319 inkscape:label="#rect2160"
4320 ry="5"
4321 rx="5"
4322 y="177.40062"
4323 x="169.42093"
4324 height="70.532257"
4325 width="67.956474"
4326 id="rect4643"
4327 style="fill:url(#linearGradient6321);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
4328 <text
4329 sodipodi:linespacing="100%"
4330 id="text4645"
4331 y="235.2605"
4332 x="185.71167"
4333 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4334 xml:space="preserve"><tspan
4335 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
4336 y="235.2605"
4337 x="185.71167"
4338 id="tspan4647"
4339 sodipodi:role="line">3</tspan></text>
4340 </g>
4341 <g
4342 style="stroke:#570f0f;stroke-opacity:1"
4343 id="4"
4344 transform="matrix(0.23275892,0,0,0.23275892,289.53789,-44.778246)"
4345 inkscape:label="#g4722">
4346 <rect
4347 style="fill:url(#linearGradient6323);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
4348 id="rect4651"
4349 width="67.956474"
4350 height="70.532257"
4351 x="245.13521"
4352 y="177.40062"
4353 rx="5"
4354 ry="5"
4355 inkscape:label="#rect2160" />
4356 <text
4357 xml:space="preserve"
4358 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4359 x="262.45718"
4360 y="235.573"
4361 id="text4653"
4362 sodipodi:linespacing="100%"><tspan
4363 sodipodi:role="line"
4364 id="tspan4655"
4365 x="262.45718"
4366 y="235.573"
4367 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">4</tspan></text>
4368 </g>
4369 <g
4370 style="stroke:#570f0f;stroke-opacity:1"
4371 id="5"
4372 transform="matrix(0.23275892,0,0,0.23275892,289.88887,-44.778246)"
4373 inkscape:label="#g4727">
4374 <rect
4375 inkscape:label="#rect2160"
4376 ry="5"
4377 rx="5"
4378 y="177.40062"
4379 x="322.27808"
4380 height="70.532257"
4381 width="67.956474"
4382 id="rect4659"
4383 style="fill:url(#linearGradient6325);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
4384 <text
4385 sodipodi:linespacing="100%"
4386 id="text4661"
4387 y="234.86987"
4388 x="338.41257"
4389 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4390 xml:space="preserve"><tspan
4391 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
4392 y="234.86987"
4393 x="338.41257"
4394 id="tspan4663"
4395 sodipodi:role="line">5</tspan></text>
4396 </g>
4397 <g
4398 style="stroke:#570f0f;stroke-opacity:1"
4399 id="6"
4400 transform="matrix(0.23275892,0,0,0.23275892,290.06038,-44.778246)"
4401 inkscape:label="#g4776">
4402 <rect
4403 style="fill:url(#linearGradient6327);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
4404 id="rect4667"
4405 width="67.956474"
4406 height="70.532257"
4407 x="400.19199"
4408 y="177.40062"
4409 rx="5"
4410 ry="5"
4411 inkscape:label="#rect2160" />
4412 <text
4413 xml:space="preserve"
4414 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4415 x="416.63898"
4416 y="235.27612"
4417 id="text4669"
4418 sodipodi:linespacing="100%"><tspan
4419 sodipodi:role="line"
4420 id="tspan4671"
4421 x="416.63898"
4422 y="235.27612"
4423 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">6</tspan></text>
4424 </g>
4425 <g
4426 style="stroke:#570f0f;stroke-opacity:1"
4427 id="7"
4428 transform="matrix(0.23275892,0,0,0.23275892,289.26079,-44.778246)"
4429 inkscape:label="#g4732">
4430 <rect
4431 inkscape:label="#rect2160"
4432 ry="5"
4433 rx="5"
4434 y="177.40062"
4435 x="482.27808"
4436 height="70.532257"
4437 width="67.956474"
4438 id="rect4675"
4439 style="fill:url(#linearGradient6329);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
4440 <text
4441 sodipodi:linespacing="100%"
4442 id="text4677"
4443 y="235.27612"
4444 x="498.39694"
4445 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4446 xml:space="preserve"><tspan
4447 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
4448 y="235.27612"
4449 x="498.39694"
4450 id="tspan4679"
4451 sodipodi:role="line">7</tspan></text>
4452 </g>
4453 <g
4454 style="stroke:#570f0f;stroke-opacity:1"
4455 id="8"
4456 transform="matrix(0.23275892,0,0,0.23275892,288.94675,-44.778246)"
4457 inkscape:label="#g4737">
4458 <rect
4459 style="fill:url(#linearGradient6331);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
4460 id="rect4683"
4461 width="67.956474"
4462 height="70.532257"
4463 x="562.27808"
4464 y="177.40062"
4465 rx="5"
4466 ry="5"
4467 inkscape:label="#rect2160" />
4468 <text
4469 xml:space="preserve"
4470 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4471 x="578.56879"
4472 y="235.27612"
4473 id="text4685"
4474 sodipodi:linespacing="100%"><tspan
4475 sodipodi:role="line"
4476 id="tspan4687"
4477 x="578.56879"
4478 y="235.27612"
4479 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">8</tspan></text>
4480 </g>
4481 <g
4482 style="stroke:#570f0f;stroke-opacity:1"
4483 id="9"
4484 transform="matrix(0.23275892,0,0,0.23275892,288.3002,-44.778246)"
4485 inkscape:label="#g4750">
4486 <rect
4487 inkscape:label="#rect2160"
4488 ry="5"
4489 rx="5"
4490 y="177.40062"
4491 x="643.70667"
4492 height="70.532257"
4493 width="67.956474"
4494 id="rect4691"
4495 style="fill:url(#linearGradient6333);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
4496 <text
4497 sodipodi:linespacing="100%"
4498 id="text4693"
4499 y="235.27612"
4500 x="659.96613"
4501 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4502 xml:space="preserve"><tspan
4503 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
4504 y="235.27612"
4505 x="659.96613"
4506 id="tspan4695"
4507 sodipodi:role="line">9</tspan></text>
4508 </g>
4509 <g
4510 style="stroke:#570f0f;stroke-opacity:1"
4511 id="0"
4512 transform="matrix(0.23275892,0,0,0.23275892,287.32115,-44.778246)"
4513 inkscape:label="#g4755">
4514 <rect
4515 style="fill:url(#linearGradient6335);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
4516 id="rect4699"
4517 width="67.956474"
4518 height="70.532257"
4519 x="726.56378"
4520 y="177.40062"
4521 rx="5"
4522 ry="5"
4523 inkscape:label="#rect2160" />
4524 <text
4525 xml:space="preserve"
4526 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4527 x="742.94824"
4528 y="235.27612"
4529 id="text4701"
4530 sodipodi:linespacing="100%"><tspan
4531 sodipodi:role="line"
4532 id="tspan4703"
4533 x="742.94824"
4534 y="235.27612"
4535 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">0</tspan></text>
4536 </g>
4537 <g
4538 style="stroke:#570f0f;stroke-opacity:1"
4539 id="enter"
4540 transform="matrix(0.23275892,0,0,0.23275892,289.64872,-44.778246)"
4541 inkscape:label="#g5780">
4542 <rect
4543 style="fill:url(#linearGradient6337);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:1.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
4544 id="rect5762"
4545 width="223.54247"
4546 height="70.532257"
4547 x="561.49011"
4548 y="433.26514"
4549 rx="5"
4550 ry="5"
4551 inkscape:label="#rect2160" />
4552 <text
4553 xml:space="preserve"
4554 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4555 x="562.58948"
4556 y="491.43753"
4557 id="text5771"
4558 sodipodi:linespacing="100%"><tspan
4559 sodipodi:role="line"
4560 id="tspan5773"
4561 x="562.58948"
4562 y="491.43753"
4563 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">ENTER</tspan></text>
4564 </g>
4565 <rect
4566 style="fill:#000000;fill-opacity:1"
4567 id="rect4235-4"
4568 width="71.973373"
4569 height="22.223358"
4570 x="68.191956"
4571 y="776.48932"
4572 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
4573 inkscape:export-xdpi="90"
4574 inkscape:export-ydpi="90" />
4575 <rect
4576 style="fill:#008000;fill-opacity:1"
4577 id="rect4235-4-9"
4578 width="71.973373"
4579 height="22.223358"
4580 x="69.869621"
4581 y="827.32819"
4582 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
4583 inkscape:export-xdpi="90"
4584 inkscape:export-ydpi="90" />
4585 <rect
4586 style="fill:#ff0000;fill-opacity:1"
4587 id="rect4235-4-1"
4588 width="71.973373"
4589 height="22.223358"
4590 x="71.869621"
4591 y="879.32819"
4592 inkscape:export-filename="/home/jtriley/Documents/path10411-0-4-9.png"
4593 inkscape:export-xdpi="90"
4594 inkscape:export-ydpi="90" />
4595 <g
4596 id="g6750"
4597 transform="translate(-13.999977,0)">
4598 <rect
4599 style="fill:url(#linearGradient7058);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:0.46551785;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
4600 id="rect4783-9"
4601 width="187.36421"
4602 height="102.87033"
4603 x="648.53088"
4604 y="-4.665844"
4605 rx="1.1637946"
4606 ry="1.1637948"
4607 inkscape:label="#rect2160" />
4608 <g
4609 transform="matrix(0.23275892,0,0,0.23275892,648.13515,-40.505934)"
4610 inkscape:label="#g4203"
4611 id="q-6"
4612 style="stroke:#570f0f;stroke-opacity:1">
4613 <rect
4614 style="fill:url(#linearGradient7060);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
4615 id="Q-2"
4616 width="67.956474"
4617 height="70.532257"
4618 x="10.849505"
4619 y="261.68634"
4620 rx="5"
4621 ry="5"
4622 inkscape:label="#rect2160" />
4623 <text
4624 xml:space="preserve"
4625 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4626 x="19.733997"
4627 y="318.48373"
4628 id="text3142-1"
4629 sodipodi:linespacing="100%"><tspan
4630 sodipodi:role="line"
4631 id="tspan3144-2"
4632 x="19.733997"
4633 y="318.48373"
4634 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">Q</tspan></text>
4635 </g>
4636 <g
4637 inkscape:label="#g4208"
4638 transform="matrix(0.23275892,0,0,0.23275892,648.10902,-40.505934)"
4639 id="w-0"
4640 style="stroke:#570f0f;stroke-opacity:1">
4641 <rect
4642 inkscape:label="#rect2160"
4643 ry="5"
4644 rx="5"
4645 y="261.68634"
4646 x="89.641403"
4647 height="70.532257"
4648 width="67.956474"
4649 id="rect4115-7"
4650 style="fill:url(#linearGradient7062);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
4651 <text
4652 sodipodi:linespacing="100%"
4653 id="text4117-3"
4654 y="319.85873"
4655 x="93.385269"
4656 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4657 xml:space="preserve"><tspan
4658 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
4659 y="319.85873"
4660 x="93.385269"
4661 id="tspan4119-1"
4662 sodipodi:role="line">W</tspan></text>
4663 </g>
4664 <g
4665 inkscape:label="#g4213"
4666 transform="matrix(0.23275892,0,0,0.23275892,648.0829,-40.505934)"
4667 id="e-1"
4668 style="stroke:#570f0f;stroke-opacity:1">
4669 <rect
4670 inkscape:label="#rect2160"
4671 ry="5"
4672 rx="5"
4673 y="261.68634"
4674 x="168.4333"
4675 height="70.532257"
4676 width="67.956474"
4677 id="rect4123-9"
4678 style="fill:url(#linearGradient7064);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
4679 <text
4680 sodipodi:linespacing="100%"
4681 id="text4125-0"
4682 y="319.8587"
4683 x="180.25529"
4684 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4685 xml:space="preserve"><tspan
4686 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
4687 y="319.8587"
4688 x="180.25529"
4689 id="tspan4127-5"
4690 sodipodi:role="line">E</tspan></text>
4691 </g>
4692 <g
4693 inkscape:label="#g4218"
4694 transform="matrix(0.23275892,0,0,0.23275892,647.82165,-40.505934)"
4695 id="r-6"
4696 style="stroke:#570f0f;stroke-opacity:1">
4697 <rect
4698 inkscape:label="#rect2160"
4699 ry="5"
4700 rx="5"
4701 y="261.68634"
4702 x="248.23535"
4703 height="70.532257"
4704 width="67.956474"
4705 id="rect4131-7"
4706 style="fill:url(#linearGradient7066);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
4707 <text
4708 sodipodi:linespacing="100%"
4709 id="text4133-7"
4710 y="319.8587"
4711 x="256.99484"
4712 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4713 xml:space="preserve"><tspan
4714 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
4715 y="319.8587"
4716 x="256.99484"
4717 id="tspan4135-4"
4718 sodipodi:role="line">R</tspan></text>
4719 </g>
4720 <g
4721 inkscape:label="#g4223"
4722 transform="matrix(0.23275892,0,0,0.23275892,648.50089,-40.505934)"
4723 id="t-0"
4724 style="stroke:#570f0f;stroke-opacity:1">
4725 <rect
4726 style="fill:url(#linearGradient7068);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
4727 id="rect4139-6"
4728 width="67.956474"
4729 height="70.532257"
4730 x="323.9968"
4731 y="261.68634"
4732 rx="5"
4733 ry="5"
4734 inkscape:label="#rect2160" />
4735 <text
4736 xml:space="preserve"
4737 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4738 x="338.31879"
4739 y="319.8587"
4740 id="text4141-4"
4741 sodipodi:linespacing="100%"><tspan
4742 sodipodi:role="line"
4743 id="tspan4143-7"
4744 x="338.31879"
4745 y="319.8587"
4746 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">T</tspan></text>
4747 </g>
4748 <g
4749 inkscape:label="#g4228"
4750 transform="matrix(0.23275892,0,0,0.23275892,647.7694,-40.505934)"
4751 id="y-4"
4752 style="stroke:#570f0f;stroke-opacity:1">
4753 <rect
4754 inkscape:label="#rect2160"
4755 ry="5"
4756 rx="5"
4757 y="261.68634"
4758 x="405.81915"
4759 height="70.532257"
4760 width="67.956474"
4761 id="rect4147-8"
4762 style="fill:url(#linearGradient7070);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
4763 <text
4764 sodipodi:linespacing="100%"
4765 id="text4149-5"
4766 y="319.8587"
4767 x="418.60989"
4768 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4769 xml:space="preserve"><tspan
4770 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
4771 y="319.8587"
4772 x="418.60989"
4773 id="tspan4151-8"
4774 sodipodi:role="line">Y</tspan></text>
4775 </g>
4776 <g
4777 inkscape:label="#g4233"
4778 transform="matrix(0.23275892,0,0,0.23275892,647.50815,-40.505934)"
4779 id="u-2"
4780 style="stroke:#570f0f;stroke-opacity:1">
4781 <rect
4782 style="fill:url(#linearGradient7072);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
4783 id="rect4155-6"
4784 width="67.956474"
4785 height="70.532257"
4786 x="485.62122"
4787 y="261.68634"
4788 rx="5"
4789 ry="5"
4790 inkscape:label="#rect2160" />
4791 <text
4792 xml:space="preserve"
4793 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4794 x="496.55258"
4795 y="319.46808"
4796 id="text4157-0"
4797 sodipodi:linespacing="100%"><tspan
4798 sodipodi:role="line"
4799 id="tspan4159-6"
4800 x="496.55258"
4801 y="319.46808"
4802 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">U</tspan></text>
4803 </g>
4804 <g
4805 inkscape:label="#g4238"
4806 transform="matrix(0.23275892,0,0,0.23275892,647.48203,-40.505934)"
4807 id="i-6"
4808 style="stroke:#570f0f;stroke-opacity:1">
4809 <rect
4810 inkscape:label="#rect2160"
4811 ry="5"
4812 rx="5"
4813 y="261.68634"
4814 x="564.41309"
4815 height="70.532257"
4816 width="67.956474"
4817 id="rect4163-4"
4818 style="fill:url(#linearGradient7074);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
4819 <text
4820 sodipodi:linespacing="100%"
4821 id="text4165-6"
4822 y="319.8587"
4823 x="589.3913"
4824 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4825 xml:space="preserve"><tspan
4826 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
4827 y="319.8587"
4828 x="589.3913"
4829 id="tspan4167-2"
4830 sodipodi:role="line">I</tspan></text>
4831 </g>
4832 <g
4833 inkscape:label="#g4243"
4834 transform="matrix(0.23275892,0,0,0.23275892,647.4559,-40.505934)"
4835 id="o-8"
4836 style="stroke:#570f0f;stroke-opacity:1">
4837 <rect
4838 style="fill:url(#linearGradient7076);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
4839 id="rect4171-9"
4840 width="67.956474"
4841 height="70.532257"
4842 x="643.20496"
4843 y="261.68634"
4844 rx="5"
4845 ry="5"
4846 inkscape:label="#rect2160" />
4847 <text
4848 xml:space="preserve"
4849 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4850 x="652.18317"
4851 y="319.87433"
4852 id="text4173-6"
4853 sodipodi:linespacing="100%"><tspan
4854 sodipodi:role="line"
4855 id="tspan4175-0"
4856 x="652.18317"
4857 y="319.87433"
4858 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">O</tspan></text>
4859 </g>
4860 <g
4861 inkscape:label="#g4248"
4862 transform="matrix(0.23275892,0,0,0.23275892,648.13514,-40.505934)"
4863 id="p-7"
4864 style="stroke:#570f0f;stroke-opacity:1">
4865 <rect
4866 inkscape:label="#rect2160"
4867 ry="5"
4868 rx="5"
4869 y="261.68634"
4870 x="718.96637"
4871 height="70.532257"
4872 width="67.956474"
4873 id="rect4179-0"
4874 style="fill:url(#linearGradient7078);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
4875 <text
4876 sodipodi:linespacing="100%"
4877 id="text4181-1"
4878 y="319.8587"
4879 x="730.52271"
4880 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4881 xml:space="preserve"><tspan
4882 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
4883 y="319.8587"
4884 x="730.52271"
4885 id="tspan4183-0"
4886 sodipodi:role="line">P</tspan></text>
4887 </g>
4888 <g
4889 transform="matrix(0.23275892,0,0,0.23275892,648.13515,-40.505934)"
4890 inkscape:label="#g4358"
4891 id="a-1"
4892 style="stroke:#570f0f;stroke-opacity:1">
4893 <rect
4894 inkscape:label="#rect2160"
4895 ry="5"
4896 rx="5"
4897 y="347.54932"
4898 x="10.849505"
4899 height="70.532257"
4900 width="67.956474"
4901 id="rect4273-3"
4902 style="fill:url(#linearGradient7080);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
4903 <text
4904 sodipodi:linespacing="100%"
4905 id="text4275-7"
4906 y="405.72168"
4907 x="23.483994"
4908 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4909 xml:space="preserve"><tspan
4910 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
4911 y="405.72168"
4912 x="23.483994"
4913 id="tspan4277-7"
4914 sodipodi:role="line">A</tspan></text>
4915 </g>
4916 <g
4917 inkscape:label="#g4363"
4918 transform="matrix(0.23275892,0,0,0.23275892,648.10576,-40.505934)"
4919 id="s-2"
4920 style="stroke:#570f0f;stroke-opacity:1">
4921 <rect
4922 style="fill:url(#linearGradient7082);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
4923 id="rect4286-6"
4924 width="67.956474"
4925 height="70.532257"
4926 x="89.641403"
4927 y="347.54932"
4928 rx="5"
4929 ry="5"
4930 inkscape:label="#rect2160" />
4931 <text
4932 xml:space="preserve"
4933 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4934 x="102.51027"
4935 y="405.72168"
4936 id="text4288-4"
4937 sodipodi:linespacing="100%"><tspan
4938 sodipodi:role="line"
4939 id="tspan4290-5"
4940 x="102.51027"
4941 y="405.72168"
4942 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">S</tspan></text>
4943 </g>
4944 <g
4945 inkscape:label="#g4368"
4946 transform="matrix(0.23275892,0,0,0.23275892,648.07637,-40.505934)"
4947 id="d-2"
4948 style="stroke:#570f0f;stroke-opacity:1">
4949 <rect
4950 inkscape:label="#rect2160"
4951 ry="5"
4952 rx="5"
4953 y="347.54932"
4954 x="168.4333"
4955 height="70.532257"
4956 width="67.956474"
4957 id="rect4294-0"
4958 style="fill:url(#linearGradient7084);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
4959 <text
4960 sodipodi:linespacing="100%"
4961 id="text4296-2"
4962 y="405.72168"
4963 x="178.53654"
4964 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4965 xml:space="preserve"><tspan
4966 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
4967 y="405.72168"
4968 x="178.53654"
4969 id="tspan4298-9"
4970 sodipodi:role="line">D</tspan></text>
4971 </g>
4972 <g
4973 inkscape:label="#g4373"
4974 transform="matrix(0.23275892,0,0,0.23275892,647.34161,-40.505934)"
4975 id="f-0"
4976 style="stroke:#570f0f;stroke-opacity:1">
4977 <rect
4978 style="fill:url(#linearGradient7086);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
4979 id="rect4302-9"
4980 width="67.956474"
4981 height="70.532257"
4982 x="250.25566"
4983 y="347.54932"
4984 rx="5"
4985 ry="5"
4986 inkscape:label="#rect2160" />
4987 <text
4988 xml:space="preserve"
4989 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
4990 x="263.53076"
4991 y="405.72168"
4992 id="text4304-9"
4993 sodipodi:linespacing="100%"><tspan
4994 sodipodi:role="line"
4995 id="tspan4306-4"
4996 x="263.53076"
4997 y="405.72168"
4998 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">F</tspan></text>
4999 </g>
5000 <g
5001 inkscape:label="#g4378"
5002 transform="matrix(0.23275892,0,0,0.23275892,647.54734,-40.505934)"
5003 id="g-5"
5004 style="stroke:#570f0f;stroke-opacity:1">
5005 <rect
5006 inkscape:label="#rect2160"
5007 ry="5"
5008 rx="5"
5009 y="347.54932"
5010 x="328.03741"
5011 height="70.532257"
5012 width="67.956474"
5013 id="rect4310-1"
5014 style="fill:url(#linearGradient7088);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
5015 <text
5016 sodipodi:linespacing="100%"
5017 id="text4312-0"
5018 y="405.72168"
5019 x="337.42191"
5020 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5021 xml:space="preserve"><tspan
5022 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
5023 y="405.72168"
5024 x="337.42191"
5025 id="tspan4314-3"
5026 sodipodi:role="line">G</tspan></text>
5027 </g>
5028 <g
5029 inkscape:label="#g4383"
5030 transform="matrix(0.23275892,0,0,0.23275892,647.9882,-40.505934)"
5031 id="h-7"
5032 style="stroke:#570f0f;stroke-opacity:1">
5033 <rect
5034 style="fill:url(#linearGradient7090);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
5035 id="rect4318-8"
5036 width="67.956474"
5037 height="70.532257"
5038 x="404.80902"
5039 y="347.54932"
5040 rx="5"
5041 ry="5"
5042 inkscape:label="#rect2160" />
5043 <text
5044 xml:space="preserve"
5045 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5046 x="415.69351"
5047 y="405.72168"
5048 id="text4320-8"
5049 sodipodi:linespacing="100%"><tspan
5050 sodipodi:role="line"
5051 id="tspan4322-6"
5052 x="415.69351"
5053 y="405.72168"
5054 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">H</tspan></text>
5055 </g>
5056 <g
5057 inkscape:label="#g4388"
5058 transform="matrix(0.23275892,0,0,0.23275892,647.01832,-40.505934)"
5059 id="j-0"
5060 style="stroke:#570f0f;stroke-opacity:1">
5061 <rect
5062 inkscape:label="#rect2160"
5063 ry="5"
5064 rx="5"
5065 y="347.54932"
5066 x="487.64154"
5067 height="70.532257"
5068 width="67.956474"
5069 id="rect4326-4"
5070 style="fill:url(#linearGradient7092);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
5071 <text
5072 sodipodi:linespacing="100%"
5073 id="text4328-6"
5074 y="405.33105"
5075 x="507.24478"
5076 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5077 xml:space="preserve"><tspan
5078 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
5079 y="405.33105"
5080 x="507.24478"
5081 id="tspan4330-7"
5082 sodipodi:role="line">J</tspan></text>
5083 </g>
5084 <g
5085 inkscape:label="#g4393"
5086 transform="matrix(0.23275892,0,0,0.23275892,647.22406,-40.505934)"
5087 id="k-6"
5088 style="stroke:#570f0f;stroke-opacity:1">
5089 <rect
5090 style="fill:url(#linearGradient7094);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
5091 id="rect4334-0"
5092 width="67.956474"
5093 height="70.532257"
5094 x="565.42328"
5095 y="347.54932"
5096 rx="5"
5097 ry="5"
5098 inkscape:label="#rect2160" />
5099 <text
5100 xml:space="preserve"
5101 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5102 x="575.77649"
5103 y="405.72168"
5104 id="text4336-9"
5105 sodipodi:linespacing="100%"><tspan
5106 sodipodi:role="line"
5107 id="tspan4338-7"
5108 x="575.77649"
5109 y="405.72168"
5110 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">K</tspan></text>
5111 </g>
5112 <g
5113 inkscape:label="#g4398"
5114 transform="matrix(0.23275892,0,0,0.23275892,646.25418,-40.505934)"
5115 id="l-5"
5116 style="stroke:#570f0f;stroke-opacity:1">
5117 <rect
5118 inkscape:label="#rect2160"
5119 ry="5"
5120 rx="5"
5121 y="347.54932"
5122 x="648.2558"
5123 height="70.532257"
5124 width="67.956474"
5125 id="rect4342-9"
5126 style="fill:url(#linearGradient7096);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
5127 <text
5128 sodipodi:linespacing="100%"
5129 id="text4344-7"
5130 y="405.72168"
5131 x="663.23401"
5132 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5133 xml:space="preserve"><tspan
5134 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
5135 y="405.72168"
5136 x="663.23401"
5137 id="tspan4346-8"
5138 sodipodi:role="line">L</tspan></text>
5139 </g>
5140 <g
5141 transform="matrix(0.23275892,0,0,0.23275892,648.13515,-40.505934)"
5142 inkscape:label="#g4482"
5143 id="z-5"
5144 style="stroke:#570f0f;stroke-opacity:1">
5145 <rect
5146 style="fill:url(#linearGradient7098);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
5147 id="rect4421-3"
5148 width="67.956474"
5149 height="70.532257"
5150 x="10.849505"
5151 y="433.41229"
5152 rx="5"
5153 ry="5"
5154 inkscape:label="#rect2160" />
5155 <text
5156 xml:space="preserve"
5157 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5158 x="25.437119"
5159 y="491.58466"
5160 id="text4423-3"
5161 sodipodi:linespacing="100%"><tspan
5162 sodipodi:role="line"
5163 id="tspan4425-8"
5164 x="25.437119"
5165 y="491.58466"
5166 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">Z</tspan></text>
5167 </g>
5168 <g
5169 inkscape:label="#g4515"
5170 transform="matrix(0.23275892,0,0,0.23275892,648.13515,-40.505934)"
5171 id="x-3"
5172 style="stroke:#570f0f;stroke-opacity:1">
5173 <rect
5174 inkscape:label="#rect2160"
5175 ry="5"
5176 rx="5"
5177 y="433.41229"
5178 x="89.641403"
5179 height="70.532257"
5180 width="67.956474"
5181 id="rect4434-7"
5182 style="fill:url(#linearGradient7100);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
5183 <text
5184 sodipodi:linespacing="100%"
5185 id="text4436-9"
5186 y="491.58466"
5187 x="102.33839"
5188 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5189 xml:space="preserve"><tspan
5190 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
5191 y="491.58466"
5192 x="102.33839"
5193 id="tspan4438-3"
5194 sodipodi:role="line">X</tspan></text>
5195 </g>
5196 <g
5197 inkscape:label="#g4510"
5198 transform="matrix(0.23275892,0,0,0.23275892,648.37027,-40.505934)"
5199 id="c-7"
5200 style="stroke:#570f0f;stroke-opacity:1">
5201 <rect
5202 style="fill:url(#linearGradient7102);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
5203 id="rect4442-8"
5204 width="67.956474"
5205 height="70.532257"
5206 x="167.42316"
5207 y="433.41229"
5208 rx="5"
5209 ry="5"
5210 inkscape:label="#rect2160" />
5211 <text
5212 xml:space="preserve"
5213 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5214 x="177.9639"
5215 y="491.58466"
5216 id="text4444-7"
5217 sodipodi:linespacing="100%"><tspan
5218 sodipodi:role="line"
5219 id="tspan4446-4"
5220 x="177.9639"
5221 y="491.58466"
5222 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">C</tspan></text>
5223 </g>
5224 <g
5225 inkscape:label="#g4505"
5226 transform="matrix(0.23275892,0,0,0.23275892,648.37027,-40.505934)"
5227 id="v-1"
5228 style="stroke:#570f0f;stroke-opacity:1">
5229 <rect
5230 inkscape:label="#rect2160"
5231 ry="5"
5232 rx="5"
5233 y="433.41229"
5234 x="246.21506"
5235 height="70.532257"
5236 width="67.956474"
5237 id="rect4450-9"
5238 style="fill:url(#linearGradient7104);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
5239 <text
5240 sodipodi:linespacing="100%"
5241 id="text4452-0"
5242 y="491.58466"
5243 x="258.95892"
5244 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5245 xml:space="preserve"><tspan
5246 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
5247 y="491.58466"
5248 x="258.95892"
5249 id="tspan4454-9"
5250 sodipodi:role="line">V</tspan></text>
5251 </g>
5252 <g
5253 inkscape:label="#g4492"
5254 transform="matrix(0.23275892,0,0,0.23275892,646.72441,-40.505934)"
5255 id="b-8"
5256 style="stroke:#570f0f;stroke-opacity:1">
5257 <rect
5258 style="fill:url(#linearGradient7106);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
5259 id="rect4458-8"
5260 width="67.956474"
5261 height="70.532257"
5262 x="332.07803"
5263 y="433.41229"
5264 rx="5"
5265 ry="5"
5266 inkscape:label="#rect2160" />
5267 <text
5268 xml:space="preserve"
5269 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5270 x="344.0719"
5271 y="491.58466"
5272 id="text4460-5"
5273 sodipodi:linespacing="100%"><tspan
5274 sodipodi:role="line"
5275 id="tspan4462-8"
5276 x="344.0719"
5277 y="491.58466"
5278 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">B</tspan></text>
5279 </g>
5280 <g
5281 inkscape:label="#g4487"
5282 transform="matrix(0.23275892,0,0,0.23275892,646.01905,-40.505934)"
5283 id="n-4"
5284 style="stroke:#570f0f;stroke-opacity:1">
5285 <rect
5286 inkscape:label="#rect2160"
5287 ry="5"
5288 rx="5"
5289 y="433.41229"
5290 x="413.90039"
5291 height="70.532257"
5292 width="67.956474"
5293 id="rect4466-3"
5294 style="fill:url(#linearGradient7108);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
5295 <text
5296 sodipodi:linespacing="100%"
5297 id="text4468-7"
5298 y="491.58466"
5299 x="424.95676"
5300 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5301 xml:space="preserve"><tspan
5302 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
5303 y="491.58466"
5304 x="424.95676"
5305 id="tspan4470-1"
5306 sodipodi:role="line">N</tspan></text>
5307 </g>
5308 <g
5309 transform="matrix(0.23275892,0,0,0.23275892,648.13515,-40.505934)"
5310 inkscape:label="#g5775"
5311 id="m-3"
5312 style="stroke:#570f0f;stroke-opacity:1">
5313 <rect
5314 style="fill:url(#linearGradient7110);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
5315 id="rect4474-8"
5316 width="67.956474"
5317 height="70.532257"
5318 x="483.60089"
5319 y="433.41229"
5320 rx="5"
5321 ry="5"
5322 inkscape:label="#rect2160" />
5323 <text
5324 xml:space="preserve"
5325 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5326 x="490.96976"
5327 y="491.58466"
5328 id="text4476-0"
5329 sodipodi:linespacing="100%"><tspan
5330 sodipodi:role="line"
5331 id="tspan4478-9"
5332 x="490.96976"
5333 y="491.58466"
5334 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">M</tspan></text>
5335 </g>
5336 <rect
5337 inkscape:label="#rect2160"
5338 ry="1.1637946"
5339 rx="1.1637946"
5340 y="80.124893"
5341 x="687.10236"
5342 height="16.417011"
5343 width="88.60791"
5344 id="rect4497-7"
5345 style="fill:url(#linearGradient7112);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:0.46551785;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
5346 <g
5347 transform="matrix(0.23275892,0,0,0.23275892,648.13515,-40.505934)"
5348 inkscape:label="#g4707"
5349 id="1-9"
5350 style="stroke:#570f0f;stroke-opacity:1">
5351 <rect
5352 inkscape:label="#rect2160"
5353 ry="5"
5354 rx="5"
5355 y="177.40062"
5356 x="10.849505"
5357 height="70.532257"
5358 width="67.956474"
5359 id="rect4618-9"
5360 style="fill:url(#linearGradient7114);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
5361 <text
5362 sodipodi:linespacing="100%"
5363 id="text4620-3"
5364 y="235.66675"
5365 x="29.421494"
5366 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5367 xml:space="preserve"><tspan
5368 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
5369 y="235.66675"
5370 x="29.421494"
5371 id="tspan4622-2"
5372 sodipodi:role="line">1</tspan></text>
5373 </g>
5374 <g
5375 inkscape:label="#g4712"
5376 transform="matrix(0.23275892,0,0,0.23275892,648.48614,-40.505934)"
5377 id="2-4"
5378 style="stroke:#570f0f;stroke-opacity:1">
5379 <rect
5380 style="fill:url(#linearGradient7116);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
5381 id="rect4631-3"
5382 width="67.956474"
5383 height="70.532257"
5384 x="87.992363"
5385 y="177.40062"
5386 rx="5"
5387 ry="5"
5388 inkscape:label="#rect2160" />
5389 <text
5390 xml:space="preserve"
5391 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5392 x="104.92372"
5393 y="235.66675"
5394 id="text4633-7"
5395 sodipodi:linespacing="100%"><tspan
5396 sodipodi:role="line"
5397 id="tspan4635-1"
5398 x="104.92372"
5399 y="235.66675"
5400 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">2</tspan></text>
5401 </g>
5402 <g
5403 inkscape:label="#g4717"
5404 transform="matrix(0.23275892,0,0,0.23275892,647.83958,-40.505934)"
5405 id="3-2"
5406 style="stroke:#570f0f;stroke-opacity:1">
5407 <rect
5408 style="fill:url(#linearGradient7118);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
5409 id="rect4643-2"
5410 width="67.956474"
5411 height="70.532257"
5412 x="169.42093"
5413 y="177.40062"
5414 rx="5"
5415 ry="5"
5416 inkscape:label="#rect2160" />
5417 <text
5418 xml:space="preserve"
5419 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5420 x="185.71167"
5421 y="235.2605"
5422 id="text4645-0"
5423 sodipodi:linespacing="100%"><tspan
5424 sodipodi:role="line"
5425 id="tspan4647-2"
5426 x="185.71167"
5427 y="235.2605"
5428 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">3</tspan></text>
5429 </g>
5430 <g
5431 inkscape:label="#g4722"
5432 transform="matrix(0.23275892,0,0,0.23275892,648.52309,-40.505934)"
5433 id="4-1"
5434 style="stroke:#570f0f;stroke-opacity:1">
5435 <rect
5436 inkscape:label="#rect2160"
5437 ry="5"
5438 rx="5"
5439 y="177.40062"
5440 x="245.13521"
5441 height="70.532257"
5442 width="67.956474"
5443 id="rect4651-7"
5444 style="fill:url(#linearGradient7120);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
5445 <text
5446 sodipodi:linespacing="100%"
5447 id="text4653-5"
5448 y="235.573"
5449 x="262.45718"
5450 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5451 xml:space="preserve"><tspan
5452 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
5453 y="235.573"
5454 x="262.45718"
5455 id="tspan4655-1"
5456 sodipodi:role="line">4</tspan></text>
5457 </g>
5458 <g
5459 inkscape:label="#g4727"
5460 transform="matrix(0.23275892,0,0,0.23275892,648.87407,-40.505934)"
5461 id="5-7"
5462 style="stroke:#570f0f;stroke-opacity:1">
5463 <rect
5464 style="fill:url(#linearGradient7122);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
5465 id="rect4659-4"
5466 width="67.956474"
5467 height="70.532257"
5468 x="322.27808"
5469 y="177.40062"
5470 rx="5"
5471 ry="5"
5472 inkscape:label="#rect2160" />
5473 <text
5474 xml:space="preserve"
5475 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5476 x="338.41257"
5477 y="234.86987"
5478 id="text4661-1"
5479 sodipodi:linespacing="100%"><tspan
5480 sodipodi:role="line"
5481 id="tspan4663-7"
5482 x="338.41257"
5483 y="234.86987"
5484 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">5</tspan></text>
5485 </g>
5486 <g
5487 inkscape:label="#g4776"
5488 transform="matrix(0.23275892,0,0,0.23275892,649.04558,-40.505934)"
5489 id="6-1"
5490 style="stroke:#570f0f;stroke-opacity:1">
5491 <rect
5492 inkscape:label="#rect2160"
5493 ry="5"
5494 rx="5"
5495 y="177.40062"
5496 x="400.19199"
5497 height="70.532257"
5498 width="67.956474"
5499 id="rect4667-1"
5500 style="fill:url(#linearGradient7124);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
5501 <text
5502 sodipodi:linespacing="100%"
5503 id="text4669-1"
5504 y="235.27612"
5505 x="416.63898"
5506 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5507 xml:space="preserve"><tspan
5508 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
5509 y="235.27612"
5510 x="416.63898"
5511 id="tspan4671-7"
5512 sodipodi:role="line">6</tspan></text>
5513 </g>
5514 <g
5515 inkscape:label="#g4732"
5516 transform="matrix(0.23275892,0,0,0.23275892,648.24599,-40.505934)"
5517 id="7-0"
5518 style="stroke:#570f0f;stroke-opacity:1">
5519 <rect
5520 style="fill:url(#linearGradient7126);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
5521 id="rect4675-4"
5522 width="67.956474"
5523 height="70.532257"
5524 x="482.27808"
5525 y="177.40062"
5526 rx="5"
5527 ry="5"
5528 inkscape:label="#rect2160" />
5529 <text
5530 xml:space="preserve"
5531 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5532 x="498.39694"
5533 y="235.27612"
5534 id="text4677-0"
5535 sodipodi:linespacing="100%"><tspan
5536 sodipodi:role="line"
5537 id="tspan4679-8"
5538 x="498.39694"
5539 y="235.27612"
5540 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">7</tspan></text>
5541 </g>
5542 <g
5543 inkscape:label="#g4737"
5544 transform="matrix(0.23275892,0,0,0.23275892,647.93195,-40.505934)"
5545 id="8-5"
5546 style="stroke:#570f0f;stroke-opacity:1">
5547 <rect
5548 inkscape:label="#rect2160"
5549 ry="5"
5550 rx="5"
5551 y="177.40062"
5552 x="562.27808"
5553 height="70.532257"
5554 width="67.956474"
5555 id="rect4683-1"
5556 style="fill:url(#linearGradient7128);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
5557 <text
5558 sodipodi:linespacing="100%"
5559 id="text4685-6"
5560 y="235.27612"
5561 x="578.56879"
5562 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5563 xml:space="preserve"><tspan
5564 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
5565 y="235.27612"
5566 x="578.56879"
5567 id="tspan4687-6"
5568 sodipodi:role="line">8</tspan></text>
5569 </g>
5570 <g
5571 inkscape:label="#g4750"
5572 transform="matrix(0.23275892,0,0,0.23275892,647.2854,-40.505934)"
5573 id="9-2"
5574 style="stroke:#570f0f;stroke-opacity:1">
5575 <rect
5576 style="fill:url(#linearGradient7130);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
5577 id="rect4691-1"
5578 width="67.956474"
5579 height="70.532257"
5580 x="643.70667"
5581 y="177.40062"
5582 rx="5"
5583 ry="5"
5584 inkscape:label="#rect2160" />
5585 <text
5586 xml:space="preserve"
5587 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5588 x="659.96613"
5589 y="235.27612"
5590 id="text4693-9"
5591 sodipodi:linespacing="100%"><tspan
5592 sodipodi:role="line"
5593 id="tspan4695-6"
5594 x="659.96613"
5595 y="235.27612"
5596 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">9</tspan></text>
5597 </g>
5598 <g
5599 inkscape:label="#g4755"
5600 transform="matrix(0.23275892,0,0,0.23275892,646.30635,-40.505934)"
5601 id="0-4"
5602 style="stroke:#570f0f;stroke-opacity:1">
5603 <rect
5604 inkscape:label="#rect2160"
5605 ry="5"
5606 rx="5"
5607 y="177.40062"
5608 x="726.56378"
5609 height="70.532257"
5610 width="67.956474"
5611 id="rect4699-8"
5612 style="fill:url(#linearGradient7132);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
5613 <text
5614 sodipodi:linespacing="100%"
5615 id="text4701-0"
5616 y="235.27612"
5617 x="742.94824"
5618 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5619 xml:space="preserve"><tspan
5620 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
5621 y="235.27612"
5622 x="742.94824"
5623 id="tspan4703-8"
5624 sodipodi:role="line">0</tspan></text>
5625 </g>
5626 <g
5627 inkscape:label="#g5780"
5628 transform="matrix(0.23275892,0,0,0.23275892,648.63392,-40.505934)"
5629 id="enter-1"
5630 style="stroke:#570f0f;stroke-opacity:1">
5631 <rect
5632 inkscape:label="#rect2160"
5633 ry="5"
5634 rx="5"
5635 y="433.26514"
5636 x="561.49011"
5637 height="70.532257"
5638 width="223.54247"
5639 id="rect5762-0"
5640 style="fill:url(#linearGradient7134);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:1.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
5641 <text
5642 sodipodi:linespacing="100%"
5643 id="text5771-2"
5644 y="491.43753"
5645 x="562.58948"
5646 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5647 xml:space="preserve"><tspan
5648 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
5649 y="491.43753"
5650 x="562.58948"
5651 id="tspan5773-2"
5652 sodipodi:role="line">ENTER</tspan></text>
5653 </g>
5654 </g>
5655 <g
5656 id="g4874">
5657 <rect
5658 style="fill:url(#linearGradient5040);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:0.46551785;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
5659 id="rect4783-8"
5660 width="187.36421"
5661 height="102.87033"
5662 x="-56.464729"
5663 y="-4.978344"
5664 rx="1.1637946"
5665 ry="1.1637948"
5666 inkscape:label="#rect2160" />
5667 <g
5668 transform="matrix(0.23275892,0,0,0.23275892,-59.50672,-40.818434)"
5669 inkscape:label="#g4203"
5670 id="q-67"
5671 style="stroke:#570f0f;stroke-opacity:1">
5672 <rect
5673 style="fill:url(#linearGradient6263-6);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
5674 id="Q-0"
5675 width="67.956474"
5676 height="70.532257"
5677 x="10.849505"
5678 y="261.68634"
5679 rx="5"
5680 ry="5"
5681 inkscape:label="#rect2160" />
5682 <text
5683 xml:space="preserve"
5684 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5685 x="19.733997"
5686 y="318.48373"
5687 id="text3142-4"
5688 sodipodi:linespacing="100%"><tspan
5689 sodipodi:role="line"
5690 id="tspan3144-8"
5691 x="19.733997"
5692 y="318.48373"
5693 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">Q</tspan></text>
5694 </g>
5695 <g
5696 inkscape:label="#g4208"
5697 transform="matrix(0.23275892,0,0,0.23275892,-59.53285,-40.818434)"
5698 id="w-4"
5699 style="stroke:#570f0f;stroke-opacity:1">
5700 <rect
5701 inkscape:label="#rect2160"
5702 ry="5"
5703 rx="5"
5704 y="261.68634"
5705 x="89.641403"
5706 height="70.532257"
5707 width="67.956474"
5708 id="rect4115-8"
5709 style="fill:url(#linearGradient6265-3);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
5710 <text
5711 sodipodi:linespacing="100%"
5712 id="text4117-1"
5713 y="319.85873"
5714 x="93.385269"
5715 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5716 xml:space="preserve"><tspan
5717 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
5718 y="319.85873"
5719 x="93.385269"
5720 id="tspan4119-6"
5721 sodipodi:role="line">W</tspan></text>
5722 </g>
5723 <g
5724 inkscape:label="#g4213"
5725 transform="matrix(0.23275892,0,0,0.23275892,-59.55897,-40.818434)"
5726 id="e-8"
5727 style="stroke:#570f0f;stroke-opacity:1">
5728 <rect
5729 inkscape:label="#rect2160"
5730 ry="5"
5731 rx="5"
5732 y="261.68634"
5733 x="168.4333"
5734 height="70.532257"
5735 width="67.956474"
5736 id="rect4123-5"
5737 style="fill:url(#linearGradient6267-5);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
5738 <text
5739 sodipodi:linespacing="100%"
5740 id="text4125-2"
5741 y="319.8587"
5742 x="180.25529"
5743 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5744 xml:space="preserve"><tspan
5745 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
5746 y="319.8587"
5747 x="180.25529"
5748 id="tspan4127-1"
5749 sodipodi:role="line">E</tspan></text>
5750 </g>
5751 <g
5752 inkscape:label="#g4218"
5753 transform="matrix(0.23275892,0,0,0.23275892,-59.82022,-40.818434)"
5754 id="r-9"
5755 style="stroke:#570f0f;stroke-opacity:1">
5756 <rect
5757 inkscape:label="#rect2160"
5758 ry="5"
5759 rx="5"
5760 y="261.68634"
5761 x="248.23535"
5762 height="70.532257"
5763 width="67.956474"
5764 id="rect4131-9"
5765 style="fill:url(#linearGradient6269-5);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
5766 <text
5767 sodipodi:linespacing="100%"
5768 id="text4133-6"
5769 y="319.8587"
5770 x="256.99484"
5771 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5772 xml:space="preserve"><tspan
5773 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
5774 y="319.8587"
5775 x="256.99484"
5776 id="tspan4135-0"
5777 sodipodi:role="line">R</tspan></text>
5778 </g>
5779 <g
5780 inkscape:label="#g4223"
5781 transform="matrix(0.23275892,0,0,0.23275892,-59.14098,-40.818434)"
5782 id="t-6"
5783 style="stroke:#570f0f;stroke-opacity:1">
5784 <rect
5785 style="fill:url(#linearGradient6271-3);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
5786 id="rect4139-4"
5787 width="67.956474"
5788 height="70.532257"
5789 x="323.9968"
5790 y="261.68634"
5791 rx="5"
5792 ry="5"
5793 inkscape:label="#rect2160" />
5794 <text
5795 xml:space="preserve"
5796 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5797 x="338.31879"
5798 y="319.8587"
5799 id="text4141-9"
5800 sodipodi:linespacing="100%"><tspan
5801 sodipodi:role="line"
5802 id="tspan4143-9"
5803 x="338.31879"
5804 y="319.8587"
5805 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">T</tspan></text>
5806 </g>
5807 <g
5808 inkscape:label="#g4228"
5809 transform="matrix(0.23275892,0,0,0.23275892,-59.87247,-40.818434)"
5810 id="y-0"
5811 style="stroke:#570f0f;stroke-opacity:1">
5812 <rect
5813 inkscape:label="#rect2160"
5814 ry="5"
5815 rx="5"
5816 y="261.68634"
5817 x="405.81915"
5818 height="70.532257"
5819 width="67.956474"
5820 id="rect4147-89"
5821 style="fill:url(#linearGradient6273-2);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
5822 <text
5823 sodipodi:linespacing="100%"
5824 id="text4149-3"
5825 y="319.8587"
5826 x="418.60989"
5827 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5828 xml:space="preserve"><tspan
5829 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
5830 y="319.8587"
5831 x="418.60989"
5832 id="tspan4151-1"
5833 sodipodi:role="line">Y</tspan></text>
5834 </g>
5835 <g
5836 inkscape:label="#g4233"
5837 transform="matrix(0.23275892,0,0,0.23275892,-60.13372,-40.818434)"
5838 id="u-4"
5839 style="stroke:#570f0f;stroke-opacity:1">
5840 <rect
5841 style="fill:url(#linearGradient6275-3);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
5842 id="rect4155-8"
5843 width="67.956474"
5844 height="70.532257"
5845 x="485.62122"
5846 y="261.68634"
5847 rx="5"
5848 ry="5"
5849 inkscape:label="#rect2160" />
5850 <text
5851 xml:space="preserve"
5852 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5853 x="496.55258"
5854 y="319.46808"
5855 id="text4157-9"
5856 sodipodi:linespacing="100%"><tspan
5857 sodipodi:role="line"
5858 id="tspan4159-67"
5859 x="496.55258"
5860 y="319.46808"
5861 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">U</tspan></text>
5862 </g>
5863 <g
5864 inkscape:label="#g4238"
5865 transform="matrix(0.23275892,0,0,0.23275892,-60.15984,-40.818434)"
5866 id="i-7"
5867 style="stroke:#570f0f;stroke-opacity:1">
5868 <rect
5869 inkscape:label="#rect2160"
5870 ry="5"
5871 rx="5"
5872 y="261.68634"
5873 x="564.41309"
5874 height="70.532257"
5875 width="67.956474"
5876 id="rect4163-3"
5877 style="fill:url(#linearGradient6277-6);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
5878 <text
5879 sodipodi:linespacing="100%"
5880 id="text4165-7"
5881 y="319.8587"
5882 x="589.3913"
5883 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5884 xml:space="preserve"><tspan
5885 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
5886 y="319.8587"
5887 x="589.3913"
5888 id="tspan4167-1"
5889 sodipodi:role="line">I</tspan></text>
5890 </g>
5891 <g
5892 inkscape:label="#g4243"
5893 transform="matrix(0.23275892,0,0,0.23275892,-60.18597,-40.818434)"
5894 id="o-2"
5895 style="stroke:#570f0f;stroke-opacity:1">
5896 <rect
5897 style="fill:url(#linearGradient6279-4);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
5898 id="rect4171-2"
5899 width="67.956474"
5900 height="70.532257"
5901 x="643.20496"
5902 y="261.68634"
5903 rx="5"
5904 ry="5"
5905 inkscape:label="#rect2160" />
5906 <text
5907 xml:space="preserve"
5908 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5909 x="652.18317"
5910 y="319.87433"
5911 id="text4173-1"
5912 sodipodi:linespacing="100%"><tspan
5913 sodipodi:role="line"
5914 id="tspan4175-5"
5915 x="652.18317"
5916 y="319.87433"
5917 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">O</tspan></text>
5918 </g>
5919 <g
5920 inkscape:label="#g4248"
5921 transform="matrix(0.23275892,0,0,0.23275892,-59.50673,-40.818434)"
5922 id="p-0"
5923 style="stroke:#570f0f;stroke-opacity:1">
5924 <rect
5925 inkscape:label="#rect2160"
5926 ry="5"
5927 rx="5"
5928 y="261.68634"
5929 x="718.96637"
5930 height="70.532257"
5931 width="67.956474"
5932 id="rect4179-9"
5933 style="fill:url(#linearGradient6281-2);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
5934 <text
5935 sodipodi:linespacing="100%"
5936 id="text4181-0"
5937 y="319.8587"
5938 x="730.52271"
5939 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5940 xml:space="preserve"><tspan
5941 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
5942 y="319.8587"
5943 x="730.52271"
5944 id="tspan4183-4"
5945 sodipodi:role="line">P</tspan></text>
5946 </g>
5947 <g
5948 transform="matrix(0.23275892,0,0,0.23275892,-59.50672,-40.818434)"
5949 inkscape:label="#g4358"
5950 id="a-0"
5951 style="stroke:#570f0f;stroke-opacity:1">
5952 <rect
5953 inkscape:label="#rect2160"
5954 ry="5"
5955 rx="5"
5956 y="347.54932"
5957 x="10.849505"
5958 height="70.532257"
5959 width="67.956474"
5960 id="rect4273-1"
5961 style="fill:url(#linearGradient6283-0);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
5962 <text
5963 sodipodi:linespacing="100%"
5964 id="text4275-3"
5965 y="405.72168"
5966 x="23.483994"
5967 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5968 xml:space="preserve"><tspan
5969 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
5970 y="405.72168"
5971 x="23.483994"
5972 id="tspan4277-74"
5973 sodipodi:role="line">A</tspan></text>
5974 </g>
5975 <g
5976 inkscape:label="#g4363"
5977 transform="matrix(0.23275892,0,0,0.23275892,-59.53611,-40.818434)"
5978 id="s-1"
5979 style="stroke:#570f0f;stroke-opacity:1">
5980 <rect
5981 style="fill:url(#linearGradient6285-6);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
5982 id="rect4286-1"
5983 width="67.956474"
5984 height="70.532257"
5985 x="89.641403"
5986 y="347.54932"
5987 rx="5"
5988 ry="5"
5989 inkscape:label="#rect2160" />
5990 <text
5991 xml:space="preserve"
5992 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
5993 x="102.51027"
5994 y="405.72168"
5995 id="text4288-3"
5996 sodipodi:linespacing="100%"><tspan
5997 sodipodi:role="line"
5998 id="tspan4290-0"
5999 x="102.51027"
6000 y="405.72168"
6001 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">S</tspan></text>
6002 </g>
6003 <g
6004 inkscape:label="#g4368"
6005 transform="matrix(0.23275892,0,0,0.23275892,-59.5655,-40.818434)"
6006 id="d-3"
6007 style="stroke:#570f0f;stroke-opacity:1">
6008 <rect
6009 inkscape:label="#rect2160"
6010 ry="5"
6011 rx="5"
6012 y="347.54932"
6013 x="168.4333"
6014 height="70.532257"
6015 width="67.956474"
6016 id="rect4294-2"
6017 style="fill:url(#linearGradient6287-3);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
6018 <text
6019 sodipodi:linespacing="100%"
6020 id="text4296-1"
6021 y="405.72168"
6022 x="178.53654"
6023 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
6024 xml:space="preserve"><tspan
6025 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
6026 y="405.72168"
6027 x="178.53654"
6028 id="tspan4298-7"
6029 sodipodi:role="line">D</tspan></text>
6030 </g>
6031 <g
6032 inkscape:label="#g4373"
6033 transform="matrix(0.23275892,0,0,0.23275892,-60.30026,-40.818434)"
6034 id="f-5"
6035 style="stroke:#570f0f;stroke-opacity:1">
6036 <rect
6037 style="fill:url(#linearGradient6289-51);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
6038 id="rect4302-6"
6039 width="67.956474"
6040 height="70.532257"
6041 x="250.25566"
6042 y="347.54932"
6043 rx="5"
6044 ry="5"
6045 inkscape:label="#rect2160" />
6046 <text
6047 xml:space="preserve"
6048 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
6049 x="263.53076"
6050 y="405.72168"
6051 id="text4304-5"
6052 sodipodi:linespacing="100%"><tspan
6053 sodipodi:role="line"
6054 id="tspan4306-42"
6055 x="263.53076"
6056 y="405.72168"
6057 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">F</tspan></text>
6058 </g>
6059 <g
6060 inkscape:label="#g4378"
6061 transform="matrix(0.23275892,0,0,0.23275892,-60.09453,-40.818434)"
6062 id="g-2"
6063 style="stroke:#570f0f;stroke-opacity:1">
6064 <rect
6065 inkscape:label="#rect2160"
6066 ry="5"
6067 rx="5"
6068 y="347.54932"
6069 x="328.03741"
6070 height="70.532257"
6071 width="67.956474"
6072 id="rect4310-17"
6073 style="fill:url(#linearGradient6291-6);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
6074 <text
6075 sodipodi:linespacing="100%"
6076 id="text4312-2"
6077 y="405.72168"
6078 x="337.42191"
6079 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
6080 xml:space="preserve"><tspan
6081 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
6082 y="405.72168"
6083 x="337.42191"
6084 id="tspan4314-4"
6085 sodipodi:role="line">G</tspan></text>
6086 </g>
6087 <g
6088 inkscape:label="#g4383"
6089 transform="matrix(0.23275892,0,0,0.23275892,-59.65367,-40.818434)"
6090 id="h-1"
6091 style="stroke:#570f0f;stroke-opacity:1">
6092 <rect
6093 style="fill:url(#linearGradient6293-8);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
6094 id="rect4318-6"
6095 width="67.956474"
6096 height="70.532257"
6097 x="404.80902"
6098 y="347.54932"
6099 rx="5"
6100 ry="5"
6101 inkscape:label="#rect2160" />
6102 <text
6103 xml:space="preserve"
6104 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
6105 x="415.69351"
6106 y="405.72168"
6107 id="text4320-5"
6108 sodipodi:linespacing="100%"><tspan
6109 sodipodi:role="line"
6110 id="tspan4322-7"
6111 x="415.69351"
6112 y="405.72168"
6113 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">H</tspan></text>
6114 </g>
6115 <g
6116 inkscape:label="#g4388"
6117 transform="matrix(0.23275892,0,0,0.23275892,-60.62355,-40.818434)"
6118 id="j-8"
6119 style="stroke:#570f0f;stroke-opacity:1">
6120 <rect
6121 inkscape:label="#rect2160"
6122 ry="5"
6123 rx="5"
6124 y="347.54932"
6125 x="487.64154"
6126 height="70.532257"
6127 width="67.956474"
6128 id="rect4326-5"
6129 style="fill:url(#linearGradient6295-1);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
6130 <text
6131 sodipodi:linespacing="100%"
6132 id="text4328-9"
6133 y="405.33105"
6134 x="507.24478"
6135 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
6136 xml:space="preserve"><tspan
6137 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
6138 y="405.33105"
6139 x="507.24478"
6140 id="tspan4330-2"
6141 sodipodi:role="line">J</tspan></text>
6142 </g>
6143 <g
6144 inkscape:label="#g4393"
6145 transform="matrix(0.23275892,0,0,0.23275892,-60.41781,-40.818434)"
6146 id="k-7"
6147 style="stroke:#570f0f;stroke-opacity:1">
6148 <rect
6149 style="fill:url(#linearGradient6297-3);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
6150 id="rect4334-3"
6151 width="67.956474"
6152 height="70.532257"
6153 x="565.42328"
6154 y="347.54932"
6155 rx="5"
6156 ry="5"
6157 inkscape:label="#rect2160" />
6158 <text
6159 xml:space="preserve"
6160 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
6161 x="575.77649"
6162 y="405.72168"
6163 id="text4336-6"
6164 sodipodi:linespacing="100%"><tspan
6165 sodipodi:role="line"
6166 id="tspan4338-4"
6167 x="575.77649"
6168 y="405.72168"
6169 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">K</tspan></text>
6170 </g>
6171 <g
6172 inkscape:label="#g4398"
6173 transform="matrix(0.23275892,0,0,0.23275892,-61.38769,-40.818434)"
6174 id="l-7"
6175 style="stroke:#570f0f;stroke-opacity:1">
6176 <rect
6177 inkscape:label="#rect2160"
6178 ry="5"
6179 rx="5"
6180 y="347.54932"
6181 x="648.2558"
6182 height="70.532257"
6183 width="67.956474"
6184 id="rect4342-97"
6185 style="fill:url(#linearGradient6299-0);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
6186 <text
6187 sodipodi:linespacing="100%"
6188 id="text4344-2"
6189 y="405.72168"
6190 x="663.23401"
6191 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
6192 xml:space="preserve"><tspan
6193 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
6194 y="405.72168"
6195 x="663.23401"
6196 id="tspan4346-2"
6197 sodipodi:role="line">L</tspan></text>
6198 </g>
6199 <g
6200 transform="matrix(0.23275892,0,0,0.23275892,-59.50672,-40.818434)"
6201 inkscape:label="#g4482"
6202 id="z-1"
6203 style="stroke:#570f0f;stroke-opacity:1">
6204 <rect
6205 style="fill:url(#linearGradient6301-6);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
6206 id="rect4421-6"
6207 width="67.956474"
6208 height="70.532257"
6209 x="10.849505"
6210 y="433.41229"
6211 rx="5"
6212 ry="5"
6213 inkscape:label="#rect2160" />
6214 <text
6215 xml:space="preserve"
6216 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
6217 x="25.437119"
6218 y="491.58466"
6219 id="text4423-30"
6220 sodipodi:linespacing="100%"><tspan
6221 sodipodi:role="line"
6222 id="tspan4425-2"
6223 x="25.437119"
6224 y="491.58466"
6225 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">Z</tspan></text>
6226 </g>
6227 <g
6228 inkscape:label="#g4515"
6229 transform="matrix(0.23275892,0,0,0.23275892,-59.50672,-40.818434)"
6230 id="x-1"
6231 style="stroke:#570f0f;stroke-opacity:1">
6232 <rect
6233 inkscape:label="#rect2160"
6234 ry="5"
6235 rx="5"
6236 y="433.41229"
6237 x="89.641403"
6238 height="70.532257"
6239 width="67.956474"
6240 id="rect4434-5"
6241 style="fill:url(#linearGradient6303-0);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
6242 <text
6243 sodipodi:linespacing="100%"
6244 id="text4436-6"
6245 y="491.58466"
6246 x="102.33839"
6247 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
6248 xml:space="preserve"><tspan
6249 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
6250 y="491.58466"
6251 x="102.33839"
6252 id="tspan4438-5"
6253 sodipodi:role="line">X</tspan></text>
6254 </g>
6255 <g
6256 inkscape:label="#g4510"
6257 transform="matrix(0.23275892,0,0,0.23275892,-59.2716,-40.818434)"
6258 id="c-0"
6259 style="stroke:#570f0f;stroke-opacity:1">
6260 <rect
6261 style="fill:url(#linearGradient6305-7);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
6262 id="rect4442-0"
6263 width="67.956474"
6264 height="70.532257"
6265 x="167.42316"
6266 y="433.41229"
6267 rx="5"
6268 ry="5"
6269 inkscape:label="#rect2160" />
6270 <text
6271 xml:space="preserve"
6272 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
6273 x="177.9639"
6274 y="491.58466"
6275 id="text4444-3"
6276 sodipodi:linespacing="100%"><tspan
6277 sodipodi:role="line"
6278 id="tspan4446-46"
6279 x="177.9639"
6280 y="491.58466"
6281 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">C</tspan></text>
6282 </g>
6283 <g
6284 inkscape:label="#g4505"
6285 transform="matrix(0.23275892,0,0,0.23275892,-59.2716,-40.818434)"
6286 id="v-6"
6287 style="stroke:#570f0f;stroke-opacity:1">
6288 <rect
6289 inkscape:label="#rect2160"
6290 ry="5"
6291 rx="5"
6292 y="433.41229"
6293 x="246.21506"
6294 height="70.532257"
6295 width="67.956474"
6296 id="rect4450-0"
6297 style="fill:url(#linearGradient6307-0);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
6298 <text
6299 sodipodi:linespacing="100%"
6300 id="text4452-2"
6301 y="491.58466"
6302 x="258.95892"
6303 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
6304 xml:space="preserve"><tspan
6305 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
6306 y="491.58466"
6307 x="258.95892"
6308 id="tspan4454-5"
6309 sodipodi:role="line">V</tspan></text>
6310 </g>
6311 <g
6312 inkscape:label="#g4492"
6313 transform="matrix(0.23275892,0,0,0.23275892,-60.91746,-40.818434)"
6314 id="b-89"
6315 style="stroke:#570f0f;stroke-opacity:1">
6316 <rect
6317 style="fill:url(#linearGradient6309-8);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
6318 id="rect4458-5"
6319 width="67.956474"
6320 height="70.532257"
6321 x="332.07803"
6322 y="433.41229"
6323 rx="5"
6324 ry="5"
6325 inkscape:label="#rect2160" />
6326 <text
6327 xml:space="preserve"
6328 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
6329 x="344.0719"
6330 y="491.58466"
6331 id="text4460-0"
6332 sodipodi:linespacing="100%"><tspan
6333 sodipodi:role="line"
6334 id="tspan4462-6"
6335 x="344.0719"
6336 y="491.58466"
6337 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">B</tspan></text>
6338 </g>
6339 <g
6340 inkscape:label="#g4487"
6341 transform="matrix(0.23275892,0,0,0.23275892,-61.62282,-40.818434)"
6342 id="n-0"
6343 style="stroke:#570f0f;stroke-opacity:1">
6344 <rect
6345 inkscape:label="#rect2160"
6346 ry="5"
6347 rx="5"
6348 y="433.41229"
6349 x="413.90039"
6350 height="70.532257"
6351 width="67.956474"
6352 id="rect4466-8"
6353 style="fill:url(#linearGradient6311-6);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
6354 <text
6355 sodipodi:linespacing="100%"
6356 id="text4468-3"
6357 y="491.58466"
6358 x="424.95676"
6359 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
6360 xml:space="preserve"><tspan
6361 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
6362 y="491.58466"
6363 x="424.95676"
6364 id="tspan4470-7"
6365 sodipodi:role="line">N</tspan></text>
6366 </g>
6367 <g
6368 transform="matrix(0.23275892,0,0,0.23275892,-59.50672,-40.818434)"
6369 inkscape:label="#g5775"
6370 id="m-8"
6371 style="stroke:#570f0f;stroke-opacity:1">
6372 <rect
6373 style="fill:url(#linearGradient6313-4);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
6374 id="rect4474-2"
6375 width="67.956474"
6376 height="70.532257"
6377 x="483.60089"
6378 y="433.41229"
6379 rx="5"
6380 ry="5"
6381 inkscape:label="#rect2160" />
6382 <text
6383 xml:space="preserve"
6384 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
6385 x="490.96976"
6386 y="491.58466"
6387 id="text4476-1"
6388 sodipodi:linespacing="100%"><tspan
6389 sodipodi:role="line"
6390 id="tspan4478-0"
6391 x="490.96976"
6392 y="491.58466"
6393 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">M</tspan></text>
6394 </g>
6395 <rect
6396 inkscape:label="#rect2160"
6397 ry="1.1637946"
6398 rx="1.1637946"
6399 y="79.812393"
6400 x="-20.539513"
6401 height="16.417011"
6402 width="88.60791"
6403 id="rect4497-5"
6404 style="fill:url(#linearGradient4933);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:0.46551785;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
6405 <g
6406 transform="matrix(0.23275892,0,0,0.23275892,-59.50672,-40.818434)"
6407 inkscape:label="#g4707"
6408 id="1-8"
6409 style="stroke:#570f0f;stroke-opacity:1">
6410 <rect
6411 inkscape:label="#rect2160"
6412 ry="5"
6413 rx="5"
6414 y="177.40062"
6415 x="10.849505"
6416 height="70.532257"
6417 width="67.956474"
6418 id="rect4618-5"
6419 style="fill:url(#linearGradient6317-0);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
6420 <text
6421 sodipodi:linespacing="100%"
6422 id="text4620-5"
6423 y="235.66675"
6424 x="29.421494"
6425 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
6426 xml:space="preserve"><tspan
6427 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
6428 y="235.66675"
6429 x="29.421494"
6430 id="tspan4622-0"
6431 sodipodi:role="line">1</tspan></text>
6432 </g>
6433 <g
6434 inkscape:label="#g4712"
6435 transform="matrix(0.23275892,0,0,0.23275892,-59.15573,-40.818434)"
6436 id="2-7"
6437 style="stroke:#570f0f;stroke-opacity:1">
6438 <rect
6439 style="fill:url(#linearGradient6319-0);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
6440 id="rect4631-38"
6441 width="67.956474"
6442 height="70.532257"
6443 x="87.992363"
6444 y="177.40062"
6445 rx="5"
6446 ry="5"
6447 inkscape:label="#rect2160" />
6448 <text
6449 xml:space="preserve"
6450 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
6451 x="104.92372"
6452 y="235.66675"
6453 id="text4633-2"
6454 sodipodi:linespacing="100%"><tspan
6455 sodipodi:role="line"
6456 id="tspan4635-3"
6457 x="104.92372"
6458 y="235.66675"
6459 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">2</tspan></text>
6460 </g>
6461 <g
6462 inkscape:label="#g4717"
6463 transform="matrix(0.23275892,0,0,0.23275892,-59.80229,-40.818434)"
6464 id="3-0"
6465 style="stroke:#570f0f;stroke-opacity:1">
6466 <rect
6467 style="fill:url(#linearGradient6321-2);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
6468 id="rect4643-7"
6469 width="67.956474"
6470 height="70.532257"
6471 x="169.42093"
6472 y="177.40062"
6473 rx="5"
6474 ry="5"
6475 inkscape:label="#rect2160" />
6476 <text
6477 xml:space="preserve"
6478 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
6479 x="185.71167"
6480 y="235.2605"
6481 id="text4645-7"
6482 sodipodi:linespacing="100%"><tspan
6483 sodipodi:role="line"
6484 id="tspan4647-7"
6485 x="185.71167"
6486 y="235.2605"
6487 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">3</tspan></text>
6488 </g>
6489 <g
6490 inkscape:label="#g4722"
6491 transform="matrix(0.23275892,0,0,0.23275892,-59.11878,-40.818434)"
6492 id="4-6"
6493 style="stroke:#570f0f;stroke-opacity:1">
6494 <rect
6495 inkscape:label="#rect2160"
6496 ry="5"
6497 rx="5"
6498 y="177.40062"
6499 x="245.13521"
6500 height="70.532257"
6501 width="67.956474"
6502 id="rect4651-9"
6503 style="fill:url(#linearGradient6323-5);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
6504 <text
6505 sodipodi:linespacing="100%"
6506 id="text4653-1"
6507 y="235.573"
6508 x="262.45718"
6509 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
6510 xml:space="preserve"><tspan
6511 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
6512 y="235.573"
6513 x="262.45718"
6514 id="tspan4655-19"
6515 sodipodi:role="line">4</tspan></text>
6516 </g>
6517 <g
6518 inkscape:label="#g4727"
6519 transform="matrix(0.23275892,0,0,0.23275892,-58.7678,-40.818434)"
6520 id="5-0"
6521 style="stroke:#570f0f;stroke-opacity:1">
6522 <rect
6523 style="fill:url(#linearGradient6325-3);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
6524 id="rect4659-8"
6525 width="67.956474"
6526 height="70.532257"
6527 x="322.27808"
6528 y="177.40062"
6529 rx="5"
6530 ry="5"
6531 inkscape:label="#rect2160" />
6532 <text
6533 xml:space="preserve"
6534 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
6535 x="338.41257"
6536 y="234.86987"
6537 id="text4661-9"
6538 sodipodi:linespacing="100%"><tspan
6539 sodipodi:role="line"
6540 id="tspan4663-8"
6541 x="338.41257"
6542 y="234.86987"
6543 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">5</tspan></text>
6544 </g>
6545 <g
6546 inkscape:label="#g4776"
6547 transform="matrix(0.23275892,0,0,0.23275892,-58.59629,-40.818434)"
6548 id="6-8"
6549 style="stroke:#570f0f;stroke-opacity:1">
6550 <rect
6551 inkscape:label="#rect2160"
6552 ry="5"
6553 rx="5"
6554 y="177.40062"
6555 x="400.19199"
6556 height="70.532257"
6557 width="67.956474"
6558 id="rect4667-0"
6559 style="fill:url(#linearGradient6327-8);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
6560 <text
6561 sodipodi:linespacing="100%"
6562 id="text4669-3"
6563 y="235.27612"
6564 x="416.63898"
6565 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
6566 xml:space="preserve"><tspan
6567 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
6568 y="235.27612"
6569 x="416.63898"
6570 id="tspan4671-70"
6571 sodipodi:role="line">6</tspan></text>
6572 </g>
6573 <g
6574 inkscape:label="#g4732"
6575 transform="matrix(0.23275892,0,0,0.23275892,-59.39588,-40.818434)"
6576 id="7-6"
6577 style="stroke:#570f0f;stroke-opacity:1">
6578 <rect
6579 style="fill:url(#linearGradient6329-31);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
6580 id="rect4675-9"
6581 width="67.956474"
6582 height="70.532257"
6583 x="482.27808"
6584 y="177.40062"
6585 rx="5"
6586 ry="5"
6587 inkscape:label="#rect2160" />
6588 <text
6589 xml:space="preserve"
6590 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
6591 x="498.39694"
6592 y="235.27612"
6593 id="text4677-2"
6594 sodipodi:linespacing="100%"><tspan
6595 sodipodi:role="line"
6596 id="tspan4679-1"
6597 x="498.39694"
6598 y="235.27612"
6599 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">7</tspan></text>
6600 </g>
6601 <g
6602 inkscape:label="#g4737"
6603 transform="matrix(0.23275892,0,0,0.23275892,-59.70992,-40.818434)"
6604 id="8-7"
6605 style="stroke:#570f0f;stroke-opacity:1">
6606 <rect
6607 inkscape:label="#rect2160"
6608 ry="5"
6609 rx="5"
6610 y="177.40062"
6611 x="562.27808"
6612 height="70.532257"
6613 width="67.956474"
6614 id="rect4683-7"
6615 style="fill:url(#linearGradient6331-2);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
6616 <text
6617 sodipodi:linespacing="100%"
6618 id="text4685-9"
6619 y="235.27612"
6620 x="578.56879"
6621 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
6622 xml:space="preserve"><tspan
6623 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
6624 y="235.27612"
6625 x="578.56879"
6626 id="tspan4687-7"
6627 sodipodi:role="line">8</tspan></text>
6628 </g>
6629 <g
6630 inkscape:label="#g4750"
6631 transform="matrix(0.23275892,0,0,0.23275892,-60.35647,-40.818434)"
6632 id="9-6"
6633 style="stroke:#570f0f;stroke-opacity:1">
6634 <rect
6635 style="fill:url(#linearGradient6333-1);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
6636 id="rect4691-2"
6637 width="67.956474"
6638 height="70.532257"
6639 x="643.70667"
6640 y="177.40062"
6641 rx="5"
6642 ry="5"
6643 inkscape:label="#rect2160" />
6644 <text
6645 xml:space="preserve"
6646 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
6647 x="659.96613"
6648 y="235.27612"
6649 id="text4693-7"
6650 sodipodi:linespacing="100%"><tspan
6651 sodipodi:role="line"
6652 id="tspan4695-1"
6653 x="659.96613"
6654 y="235.27612"
6655 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial">9</tspan></text>
6656 </g>
6657 <g
6658 inkscape:label="#g4755"
6659 transform="matrix(0.23275892,0,0,0.23275892,-61.33552,-40.818434)"
6660 id="0-5"
6661 style="stroke:#570f0f;stroke-opacity:1">
6662 <rect
6663 inkscape:label="#rect2160"
6664 ry="5"
6665 rx="5"
6666 y="177.40062"
6667 x="726.56378"
6668 height="70.532257"
6669 width="67.956474"
6670 id="rect4699-88"
6671 style="fill:url(#linearGradient6335-1);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
6672 <text
6673 sodipodi:linespacing="100%"
6674 id="text4701-4"
6675 y="235.27612"
6676 x="742.94824"
6677 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
6678 xml:space="preserve"><tspan
6679 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
6680 y="235.27612"
6681 x="742.94824"
6682 id="tspan4703-5"
6683 sodipodi:role="line">0</tspan></text>
6684 </g>
6685 <g
6686 inkscape:label="#g5780"
6687 transform="matrix(0.23275892,0,0,0.23275892,-59.00795,-40.818434)"
6688 id="enter-6"
6689 style="stroke:#570f0f;stroke-opacity:1">
6690 <rect
6691 inkscape:label="#rect2160"
6692 ry="5"
6693 rx="5"
6694 y="433.26514"
6695 x="561.49011"
6696 height="70.532257"
6697 width="223.54247"
6698 id="rect5762-5"
6699 style="fill:url(#linearGradient6337-1);fill-opacity:1;fill-rule:nonzero;stroke:#570f0f;stroke-width:1.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
6700 <text
6701 sodipodi:linespacing="100%"
6702 id="text5771-6"
6703 y="491.43753"
6704 x="562.58948"
6705 style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#570f0f;stroke-opacity:1;font-family:Zekton"
6706 xml:space="preserve"><tspan
6707 style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;stroke:#570f0f;stroke-opacity:1;font-family:Arial"
6708 y="491.43753"
6709 x="562.58948"
6710 id="tspan5773-8"
6711 sodipodi:role="line">ENTER</tspan></text>
6712 </g>
6713 </g>
6714 <path
6715 style="fill:none;stroke:#4cea15;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
6716 d="m 372.5284,92.269596 0.68494,52.404204"
6717 id="path6285"
6718 inkscape:connector-type="polyline"
6719 inkscape:connection-start="#rect4497"
6720 inkscape:connection-end="#rect3695" />
6721 <path
6722 style="fill:none;stroke:#07ff00;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
6723 d="m 728.98863,98.204487 0.69887,46.345193"
6724 id="path7136"
6725 inkscape:connector-type="polyline"
6726 inkscape:connection-start="#g6750" />
6727 <path
6728 style="fill:none;stroke:#06ff00;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
6729 d="m 37.066258,97.891987 0.09752,46.781813"
6730 id="path5028"
6731 inkscape:connector-type="polyline"
6732 inkscape:connection-end="#rect3695-4-1"
6733 inkscape:connection-start="#g4874" />
6734 <path
6735 style="fill:none;stroke:#000000;stroke-width:3.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Send-9);marker-mid:none;marker-end:url(#Arrow1Mend)"
6736 d="m 97.76109,405.78583 c 49.81163,34.41382 20.9084,50.49106 -23.630766,17.69543"
6737 id="path7783"
6738 sodipodi:nodetypes="cc" />
6739 <path
6740 style="fill:none;stroke:#000000;stroke-width:3.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Send-9);marker-mid:none;marker-end:url(#Arrow1Mend)"
6741 d="m 312.09795,404.48277 c 20.4602,56.98148 -12.3994,53.22371 -29.51521,0.6277"
6742 id="path7783-6"
6743 sodipodi:nodetypes="cc" />
6744 <path
6745 style="fill:none;stroke:#000000;stroke-width:3.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Send-9);marker-mid:none;marker-end:url(#Arrow1Mend)"
6746 d="m 352.24273,416.35623 c 50.54054,-33.33409 54.64651,-0.51617 7.57791,28.53274"
6747 id="path7783-6-0"
6748 sodipodi:nodetypes="cc" />
6749 <path
6750 style="fill:none;stroke:#000000;stroke-width:3.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Send-9);marker-mid:none;marker-end:url(#Arrow1Mend)"
6751 d="m 586.4612,429.62887 c -44.53641,41.01239 -53.8555,9.27868 -12.05841,-26.94693"
6752 id="path7783-6-7"
6753 sodipodi:nodetypes="cc" />
6754 <path
6755 style="fill:none;stroke:#000000;stroke-width:3.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Send-9);marker-mid:none;marker-end:url(#Arrow1Mend)"
6756 d="m 109.00517,932.32503 c 49.81163,34.41382 20.9084,50.49106 -23.630766,17.69543"
6757 id="path7783-2"
6758 sodipodi:nodetypes="cc" />
6759 </g>
6760 </svg>
@@ -1,270 +1,272 b''
1 1 #!/usr/bin/env python
2 2 """A simple interactive kernel that talks to a frontend over 0MQ.
3 3
4 4 Things to do:
5 5
6 6 * Finish implementing `raw_input`.
7 7 * Implement `set_parent` logic. Right before doing exec, the Kernel should
8 8 call set_parent on all the PUB objects with the message about to be executed.
9 9 * Implement random port and security key logic.
10 10 * Implement control messages.
11 11 * Implement event loop and poll version.
12 12 """
13 13
14 14 import __builtin__
15 15 import sys
16 16 import time
17 17 import traceback
18 18
19 19 from code import CommandCompiler
20 20
21 21 import zmq
22 22
23 23 from session import Session, Message, extract_header
24 24 from completer import KernelCompleter
25 25
26 26 class OutStream(object):
27 27 """A file like object that publishes the stream to a 0MQ PUB socket."""
28 28
29 29 def __init__(self, session, pub_socket, name, max_buffer=200):
30 30 self.session = session
31 31 self.pub_socket = pub_socket
32 32 self.name = name
33 33 self._buffer = []
34 34 self._buffer_len = 0
35 35 self.max_buffer = max_buffer
36 36 self.parent_header = {}
37 37
38 38 def set_parent(self, parent):
39 39 self.parent_header = extract_header(parent)
40 40
41 41 def close(self):
42 42 self.pub_socket = None
43 43
44 44 def flush(self):
45 45 if self.pub_socket is None:
46 46 raise ValueError(u'I/O operation on closed file')
47 47 else:
48 48 if self._buffer:
49 49 data = ''.join(self._buffer)
50 50 content = {u'name':self.name, u'data':data}
51 51 msg = self.session.msg(u'stream', content=content,
52 52 parent=self.parent_header)
53 53 print>>sys.__stdout__, Message(msg)
54 54 self.pub_socket.send_json(msg)
55 55 self._buffer_len = 0
56 56 self._buffer = []
57 57
58 58 def isattr(self):
59 59 return False
60 60
61 61 def next(self):
62 62 raise IOError('Read not supported on a write only stream.')
63 63
64 64 def read(self, size=None):
65 65 raise IOError('Read not supported on a write only stream.')
66 66
67 67 readline=read
68 68
69 69 def write(self, s):
70 70 if self.pub_socket is None:
71 71 raise ValueError('I/O operation on closed file')
72 72 else:
73 73 self._buffer.append(s)
74 74 self._buffer_len += len(s)
75 75 self._maybe_send()
76 76
77 77 def _maybe_send(self):
78 78 if '\n' in self._buffer[-1]:
79 79 self.flush()
80 80 if self._buffer_len > self.max_buffer:
81 81 self.flush()
82 82
83 83 def writelines(self, sequence):
84 84 if self.pub_socket is None:
85 85 raise ValueError('I/O operation on closed file')
86 86 else:
87 87 for s in sequence:
88 88 self.write(s)
89 89
90 90
91 91 class DisplayHook(object):
92 92
93 93 def __init__(self, session, pub_socket):
94 94 self.session = session
95 95 self.pub_socket = pub_socket
96 96 self.parent_header = {}
97 97
98 98 def __call__(self, obj):
99 99 if obj is None:
100 100 return
101 101
102 102 __builtin__._ = obj
103 103 msg = self.session.msg(u'pyout', {u'data':repr(obj)},
104 104 parent=self.parent_header)
105 105 self.pub_socket.send_json(msg)
106 106
107 107 def set_parent(self, parent):
108 108 self.parent_header = extract_header(parent)
109 109
110 110
111 111 class RawInput(object):
112 112
113 113 def __init__(self, session, socket):
114 114 self.session = session
115 115 self.socket = socket
116 116
117 117 def __call__(self, prompt=None):
118 118 msg = self.session.msg(u'raw_input')
119 119 self.socket.send_json(msg)
120 120 while True:
121 121 try:
122 122 reply = self.socket.recv_json(zmq.NOBLOCK)
123 123 except zmq.ZMQError, e:
124 124 if e.errno == zmq.EAGAIN:
125 125 pass
126 126 else:
127 127 raise
128 128 else:
129 129 break
130 130 return reply[u'content'][u'data']
131 131
132 132
133 133 class Kernel(object):
134 134
135 135 def __init__(self, session, reply_socket, pub_socket):
136 136 self.session = session
137 137 self.reply_socket = reply_socket
138 138 self.pub_socket = pub_socket
139 139 self.user_ns = {}
140 140 self.history = []
141 141 self.compiler = CommandCompiler()
142 142 self.completer = KernelCompleter(self.user_ns)
143 143
144 144 # Build dict of handlers for message types
145 145 self.handlers = {}
146 146 for msg_type in ['execute_request', 'complete_request']:
147 147 self.handlers[msg_type] = getattr(self, msg_type)
148 148
149 149 def abort_queue(self):
150 150 while True:
151 151 try:
152 152 ident = self.reply_socket.recv(zmq.NOBLOCK)
153 153 except zmq.ZMQError, e:
154 154 if e.errno == zmq.EAGAIN:
155 155 break
156 156 else:
157 157 assert self.reply_socket.rcvmore(), "Unexpected missing message part."
158 158 msg = self.reply_socket.recv_json()
159 159 print>>sys.__stdout__, "Aborting:"
160 160 print>>sys.__stdout__, Message(msg)
161 161 msg_type = msg['msg_type']
162 162 reply_type = msg_type.split('_')[0] + '_reply'
163 163 reply_msg = self.session.msg(reply_type, {'status' : 'aborted'}, msg)
164 164 print>>sys.__stdout__, Message(reply_msg)
165 165 self.reply_socket.send(ident,zmq.SNDMORE)
166 166 self.reply_socket.send_json(reply_msg)
167 167 # We need to wait a bit for requests to come in. This can probably
168 168 # be set shorter for true asynchronous clients.
169 169 time.sleep(0.1)
170 170
171 171 def execute_request(self, ident, parent):
172 172 try:
173 173 code = parent[u'content'][u'code']
174 174 except:
175 175 print>>sys.__stderr__, "Got bad msg: "
176 176 print>>sys.__stderr__, Message(parent)
177 177 return
178 178 pyin_msg = self.session.msg(u'pyin',{u'code':code}, parent=parent)
179 179 self.pub_socket.send_json(pyin_msg)
180 180 try:
181 181 comp_code = self.compiler(code, '<zmq-kernel>')
182 182 sys.displayhook.set_parent(parent)
183 183 exec comp_code in self.user_ns, self.user_ns
184 184 except:
185 185 result = u'error'
186 186 etype, evalue, tb = sys.exc_info()
187 187 tb = traceback.format_exception(etype, evalue, tb)
188 188 exc_content = {
189 189 u'status' : u'error',
190 190 u'traceback' : tb,
191 191 u'etype' : unicode(etype),
192 192 u'evalue' : unicode(evalue)
193 193 }
194 194 exc_msg = self.session.msg(u'pyerr', exc_content, parent)
195 195 self.pub_socket.send_json(exc_msg)
196 196 reply_content = exc_content
197 197 else:
198 198 reply_content = {'status' : 'ok'}
199 199 reply_msg = self.session.msg(u'execute_reply', reply_content, parent)
200 200 print>>sys.__stdout__, Message(reply_msg)
201 201 self.reply_socket.send(ident, zmq.SNDMORE)
202 202 self.reply_socket.send_json(reply_msg)
203 203 if reply_msg['content']['status'] == u'error':
204 204 self.abort_queue()
205 205
206 206 def complete_request(self, ident, parent):
207 207 matches = {'matches' : self.complete(parent),
208 208 'status' : 'ok'}
209 209 completion_msg = self.session.send(self.reply_socket, 'complete_reply',
210 210 matches, parent, ident)
211 211 print >> sys.__stdout__, completion_msg
212 212
213 213 def complete(self, msg):
214 214 return self.completer.complete(msg.content.line, msg.content.text)
215 215
216 216 def start(self):
217 217 while True:
218 218 ident = self.reply_socket.recv()
219 219 assert self.reply_socket.rcvmore(), "Unexpected missing message part."
220 220 msg = self.reply_socket.recv_json()
221 221 omsg = Message(msg)
222 print>>sys.__stdout__
222 223 print>>sys.__stdout__, omsg
223 224 handler = self.handlers.get(omsg.msg_type, None)
224 225 if handler is None:
225 226 print >> sys.__stderr__, "UNKNOWN MESSAGE TYPE:", omsg
226 227 else:
227 228 handler(ident, omsg)
228 229
229 230
230 231 def main():
231 232 c = zmq.Context()
232 233
233 234 ip = '127.0.0.1'
234 235 port_base = 5575
235 236 connection = ('tcp://%s' % ip) + ':%i'
236 237 rep_conn = connection % port_base
237 238 pub_conn = connection % (port_base+1)
238 239
239 240 print >>sys.__stdout__, "Starting the kernel..."
240 print >>sys.__stdout__, "On:",rep_conn, pub_conn
241 print >>sys.__stdout__, "XREP Channel:", rep_conn
242 print >>sys.__stdout__, "PUB Channel:", pub_conn
241 243
242 244 session = Session(username=u'kernel')
243 245
244 246 reply_socket = c.socket(zmq.XREP)
245 247 reply_socket.bind(rep_conn)
246 248
247 249 pub_socket = c.socket(zmq.PUB)
248 250 pub_socket.bind(pub_conn)
249 251
250 252 stdout = OutStream(session, pub_socket, u'stdout')
251 253 stderr = OutStream(session, pub_socket, u'stderr')
252 254 sys.stdout = stdout
253 255 sys.stderr = stderr
254 256
255 257 display_hook = DisplayHook(session, pub_socket)
256 258 sys.displayhook = display_hook
257 259
258 260 kernel = Kernel(session, reply_socket, pub_socket)
259 261
260 262 # For debugging convenience, put sleep and a string in the namespace, so we
261 263 # have them every time we start.
262 264 kernel.user_ns['sleep'] = time.sleep
263 265 kernel.user_ns['s'] = 'Test string'
264 266
265 267 print >>sys.__stdout__, "Use Ctrl-\\ (NOT Ctrl-C!) to terminate."
266 268 kernel.start()
267 269
268 270
269 271 if __name__ == '__main__':
270 272 main()
@@ -1,119 +1,122 b''
1 1 import os
2 2 import uuid
3 3 import pprint
4 4
5 5 import zmq
6 6
7 7 class Message(object):
8 8 """A simple message object that maps dict keys to attributes.
9 9
10 10 A Message can be created from a dict and a dict from a Message instance
11 11 simply by calling dict(msg_obj)."""
12 12
13 13 def __init__(self, msg_dict):
14 14 dct = self.__dict__
15 15 for k, v in msg_dict.iteritems():
16 16 if isinstance(v, dict):
17 17 v = Message(v)
18 18 dct[k] = v
19 19
20 20 # Having this iterator lets dict(msg_obj) work out of the box.
21 21 def __iter__(self):
22 22 return iter(self.__dict__.iteritems())
23 23
24 24 def __repr__(self):
25 25 return repr(self.__dict__)
26 26
27 27 def __str__(self):
28 28 return pprint.pformat(self.__dict__)
29 29
30 30 def __contains__(self, k):
31 31 return k in self.__dict__
32 32
33 33 def __getitem__(self, k):
34 34 return self.__dict__[k]
35 35
36 36
37 37 def msg_header(msg_id, username, session):
38 38 return {
39 39 'msg_id' : msg_id,
40 40 'username' : username,
41 41 'session' : session
42 42 }
43 43
44 44
45 45 def extract_header(msg_or_header):
46 46 """Given a message or header, return the header."""
47 47 if not msg_or_header:
48 48 return {}
49 49 try:
50 50 # See if msg_or_header is the entire message.
51 51 h = msg_or_header['header']
52 52 except KeyError:
53 53 try:
54 54 # See if msg_or_header is just the header
55 55 h = msg_or_header['msg_id']
56 56 except KeyError:
57 57 raise
58 58 else:
59 59 h = msg_or_header
60 60 if not isinstance(h, dict):
61 61 h = dict(h)
62 62 return h
63 63
64 64
65 65 class Session(object):
66 66
67 def __init__(self, username=os.environ.get('USER','username')):
67 def __init__(self, username=os.environ.get('USER','username'), session=None):
68 68 self.username = username
69 self.session = str(uuid.uuid4())
69 if session is None:
70 self.session = str(uuid.uuid4())
71 else:
72 self.session = session
70 73 self.msg_id = 0
71 74
72 75 def msg_header(self):
73 76 h = msg_header(self.msg_id, self.username, self.session)
74 77 self.msg_id += 1
75 78 return h
76 79
77 80 def msg(self, msg_type, content=None, parent=None):
78 81 msg = {}
79 82 msg['header'] = self.msg_header()
80 83 msg['parent_header'] = {} if parent is None else extract_header(parent)
81 84 msg['msg_type'] = msg_type
82 85 msg['content'] = {} if content is None else content
83 86 return msg
84 87
85 88 def send(self, socket, msg_type, content=None, parent=None, ident=None):
86 89 msg = self.msg(msg_type, content, parent)
87 90 if ident is not None:
88 91 socket.send(ident, zmq.SNDMORE)
89 92 socket.send_json(msg)
90 93 omsg = Message(msg)
91 94 return omsg
92 95
93 96 def recv(self, socket, mode=zmq.NOBLOCK):
94 97 try:
95 98 msg = socket.recv_json(mode)
96 99 except zmq.ZMQError, e:
97 100 if e.errno == zmq.EAGAIN:
98 101 # We can convert EAGAIN to None as we know in this case
99 102 # recv_json won't return None.
100 103 return None
101 104 else:
102 105 raise
103 106 return Message(msg)
104 107
105 108 def test_msg2obj():
106 109 am = dict(x=1)
107 110 ao = Message(am)
108 111 assert ao.x == am['x']
109 112
110 113 am['y'] = dict(z=1)
111 114 ao = Message(am)
112 115 assert ao.y.z == am['y']['z']
113 116
114 117 k1, k2 = 'y', 'z'
115 118 assert ao[k1][k2] == am[k1][k2]
116 119
117 120 am2 = dict(ao)
118 121 assert am['x'] == am2['x']
119 122 assert am['y']['z'] == am2['y']['z']
General Comments 0
You need to be logged in to leave comments. Login now