aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authors-ol <s+removethis@s-ol.nu>2023-04-25 16:26:21 +0000
committers-ol <s+removethis@s-ol.nu>2023-04-28 08:21:08 +0000
commit4cc327e6d85153bb089ee4e203ed1981c35257a1 (patch)
tree03e0d007b0c755452cc7eb9d8f5342a28ca25c6d
parentupdate all board definitions (diff)
downloadfirmware-4cc327e6d85153bb089ee4e203ed1981c35257a1.tar.gz
firmware-4cc327e6d85153bb089ee4e203ed1981c35257a1.zip
simulator: web-based, interactive UI
-rw-r--r--README.md25
-rw-r--r--config.py12
-rw-r--r--hex33board/__init__.py4
-rw-r--r--hex33board/boards/simulator.py363
-rw-r--r--requirements.sim.txt2
-rw-r--r--simulator.py7
-rw-r--r--template.svg267
7 files changed, 500 insertions, 180 deletions
diff --git a/README.md b/README.md
index a62b116..a53d8f1 100644
--- a/README.md
+++ b/README.md
@@ -1,15 +1,29 @@
# 0x33.board firmware
-## Installation
+See [the documentation][docs] for information on how to use the firmware.
+The rest of this documentation contains information for firmware development.
-1. Copy all files from this repository to the CircuitPython drive
-2. Install the dependencies:
+## Installation
+1. Make sure your board is in `dev_mode` (see below)
+2. Copy all files from this repository to the CircuitPython drive
+3. Install the dependencies:
- using [circup][circup]: `$ circup [--path /path/to/drive] install -r requirements.txt`
- manually download the needed libraries from the [Adafruit CircuitPython Library Bundle][cpy-lib-bundle]
and place them in the `lib` folder
-3. Set hardware settings in `config.py`:
+4. Set hardware settings in `config.py`:
Import the module from `hex33board.boards` corresponding to the hardware revision you have.
+### Simulator
+The simulator can be run directly in the repo and using CPython.
+
+1. (optionally) create and enter a venv
+ `$ python -m venv --system-site-packages venv`
+ `$ source venv/bin/activate`
+ The `--system-site-packages` option allows you to use your distribution's Pillow packages.
+2. install the dependencies: `$ pip install -r requirements.sim.txt`
+3. run the simulator: `$ python simulator.py`
+4. open the web interface ([http://localhost:8000](http://localhost:8000))
+
## Boot modes
After a reset, `boot.py` is executed. Depending on the `dev_mode` value in `config.py` and
whether the menu button (very top left of the board) is pressed, the board boots in different modes:
@@ -25,5 +39,8 @@ While "dev mode" is active, settings changed on the board aren't saved.
If `dev_mode = True` in `config.py`, things work the other way around:
the board goes into "dev mode" by default, but will start in "normal mode" when the menu key is held during reset.
+## Using the Simulator
+
+[docs]: https://s-ol.nu/0x33.board/doc
[circup]: https://github.com/adafruit/circup
[cpy-lib-bundle]: https://circuitpython.org/libraries
diff --git a/config.py b/config.py
index e68d451..b71c0cb 100644
--- a/config.py
+++ b/config.py
@@ -1,5 +1,15 @@
from hex33board.boards.r4_5e4bf5c import *
+''' boot in dev_mode by default
+
+When active, the firmware drive will be writable on boot.
+'''
dev_mode = False
-simulator = False
+
+''' forward Key events via USB MIDI
+
+This can be useful to control a simulator instance running on a computer
+using the physical buttons on a hardware unit.
+'''
+sysex_key_sync = False
diff --git a/hex33board/__init__.py b/hex33board/__init__.py
index e550087..717a589 100644
--- a/hex33board/__init__.py
+++ b/hex33board/__init__.py
@@ -260,7 +260,7 @@ class Keyboard:
self.mode.tick(ticks)
for (i, pressed) in self.matrix.scan_for_changes():
- if self.board.simulator:
+ if self.board.sysex_key_sync:
msg = SystemExclusive(b"\0s-", [i, pressed])
self.broadcast(msg)
mode = self.sticky_modes.pop(i, self.mode)
@@ -279,4 +279,4 @@ class Keyboard:
def run(self):
while True:
- self.tick()
+ self.tick()
diff --git a/hex33board/boards/simulator.py b/hex33board/boards/simulator.py
index 83c29b1..f46ec0c 100644
--- a/hex33board/boards/simulator.py
+++ b/hex33board/boards/simulator.py
@@ -1,19 +1,22 @@
import displayio
import rtmidi
-import pygame
from io import BytesIO
from math import sqrt
from base64 import b64encode
from xml.etree import ElementTree
-from blinka_displayio_pygamedisplay import PyGameDisplay
from adafruit_midi import MIDI, MIDIMessage
from adafruit_midi.system_exclusive import SystemExclusive
+from PIL import Image
import adafruit_midi.note_on
import adafruit_midi.note_off
+from adafruit_ticks import ticks_ms
-from PyQt5.QtSvg import QSvgWidget
-from PyQt5.QtWidgets import QApplication, QWidget, QVBoxLayout
-from PyQt5.QtCore import QThread, QObject, pyqtSignal
+from threading import Thread
+import json
+import asyncio
+import websockets.server
+from websockets.exceptions import ConnectionClosed
+from http.server import BaseHTTPRequestHandler, HTTPServer
from .. import Keyboard as BaseKeyboard
@@ -21,6 +24,8 @@ rtmidi_api = rtmidi.API_UNSPECIFIED
if rtmidi.API_UNIX_JACK in rtmidi.get_compiled_api():
rtmidi_api = rtmidi.API_UNIX_JACK
+display_rotation = 0
+
class MIDI:
def __init__(self, inp, out):
@@ -68,58 +73,59 @@ def create_matrix(board):
class DummyMatrix:
def __init__(self, board):
self.board = board
+ self.queue = []
- def scan_for_changes(self):
- if not self.board.midi_usb:
- return
-
- msg = self.board.midi_usb.receive()
+ def scan_midi(self, midi):
+ msg = midi.receive()
while msg:
if isinstance(msg, SystemExclusive) and msg.manufacturer_id == b"\0s-":
key, state = msg.data
- yield key, state
+ self.queue.append((key, state))
- msg = self.board.midi_usb.receive()
+ msg = midi.receive()
- return DummyMatrix(board)
+ def scan_for_changes(self):
+ if self.board.midi_usb:
+ self.scan_midi(self.board.midi_usb)
+ yield from self.queue
+ self.queue.clear()
-display_rotation = 0
+
+ return DummyMatrix(board)
def create_display(board, **kwargs):
- class ScaledDisplay:
- def __init__(self, board, width, height, scale=1, **args):
+ class Display(displayio.Display):
+ def __init__(self, board, **args):
self.board = board
- self.display = PyGameDisplay(
- width=width * scale, height=height * scale, **args
- )
- self.group = displayio.Group(scale=scale)
- self.display.show(self.group)
- def refresh(self):
- self.display.refresh()
+ super().__init__(None, None, **args)
- if not hasattr(self.board, "svg_preview"):
- return
+ def _initialize(self, init_sequence):
+ pass
- scale = self.group.scale
- res = (self.display.width // scale, self.display.height // scale)
- shot = self.display._buffer.convert("1").resize(res)
+ def _write(self, command, data):
+ pass
- with BytesIO() as buf:
- shot.save(buf, format="PNG")
- data = b64encode(buf.getvalue())
- self.board.svg_preview.set_oled(
- "data:image/png;base64," + data.decode()
- )
+ def refresh(self):
+ if self._core._current_group is not None:
+ buffer = Image.new("RGBA", (self._core._width, self._core._height))
+ self._core._current_group._fill_area(buffer)
+ self._buffer.paste(buffer)
+
+ # subrects = self._core.get_refresh_areas()
- def show(self, group):
- while len(self.group):
- self.group.pop()
- self.group.append(group)
+ def get_png(self):
+ with BytesIO() as buf:
+ self._buffer.save(buf, format="PNG")
+ return buf.getvalue()
+ # data = b64encode(buf.getvalue())
+ # self.board.svg_preview.set_oled(
+ # "data:image/png;base64," + data.decode()
+ # )
- return ScaledDisplay(board, scale=4, **kwargs)
+ return Display(board, **kwargs)
def create_pixels(board, **kwargs):
@@ -132,16 +138,30 @@ def create_pixels(board, **kwargs):
def __setitem__(self, key, value):
self.pixels[key] = value
- def show(self):
- if not hasattr(self.board, "svg_preview"):
- return
-
- self.board.svg_preview.set_pixels(self.pixels)
-
def fill(self, value):
for i in range(len(self.pixels)):
self.pixels[i] = value
+ def hex_colors(self):
+ colors = []
+ for i, rgb in enumerate(self.pixels):
+ if not isinstance(rgb, tuple):
+ rgb = (rgb >> 16, (rgb >> 8) & 0xFF, rgb & 0xFF)
+ colors.append(
+ "#{0:02x}{1:02x}{2:02x}".format(
+ *(int(128 + sqrt(x) * 127) for x in rgb)
+ )
+ )
+ return colors
+
+ def show(self):
+ return self.board.ws_queue.put(
+ {
+ "type": "pixels",
+ "colors": self.hex_colors(),
+ }
+ )
+
return DummyNeopixels(board)
@@ -157,86 +177,199 @@ def create_i2ctarget(board, **kwargs):
pass
-class SVGPreview(QWidget):
- def __init__(self):
- super().__init__()
-
- self.template = ElementTree.parse("template.svg")
- self.oled = self.template.find(".//*[@id='oled']")
- self.leds = self.template.findall(".//*[@class='btn']")
-
- self.setFixedWidth(492 * 2)
- self.setFixedHeight(241 * 2)
- layout = QVBoxLayout(self)
-
- self.widget = QSvgWidget(parent=self)
- self.widget.setGeometry(0, 0, 492, 241)
- layout.addWidget(self.widget)
-
- self.update()
-
- def set_pixels(self, pixels):
- for i, rgb in enumerate(pixels):
- if not isinstance(rgb, tuple):
- rgb = (rgb >> 16, (rgb >> 8) & 0xFF, rgb & 0xFF)
- hex = "#{0:02x}{1:02x}{2:02x}".format(
- *(int(128 + sqrt(x) * 127) for x in rgb)
- )
- self.leds[i].set("style", "stroke:#000000;stroke-width:1;fill:" + hex)
-
- def set_oled(self, data):
- self.oled.set("href", data)
-
- def update(self):
- data = ElementTree.tostring(self.template.getroot(), encoding="unicode")
- self.widget.load(data.encode("utf-8"))
+# class SVGPreview:
+# def __init__(self):
+# self.template = ElementTree.parse("template.svg")
+# self.oled = self.template.find(".//*[@id='oled']")
+# self.leds = self.template.findall(".//*[@class='btn']")
+#
+# self.update()
+#
+# def set_oled(self, data):
+# self.oled.set("href", data)
+#
+# def set_pixels(self, colors):
+# for i, color in enumerate(colors):
+# self.leds[i].set("style", "stroke:#000;stroke-width:1;fill:"+color)
+#
+# def update(self):
+# data = ElementTree.tostring(self.template.getroot(), encoding="unicode")
+# print(data.encode("utf-8"))
+
+
+def HTTPHandler(board):
+ class HTTPHandler(BaseHTTPRequestHandler):
+ def __init__(self, *args, **kwargs):
+ with open("template.svg", "rb") as f:
+ template = f.read()
+
+ self.index = b"""<!DOCTYPE html>
+<html>
+ <head>
+ <style>
+ svg { width: 100%; height: 100%; }
+ </style>
+ </head>
+ <body>
+ """
+ self.index += template
+ self.index += b"""
+ <script type="text/javascript">
+ const svg = document.body.firstElementChild;
+ const oled = document.evaluate(".//*[@id='oled']", svg).iterateNext();
+ let websocket;
+
+ let res = document.evaluate(".//*[contains(@class,'led')]", svg);
+ let node = res.iterateNext();
+ const pixels = {};
+ while (node) {
+ pixels[+node.dataset.ledI] = node;
+ node = res.iterateNext();
+ }
+
+ const keys = {};
+ res = document.evaluate(".//*[contains(@class,'key')]", svg);
+ node = res.iterateNext();
+ while (node) {
+ keys[+node.dataset.keyI] = node;
+ node = res.iterateNext();
+ }
+
+
+ Object.values(keys).forEach((node, key) => {
+ node.style.cursor = 'pointer';
+ node.onpointerdown = (e) => {
+ if (!websocket) return;
+ websocket.send(JSON.stringify({ type: 'key', key, down: true }));
+ };
+ node.onpointerup = (e) => {
+ if (!websocket) return;
+ websocket.send(JSON.stringify({ type: 'key', key, down: false }));
+ };
+ });
+
+ let lastBlob = null;
+ setInterval(() => {
+ fetch('/oled.png#' + Math.random())
+ .then((response) => response.blob())
+ .then((blob) => {
+ if (lastBlob) URL.revokeObjectURL(lastBlob);
+ lastBlob = URL.createObjectURL(blob);
+ oled.href.baseVal = lastBlob;
+ });
+ }, 100);
+
+ websocket = new WebSocket(`ws://${location.hostname}:8001/`);
+ websocket.onmessage = ({ data }) => {
+ const msg = JSON.parse(data);
+ switch (msg.type) {
+ case 'pixels': {
+ msg.colors.forEach((color, i) => {
+ pixels[i].style.fill = color;
+ });
+ break;
+ }
+ }
+ };
+ websocket.onclose = (event) => console.log("socket closed");
+ websocket.onerror = (event) => console.error("socket error", event);
+ </script>
+ </body>
+</html>
+"""
+
+ super().__init__(*args, **kwargs)
+
+ def do_GET(self):
+ if self.path == "/":
+ self.send_response(200)
+ self.send_header("Content-type", "text/html")
+ self.end_headers()
+
+ self.wfile.write(self.index)
+ elif self.path == "/oled.png":
+ self.send_response(200)
+ self.send_header("Content-type", "image/png")
+ self.end_headers()
+
+ self.wfile.write(board.display.get_png())
+ else:
+ self.send_response(404)
+ self.send_header("Content-type", "text/plain")
+ self.end_headers()
+
+ self.wfile.write(b"Not Found")
+
+ def log_message(self, *args):
+ pass
+
+ return HTTPHandler
-class Worker(QObject):
- finished = pyqtSignal()
+class Keyboard(BaseKeyboard):
+ def run(self):
- def __init__(self, run):
- super().__init__()
- self._run = run
+ http_thread = Thread(target=self.run_http)
+ http_thread.start()
- def run(self):
- try:
- self._run()
- finally:
- self.finished.emit()
+ self.ws_queue = asyncio.Queue()
+ loop = asyncio.get_event_loop()
+ loop.create_task(self.run_ws())
+ loop.create_task(self.run_main())
+ loop.run_forever()
-class Keyboard(BaseKeyboard):
- def run(self):
- self.app = QApplication([])
+ async def run_main(self):
+ while True:
+ ticks = ticks_ms()
+ self.mode.tick(ticks)
- self.svg_preview = SVGPreview()
+ for (i, pressed) in self.matrix.scan_for_changes():
+ mode = self.sticky_modes.pop(i, self.mode)
+ should_stick = mode.key_event(i, pressed)
- self.thread = QThread()
- worker = Worker(self._run)
+ if should_stick:
+ self.sticky_modes[i] = mode
- worker.moveToThread(self.thread)
+ if self.i2c:
+ self.i2c.tick()
- self.thread.started.connect(worker.run)
- worker.finished.connect(self.app.quit)
+ self.mode.update_pixels(self.pixels)
- self.svg_preview.show()
- self.thread.start()
+ await self.pixels.show()
+ self.display.refresh()
- self.app.exec_()
+ await asyncio.sleep(1 / 120)
- def _run(self):
- i = 0
- while True:
- self.tick()
-
- for event in pygame.event.get():
- if event.type == pygame.QUIT:
- self.thread.quit()
- break
- if event.type == pygame.KEYDOWN:
- pass
-
- i = i + 1
- if i % 100 == 0:
- self.svg_preview.update()
+ def run_http(self):
+ try:
+ with HTTPServer(("", 8000), HTTPHandler(self)) as server:
+ server.serve_forever()
+ except e:
+ print(e)
+
+ async def run_ws(self):
+ connections = set()
+
+ async def handler(conn):
+ connections.add(conn)
+ try:
+ while True:
+ msg = json.loads(await conn.recv())
+ if msg['type'] == 'key':
+ key, down = msg['key'], msg['down']
+ self.matrix.queue.append((key, down))
+ except ConnectionClosed:
+ pass
+ finally:
+ connections.remove(conn)
+
+ async with websockets.serve(handler, "", 8001):
+ while True:
+ msg = await self.ws_queue.get()
+ data = json.dumps(msg)
+ for conn in connections:
+ try:
+ await conn.send(data)
+ except ConnectionClosed:
+ pass
diff --git a/requirements.sim.txt b/requirements.sim.txt
index 42e18fe..9cdf037 100644
--- a/requirements.sim.txt
+++ b/requirements.sim.txt
@@ -1,8 +1,6 @@
adafruit-circuitpython-display_shapes==2.4.2
adafruit-circuitpython-display_text==2.22.11
-blinka-displayio-pygamedisplay==2.2.2
adafruit-circuitpython-ticks==1.0.9
adafruit-circuitpython-midi==1.4.8
adafruit-circuitpython-colorsys
python-rtmidi
-PyQt5
diff --git a/simulator.py b/simulator.py
new file mode 100644
index 0000000..6516a0d
--- /dev/null
+++ b/simulator.py
@@ -0,0 +1,7 @@
+import hex33board.boards.simulator as board
+
+board.dev_mode = False
+board.sysex_key_sync = False
+
+k = board.Keyboard(board)
+k.run()
diff --git a/template.svg b/template.svg
index 57c510a..bc799a7 100644
--- a/template.svg
+++ b/template.svg
@@ -55,8 +55,10 @@
id="path7865" /><path
style="fill:#80b3ff;stroke:#000000;stroke-width:0.999999;fill-opacity:1"
d="m 59.96409,28.599463 0.38357,-0.02129 0.38252,-0.03545 0.38094,-0.04956 0.37886,-0.06359 0.37624,-0.07756 0.37312,-0.0914 0.3695,-0.105135 0.36535,-0.11871 0.36072,-0.132124 0.35559,-0.145362 0.34997,-0.158404 0.34388,-0.171233 0.33732,-0.183823 0.3303,-0.196162 0.32282,-0.208232 0.31491,-0.22002 0.30656,-0.231505 0.2978,-0.242675 0.28863,-0.253514 0.27906,-0.264006 0.26912,-0.274136 0.2588,-0.283894 0.24814,-0.293265 0.23713,-0.302231 0.2258,-0.310788 0.21416,-0.318921 0.20223,-0.326614 0.19003,-0.333866 0.17756,-0.34066 0.16485,-0.346986 0.15192,-0.352842 0.13877,-0.358215 0.12544,-0.363098 0.11194,-0.367483 0.0983,-0.371371 0.0845,-0.374748 0.0706,-0.377615 0.0566,-0.379965 0.0425,-0.381796 0.0284,-0.383106 0.0142,-0.383892 v -0.384157 l -0.0142,-0.383892 -0.0284,-0.383107 -0.0425,-0.381796 -0.0566,-0.379965 -0.0706,-0.377614 -0.0845,-0.374749 -0.0983,-0.371369 -0.11194,-0.367485 -0.12544,-0.363098 -0.13877,-0.358215 -0.15192,-0.35284 -0.16485,-0.346988 -0.17756,-0.34066 -0.19003,-0.333864 -0.20223,-0.326616 -0.21416,-0.31892 -0.2258,-0.310796 -0.23713,-0.302238 -0.24814,-0.293265 -0.2588,-0.283883 -0.26912,-0.274147 -0.27906,-0.264001 -0.28863,-0.253517 -0.2978,-0.242661 -0.30656,-0.2315205 -0.31491,-0.220006 -0.32282,-0.208244 -0.3303,-0.196162 -0.33732,-0.183812 -0.34388,-0.171286 -0.34997,-0.158493 -0.35559,-0.145345 -0.36072,-0.132195 -0.36535,-0.118692 -0.3695,-0.105188 -0.37312,-0.09133 -0.37624,-0.07747 -0.37886,-0.06361 -0.38094,-0.04957 -0.38252,-0.03536 -0.38357,-0.02132 -0.38409,-0.0071 -0.38408,0.0071 -0.38357,0.02132 -0.38252,0.03536 -0.38094,0.04957 -0.37886,0.06361 -0.37624,0.07747 -0.37312,0.09133 -0.3695,0.105188 -0.36535,0.118692 -0.36072,0.132195 -0.35559,0.145345 -0.34997,0.158493 -0.34388,0.171286 -0.33732,0.183812 -0.3303,0.196162 -0.32282,0.208244 -0.31491,0.220006 -0.30656,0.2315205 -0.2978,0.242661 -0.28863,0.253517 -0.27906,0.264001 -0.26912,0.274147 -0.2588,0.283883 -0.24814,0.293265 -0.23713,0.302238 -0.2258,0.310796 -0.21416,0.31892 -0.20224,0.326616 -0.19002,0.333864 -0.17756,0.34066 -0.16485,0.346988 -0.15192,0.35284 -0.13877,0.358215 -0.12544,0.363098 -0.11194,0.367485 -0.0983,0.371369 -0.0845,0.374749 -0.0706,0.377614 -0.0566,0.379965 -0.0425,0.381796 -0.0284,0.383107 -0.0142,0.383892 v 0.384157 l 0.0142,0.383892 0.0284,0.383106 0.0425,0.381796 0.0566,0.379965 0.0706,0.377615 0.0845,0.374748 0.0983,0.371371 0.11194,0.367483 0.12544,0.363098 0.13877,0.358215 0.15192,0.352842 0.16485,0.346986 0.17756,0.34066 0.19002,0.333866 0.20224,0.326614 0.21416,0.318921 0.2258,0.310788 0.23713,0.302231 0.24814,0.293265 0.2588,0.283894 0.26912,0.274136 0.27906,0.264006 0.28863,0.253514 0.2978,0.242675 0.30656,0.231505 0.31491,0.22002 0.32282,0.208232 0.3303,0.196162 0.33732,0.183823 0.34388,0.171233 0.34997,0.158404 0.35559,0.145362 0.36072,0.132124 0.36535,0.11871 0.3695,0.105135 0.37312,0.0914 0.37624,0.07756 0.37886,0.06359 0.38094,0.04956 0.38252,0.03545 0.38357,0.02129 0.38408,0.0071 z"
- class="btn"
- inkscape:label="menu indicator" /><path
+ class="led"
+ inkscape:label="menu indicator"
+ data-led-i="0"
+ id="path138" /><path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.999999"
d="m 134.21424,22.654197 -0.007,0.269985 -0.0205,0.26929 -0.0341,0.267906 -0.0476,0.265837 -0.061,0.26308 -0.0743,0.259649 -0.0874,0.255556 -0.10018,0.250802 -0.11275,0.245407 -0.12504,0.239379 -0.13701,0.232739 -0.14861,0.225502 -0.15985,0.217685 -0.17066,0.209308 -0.18105,0.200398 -0.19097,0.190967 -0.2004,0.181052 -0.20931,0.170664 -0.21768,0.159843 -0.2255,0.148614 -0.23274,0.137011 -0.23938,0.125035 -0.24541,0.112758 -0.2508,0.100177 -0.25556,0.08735 -0.25965,0.07429 -0.26308,0.06105 -0.26583,0.04764 -0.26791,0.03411 -0.26929,0.0205 -0.26995,0.0068 -45.76078,4.6e-5 -0.26999,-0.0068 -0.26929,-0.0205 -0.26791,-0.03411 -0.26583,-0.04764 -0.26308,-0.06105 -0.25965,-0.07429 -0.25556,-0.08735 -0.2508,-0.100177 -0.2454,-0.112758 -0.23938,-0.125035 -0.23274,-0.137011 -0.22551,-0.148614 -0.21768,-0.159843 -0.20931,-0.170664 -0.2004,-0.181051 L 79.25946,26.326766 79.0784,26.126368 78.90774,25.91706 78.7479,25.699376 78.59928,25.473873 78.46227,25.241134 78.33724,25.001755 78.22448,24.756348 78.1243,24.505546 78.037,24.24999 l -0.0743,-0.259649 -0.0611,-0.26308 -0.0476,-0.265837 -0.0341,-0.267906 -0.0205,-0.26929 -0.007,-0.270032 3e-5,-8.884175 0.007,-0.269984 0.0205,-0.269292 0.0341,-0.267906 0.0476,-0.265836 0.061,-0.263081 0.0743,-0.259649 0.0874,-0.25555 0.10017,-0.250799 0.11276,-0.245415 0.12504,-0.239374 0.13701,-0.232747 0.14861,-0.225497 0.15985,-0.217679 0.17066,-0.20931 0.18105,-0.200408 0.19097,-0.1909725 0.2004,-0.181041 0.2093,-0.170753 0.21769,-0.159914 0.2255,-0.148543 0.23274,-0.136993 0.23938,-0.125089 0.24541,-0.112828 0.2508,-0.100213 0.25555,-0.08742 0.25965,-0.07427 0.26308,-0.06112 0.26584,-0.04762 0.26791,-0.03411 0.26929,-0.02043 0.26995,-0.0069 45.76078,2.31e-4 0.26999,0.0071 0.26929,0.02043 0.2679,0.03411 0.26584,0.04762 0.26308,0.06112 0.25965,0.07427 0.25555,0.08742 0.25081,0.100213 0.2454,0.112828 0.23938,0.125089 0.23274,0.136993 0.2255,0.148542 0.21769,0.159915 0.20931,0.170753 0.20039,0.18104 0.19097,0.1909735 0.18105,0.200408 0.17067,0.20931 0.15984,0.217679 0.14861,0.225497 0.13702,0.232746 0.12503,0.239374 0.11276,0.245415 0.10018,0.250799 0.0873,0.255551 0.0743,0.259649 0.0611,0.26308 0.0476,0.265837 0.0341,0.267906 0.0205,0.269292 0.007,0.269753 z"
id="path7866"
@@ -80,159 +82,312 @@
inkscape:label="nav keys"><path
style="fill:#ffb380;stroke:#000000;stroke-width:0.999999"
d="m 17.8246,42.55988 0.27186,0.149146 0.27811,0.137153 0.28383,0.124893 0.28901,0.112385 0.29363,0.09968 0.2977,0.08678 0.30121,0.0737 0.30413,0.0605 0.30648,0.04717 0.30825,0.03376 0.30942,0.02027 0.31002,0.0068 0.31002,-0.0068 0.30942,-0.02026 0.30825,-0.03376 0.30648,-0.04718 0.30413,-0.0605 0.30121,-0.0737 0.2977,-0.08678 0.29363,-0.09968 0.28901,-0.112384 0.28383,-0.124893 0.27811,-0.137153 0.27186,-0.149147 10.4548,-6.03608 0.2651,-0.160874 0.25783,-0.172281 0.25007,-0.183359 0.24183,-0.194093 0.23314,-0.204456 0.224,-0.214431 0.21443,-0.223999 0.20446,-0.233138 0.19409,-0.241834 0.18336,-0.250071 0.17228,-0.25783 0.16086,-0.2651 0.14915,-0.271864 0.13715,-0.278112 0.12489,-0.283828 0.11239,-0.289006 0.0997,-0.293633 0.0868,-0.297702 0.0737,-0.301204 0.0605,-0.304132 0.0472,-0.306481 0.0337,-0.308248 0.0203,-0.309425 0.007,-0.310011 -1.4e-4,-12.072153 -0.007,-0.310017 -0.0203,-0.309426 -0.0338,-0.308247 -0.0472,-0.306481 -0.0605,-0.304132 -0.0737,-0.301202 -0.0868,-0.297702 -0.0997,-0.293635 -0.11239,-0.289006 -0.12489,-0.283828 -0.13715,-0.278113 -0.14915,-0.271863 -0.16087,-0.2651 -0.17227,-0.25783 -0.18336,-0.250071 -0.1941,-0.241835 -0.20445,-0.233137 -0.21443,-0.223997 -0.224,-0.214433 -0.23314,-0.204456 -0.24183,-0.194093 -0.25007,-0.183358 -0.25783,-0.172281 -0.26491,-0.160868 -10.45461,-6.0360725 -0.27186,-0.149076 -0.27811,-0.137171 -0.28383,-0.12491 -0.28901,-0.112296 -0.29363,-0.09968 -0.2977,-0.08671 -0.30121,-0.07374 -0.30413,-0.06059 -0.30648,-0.04726 -0.30825,-0.03376 -0.30942,-0.02026 -0.31002,-0.0068 -0.31002,0.0071 -0.30942,0.02026 -0.30825,0.03376 -0.30648,0.04726 -0.30413,0.06059 -0.30121,0.07374 -0.2977,0.08671 -0.29363,0.09968 -0.28901,0.112296 -0.28383,0.124911 -0.27811,0.136744 -0.27186,0.149175 -10.4548005,6.0361045 -0.2651,0.160874 -0.25783,0.172281 -0.25007,0.183358 -0.24183,0.194093 -0.23314,0.204456 -0.224,0.214432 -0.21443,0.223998 -0.20446,0.233137 -0.19409,0.241835 -0.18336,0.25007 -0.17228,0.25783 -0.16086,0.265101 -0.14915,0.271863 -0.13715,0.278112 -0.12489,0.283829 -0.11239,0.289006 -0.0997,0.293635 -0.0868,0.297701 -0.0737,0.301203 -0.0605,0.304132 -0.0472,0.306481 -0.0337,0.308247 -0.0203,0.309425 -0.007,0.310012 1.4e-4,12.072154 0.007,0.310017 0.0203,0.309426 0.0338,0.308247 0.0472,0.306481 0.0605,0.304132 0.0737,0.301204 0.0868,0.297702 0.0997,0.293633 0.11239,0.289006 0.12489,0.283828 0.13715,0.278113 0.14915,0.271863 0.16087,0.265101 0.17227,0.25783 0.18336,0.25007 0.1941,0.241835 0.20445,0.233137 0.21443,0.223999 0.224,0.214431 0.23314,0.204456 0.24183,0.194093 0.25007,0.18336 0.25783,0.172281 0.26491,0.160867 z"
- class="btn"
- inkscape:label="menu key" /><path
+ class="key led"
+ inkscape:label="menu key"
+ data-led-i="1"
+ data-key-i="48"
+ id="path145" /><path
style="fill:#87deaa;stroke:#000000;stroke-width:0.999999"
d="m 420.95789,18.296535 -0.007,-0.310017 -0.0203,-0.309426 -0.0338,-0.308247 -0.0471,-0.306481 -0.0604,-0.304132 -0.0737,-0.301202 -0.0867,-0.297702 -0.0997,-0.293635 -0.11247,-0.289006 -0.12491,-0.283828 -0.13717,-0.278113 -0.14908,-0.271863 -0.1608,-0.2651 -0.17235,-0.25783 -0.18335,-0.250071 -0.1941,-0.241835 -0.20446,-0.233137 -0.21443,-0.223997 -0.22399,-0.214433 -0.23314,-0.204456 -0.24184,-0.194093 -0.25007,-0.183358 -0.25783,-0.172281 -0.26504,-0.160869 -10.45471,-6.0360715 -0.27187,-0.149076 -0.27811,-0.137171 -0.28383,-0.12491 -0.289,-0.112296 -0.29364,-0.09968 -0.29769,-0.08671 -0.30121,-0.07374 -0.30414,-0.06059 -0.30648,-0.04726 -0.30825,-0.03376 -0.30941,-0.02026 -0.31002,-0.0071 -0.31002,0.0071 -0.30942,0.02026 -0.30824,0.03376 -0.30649,0.04726 -0.30414,0.06059 -0.30121,0.07374 -0.29768,0.08671 -0.29364,0.09968 -0.289,0.112296 -0.28383,0.12491 -0.27811,0.1371 -0.27187,0.149147 -10.45479,6.0360775 -0.26511,0.160874 -0.25783,0.172281 -0.25007,0.183358 -0.24185,0.194093 -0.23313,0.204456 -0.22399,0.214432 -0.21443,0.223998 -0.20446,0.233137 -0.1941,0.241835 -0.18335,0.25007 -0.17235,0.25783 -0.1608,0.265101 -0.14908,0.271863 -0.13717,0.278112 -0.12491,0.283829 -0.11247,0.289006 -0.0997,0.293635 -0.0867,0.297701 -0.0737,0.301203 -0.0604,0.304132 -0.0471,0.306481 -0.0338,0.308247 -0.0203,0.309425 -0.007,0.310012 7e-5,12.072154 0.007,0.310017 0.0203,0.309426 0.0338,0.308247 0.0471,0.306481 0.0604,0.304132 0.0737,0.301204 0.0867,0.297702 0.0997,0.293633 0.11248,0.289006 0.12491,0.283828 0.13717,0.278113 0.14907,0.271863 0.16081,0.265101 0.17235,0.25783 0.18335,0.25007 0.1941,0.241835 0.20446,0.233137 0.21443,0.223999 0.22398,0.214431 0.23314,0.204456 0.24184,0.194093 0.25007,0.18336 0.25784,0.172281 0.26503,0.160867 10.45472,6.036074 0.27187,0.149147 0.27811,0.137153 0.28383,0.124893 0.289,0.112384 0.29364,0.09968 0.29768,0.08678 0.30121,0.0737 0.30414,0.0605 0.30649,0.04718 0.30824,0.03376 0.30942,0.02027 0.31002,0.0068 0.31002,-0.0068 0.30941,-0.02027 0.30825,-0.03376 0.30648,-0.04718 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.08678 0.29364,-0.09968 0.289,-0.112384 0.28383,-0.124893 0.27811,-0.137153 0.27187,-0.149147 10.45479,-6.03608 0.2651,-0.160874 0.25784,-0.172281 0.25007,-0.183359 0.24184,-0.194093 0.23314,-0.204456 0.22398,-0.214431 0.21443,-0.223999 0.20446,-0.233138 0.1941,-0.241834 0.18335,-0.250071 0.17235,-0.25783 0.16081,-0.2651 0.14907,-0.271864 0.13717,-0.278112 0.12491,-0.283828 0.11248,-0.289006 0.0997,-0.293633 0.0867,-0.297702 0.0737,-0.301204 0.0604,-0.304132 0.0471,-0.306481 0.0338,-0.308248 0.0203,-0.309425 0.007,-0.310011 z"
- class="btn"
- inkscape:label="minus" /><path
+ class="key led"
+ inkscape:label="minus"
+ data-led-i="2"
+ data-key-i="49"
+ id="path147" /><path
style="fill:#87deaa;stroke:#000000;stroke-width:0.999999"
d="m 427.32415,36.362939 -0.25783,-0.172281 -0.25007,-0.18336 -0.24185,-0.194093 -0.23313,-0.204456 -0.22399,-0.214431 -0.21443,-0.223999 -0.20446,-0.233137 -0.1941,-0.241835 -0.18335,-0.25007 -0.17235,-0.25783 -0.1608,-0.265101 -0.14908,-0.271863 -0.13717,-0.278113 -0.12491,-0.283828 -0.11247,-0.289006 -0.0997,-0.293633 -0.0867,-0.297702 -0.0737,-0.301204 -0.0604,-0.304132 -0.0471,-0.306481 -0.0338,-0.308247 -0.0203,-0.309426 -0.007,-0.310017 -7e-5,-12.072154 0.007,-0.310012 0.0203,-0.309425 0.0338,-0.308247 0.0471,-0.306481 0.0604,-0.304132 0.0737,-0.301203 0.0867,-0.297701 0.0997,-0.293635 0.11247,-0.289006 0.12492,-0.283829 0.13717,-0.278112 0.14907,-0.271863 0.1608,-0.265101 0.17236,-0.25783 0.18335,-0.25007 0.1941,-0.241835 0.20446,-0.233137 0.21442,-0.223998 0.22399,-0.214432 0.23314,-0.204456 0.24184,-0.194093 0.25007,-0.183358 0.25784,-0.172281 0.2651,-0.160874 10.45479,-6.0360775 0.27187,-0.149076 0.27811,-0.137171 0.28383,-0.12491 0.289,-0.112296 0.29364,-0.09968 0.29769,-0.08671 0.30121,-0.07374 0.30414,-0.06059 0.30648,-0.04726 0.30824,-0.03376 0.30942,-0.02026 0.31002,-0.0071 0.31002,0.0071 0.30942,0.02026 0.30824,0.03376 0.30649,0.04726 0.30414,0.06059 0.3012,0.07374 0.29769,0.08671 0.29364,0.09968 0.289,0.112296 0.28383,0.12491 0.27811,0.137171 0.27187,0.149076 10.45471,6.0360725 0.26503,0.160868 0.25784,0.172281 0.25007,0.183358 0.24184,0.194093 0.23314,0.204456 0.22398,0.214433 0.21443,0.223997 0.20446,0.233137 0.1941,0.241835 0.18335,0.250071 0.17235,0.25783 0.16081,0.2651 0.14907,0.271863 0.13717,0.278113 0.12491,0.283828 0.11248,0.289006 0.0997,0.293635 0.0867,0.297702 0.0737,0.301202 0.0604,0.304132 0.0471,0.306481 0.0338,0.308247 0.0203,0.309426 0.007,0.310017 8e-5,12.072153 -0.007,0.310011 -0.0203,0.309425 -0.0338,0.308248 -0.0471,0.306481 -0.0604,0.304132 -0.0737,0.301204 -0.0867,0.297702 -0.0997,0.293633 -0.11247,0.289006 -0.12491,0.283828 -0.13717,0.278112 -0.14908,0.271864 -0.1608,0.2651 -0.17235,0.25783 -0.18335,0.250071 -0.1941,0.241834 -0.20446,0.233138 -0.21443,0.223999 -0.22399,0.214431 -0.23314,0.204456 -0.24184,0.194093 -0.25007,0.183359 -0.25783,0.172281 -0.26511,0.160874 -10.45479,6.03608 -0.27187,0.149147 -0.27811,0.137153 -0.28383,0.124893 -0.289,0.112384 -0.29364,0.09968 -0.29769,0.08678 -0.3012,0.0737 -0.30414,0.0605 -0.30649,0.04718 -0.30824,0.03376 -0.30942,0.02027 -0.31002,0.0068 -0.31002,-0.0068 -0.30942,-0.02027 -0.30824,-0.03376 -0.30648,-0.04718 -0.30414,-0.0605 -0.30121,-0.0737 -0.29769,-0.08678 -0.29364,-0.09968 -0.289,-0.112384 -0.28383,-0.124893 -0.27811,-0.137153 -0.27187,-0.149147 -10.45471,-6.036074 z"
- class="btn"
- inkscape:label="plus" /></g><g
+ class="key led"
+ inkscape:label="plus"
+ data-led-i="3"
+ data-key-i="50"
+ id="path149" /></g><g
id="g8698"
inkscape:label="main keys"><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 478.26052,51.380225 -0.007,-0.310017 -0.0203,-0.309426 -0.0338,-0.308247 -0.0471,-0.306481 -0.0606,-0.304131 -0.0737,-0.301204 -0.0867,-0.297701 -0.0997,-0.293635 -0.11248,-0.289006 -0.12491,-0.283828 -0.13717,-0.278111 -0.14907,-0.271865 -0.16081,-0.265099 -0.17235,-0.257832 -0.18335,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.22398,-0.21443 -0.23314,-0.204458 -0.24184,-0.194092 -0.25008,-0.183359 -0.25783,-0.172281 -0.26493,-0.160868 -10.45461,-6.036075 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112384 -0.29364,-0.09968 -0.29769,-0.08678 -0.30121,-0.0737 -0.30414,-0.0605 -0.30648,-0.04717 -0.30824,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30942,0.02027 -0.30824,0.03376 -0.30649,0.04717 -0.30414,0.0605 -0.3012,0.0737 -0.29769,0.08678 -0.29364,0.09968 -0.289,0.112384 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.45479,6.03608 -0.2651,0.160874 -0.25784,0.172281 -0.25007,0.183359 -0.24184,0.194092 -0.23314,0.204457 -0.22399,0.214431 -0.21443,0.223997 -0.20445,0.23314 -0.19411,0.241833 -0.18335,0.25007 -0.17235,0.257832 -0.1608,0.265099 -0.14908,0.271865 -0.13717,0.27811 -0.12491,0.283829 -0.11247,0.289006 -0.0997,0.293634 -0.0867,0.297702 -0.0737,0.301204 -0.0604,0.30413 -0.0471,0.306482 -0.0338,0.308247 -0.0203,0.309425 -0.007,0.310012 8e-5,12.072156 0.007,0.310015 0.0203,0.309427 0.0338,0.308246 0.0471,0.306481 0.0604,0.304132 0.0737,0.301204 0.0867,0.297702 0.0997,0.293633 0.11248,0.289006 0.12491,0.28383 0.13717,0.278111 0.14907,0.271865 0.16081,0.265098 0.17235,0.25783 0.18335,0.250071 0.1941,0.241835 0.20446,0.233137 0.21443,0.223999 0.22398,0.214431 0.23314,0.204456 0.24185,0.194093 0.25007,0.18336 0.25783,0.172281 0.26503,0.160867 10.45471,6.036076 0.27187,0.149146 0.27811,0.137153 0.28383,0.124894 0.289,0.112384 0.29364,0.09968 0.29769,0.08676 0.3012,0.0737 0.30414,0.0605 0.30649,0.04718 0.30824,0.03376 0.30942,0.02027 0.31002,0.0068 0.31002,-0.0068 0.30942,-0.02027 0.30824,-0.03376 0.30648,-0.04718 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.08676 0.29364,-0.09968 0.289,-0.112384 0.28383,-0.124894 0.27811,-0.137153 0.27187,-0.149146 10.45479,-6.036082 0.2651,-0.160874 0.25784,-0.172281 0.25007,-0.183359 0.24184,-0.194094 0.23314,-0.204456 0.22399,-0.21443 0.21442,-0.224 0.20446,-0.233137 0.1941,-0.241835 0.18335,-0.25007 0.17236,-0.25783 0.1608,-0.265099 0.14907,-0.271865 0.13718,-0.27811 0.12491,-0.283831 0.11247,-0.289006 0.0997,-0.293633 0.0867,-0.297701 0.0737,-0.301204 0.0606,-0.304133 0.0471,-0.306481 0.0338,-0.308245 0.0203,-0.309427 0.007,-0.31001 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="4"
+ data-key-i="11"
+ id="path655" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 418.94302,75.643572 0.27187,0.149146 0.27811,0.137153 0.28383,0.124894 0.289,0.112384 0.29364,0.09968 0.29769,0.08676 0.30121,0.0737 0.30414,0.0605 0.30648,0.04718 0.30825,0.03376 0.30941,0.02027 0.31002,0.0068 0.31002,-0.0068 0.30942,-0.02027 0.30825,-0.03376 0.30648,-0.04718 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.08676 0.29363,-0.09968 0.289,-0.112384 0.28384,-0.124894 0.2781,-0.137153 0.27188,-0.149146 10.45479,-6.036082 0.2651,-0.160874 0.25783,-0.172281 0.25007,-0.183359 0.24185,-0.194094 0.23313,-0.204456 0.22399,-0.21443 0.21443,-0.224 0.20446,-0.233137 0.1941,-0.241835 0.18335,-0.25007 0.17235,-0.25783 0.1608,-0.265099 0.14908,-0.271865 0.13717,-0.27811 0.12491,-0.283831 0.11247,-0.289006 0.0997,-0.293633 0.0867,-0.297701 0.0737,-0.301204 0.0604,-0.304133 0.0471,-0.306481 0.0338,-0.308245 0.0203,-0.309427 0.007,-0.31001 -7e-5,-12.072154 -0.007,-0.310017 -0.0203,-0.309426 -0.0338,-0.308247 -0.0471,-0.306481 -0.0604,-0.304131 -0.0737,-0.301204 -0.0867,-0.297701 -0.0997,-0.293635 -0.11247,-0.289006 -0.12491,-0.283828 -0.13718,-0.278111 -0.14907,-0.271865 -0.1608,-0.265099 -0.17236,-0.257832 -0.18335,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21442,-0.223998 -0.22399,-0.21443 -0.23314,-0.204458 -0.24184,-0.194092 -0.25007,-0.183359 -0.25784,-0.172281 -0.26502,-0.160868 -10.45472,-6.036075 -0.27188,-0.149147 -0.2781,-0.137153 -0.28384,-0.124893 -0.289,-0.112384 -0.29363,-0.09968 -0.29769,-0.08678 -0.30121,-0.0737 -0.30414,-0.0605 -0.30648,-0.04717 -0.30825,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30941,0.02027 -0.30825,0.03376 -0.30648,0.04717 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.08678 -0.29364,0.09968 -0.289,0.112384 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.45479,6.03608 -0.2651,0.160874 -0.25783,0.172281 -0.25008,0.183359 -0.24184,0.194092 -0.23314,0.204457 -0.22398,0.214431 -0.21443,0.223997 -0.20446,0.23314 -0.1941,0.241833 -0.18335,0.25007 -0.17235,0.257832 -0.16081,0.265099 -0.14907,0.271865 -0.13717,0.27811 -0.12491,0.283829 -0.11248,0.289006 -0.0997,0.293634 -0.0867,0.297702 -0.0737,0.301204 -0.0604,0.30413 -0.0471,0.306482 -0.0338,0.308247 -0.0203,0.309425 -0.007,0.310012 7e-5,12.072156 0.007,0.310015 0.0203,0.309427 0.0338,0.308246 0.0471,0.306481 0.0604,0.304132 0.0737,0.301204 0.0867,0.297702 0.0997,0.293633 0.11247,0.289006 0.12491,0.28383 0.13717,0.278111 0.14908,0.271865 0.1608,0.265098 0.17235,0.25783 0.18336,0.250071 0.1941,0.241835 0.20446,0.233137 0.21442,0.223999 0.22399,0.214431 0.23314,0.204456 0.24184,0.194093 0.25007,0.18336 0.25784,0.172281 0.26502,0.160867 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="5"
+ data-key-i="10"
+ id="path657" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 401.85701,51.380225 -0.007,-0.310017 -0.0203,-0.309426 -0.0338,-0.308247 -0.0471,-0.306481 -0.0604,-0.304131 -0.0737,-0.301204 -0.0867,-0.297701 -0.0997,-0.293635 -0.11247,-0.289006 -0.12491,-0.283828 -0.13717,-0.278111 -0.14908,-0.271865 -0.1608,-0.265099 -0.17235,-0.257832 -0.18335,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.22399,-0.21443 -0.23313,-0.204458 -0.24185,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.26503,-0.160868 -10.45472,-6.036075 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112384 -0.29364,-0.09968 -0.29769,-0.08678 -0.30121,-0.0737 -0.30413,-0.0605 -0.30649,-0.04717 -0.30824,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30942,0.02027 -0.30824,0.03376 -0.30649,0.04717 -0.30414,0.0605 -0.3012,0.0737 -0.29769,0.08678 -0.29364,0.09968 -0.289,0.112384 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.45479,6.03608 -0.2651,0.160874 -0.25784,0.172281 -0.25007,0.183359 -0.24184,0.194092 -0.23314,0.204457 -0.22399,0.214431 -0.21442,0.223997 -0.20446,0.23314 -0.1941,0.241833 -0.18336,0.25007 -0.17235,0.257832 -0.1608,0.265099 -0.14908,0.271865 -0.13717,0.27811 -0.12491,0.283829 -0.11247,0.289006 -0.0997,0.293634 -0.0867,0.297702 -0.0737,0.301204 -0.0604,0.30413 -0.0471,0.306482 -0.0338,0.308247 -0.0203,0.309425 -0.007,0.310012 7e-5,12.072156 0.007,0.310015 0.0203,0.309427 0.0338,0.308246 0.0471,0.306481 0.0604,0.304132 0.0737,0.301204 0.0867,0.297702 0.0997,0.293633 0.11248,0.289006 0.12491,0.28383 0.13717,0.278111 0.14908,0.271865 0.1608,0.265098 0.17235,0.25783 0.18335,0.250071 0.1941,0.241835 0.20446,0.233137 0.21443,0.223999 0.22398,0.214431 0.23314,0.204456 0.24185,0.194093 0.25007,0.18336 0.25783,0.172281 0.26503,0.160867 10.45471,6.036076 0.27187,0.149146 0.27811,0.137153 0.28383,0.124894 0.289,0.112384 0.29364,0.09968 0.29769,0.08676 0.3012,0.0737 0.30414,0.0605 0.30649,0.04718 0.30824,0.03376 0.30942,0.02027 0.31002,0.0068 0.31002,-0.0068 0.30942,-0.02027 0.30824,-0.03376 0.30649,-0.04718 0.30413,-0.0605 0.30121,-0.0737 0.29769,-0.08676 0.29364,-0.09968 0.289,-0.112384 0.28383,-0.124894 0.27811,-0.137153 0.27187,-0.149146 10.45479,-6.036082 0.2651,-0.160874 0.25784,-0.172281 0.25007,-0.183359 0.24184,-0.194094 0.23314,-0.204456 0.22399,-0.21443 0.21442,-0.224 0.20446,-0.233137 0.1941,-0.241835 0.18335,-0.25007 0.17236,-0.25783 0.1608,-0.265099 0.14908,-0.271865 0.13717,-0.27811 0.12491,-0.283831 0.11247,-0.289006 0.0997,-0.293633 0.0867,-0.297701 0.0737,-0.301204 0.0604,-0.304133 0.0471,-0.306481 0.0338,-0.308245 0.0203,-0.309427 0.007,-0.31001 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="6"
+ data-key-i="9"
+ id="path659" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 363.65526,51.380225 -0.007,-0.310017 -0.0203,-0.309426 -0.0338,-0.308247 -0.0471,-0.306481 -0.0604,-0.304131 -0.0737,-0.301204 -0.0867,-0.297701 -0.0997,-0.293635 -0.11247,-0.289006 -0.12491,-0.283828 -0.13718,-0.278111 -0.14907,-0.271865 -0.1608,-0.265099 -0.17236,-0.257832 -0.18335,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21442,-0.223998 -0.22399,-0.21443 -0.23314,-0.204458 -0.24184,-0.194092 -0.25007,-0.183359 -0.25784,-0.172281 -0.26502,-0.160868 -10.45472,-6.036075 -0.27188,-0.149147 -0.2781,-0.137153 -0.28383,-0.124893 -0.28901,-0.112384 -0.29363,-0.09968 -0.29769,-0.08678 -0.30121,-0.0737 -0.30414,-0.0605 -0.30648,-0.04717 -0.30825,-0.03376 -0.30941,-0.02027 -0.31003,-0.0068 -0.31002,0.0068 -0.30941,0.02027 -0.30825,0.03376 -0.30648,0.04717 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.08678 -0.29363,0.09968 -0.28901,0.112384 -0.28383,0.124893 -0.2781,0.137153 -0.27188,0.149147 -10.45479,6.03608 -0.2651,0.160874 -0.25783,0.172281 -0.25007,0.183359 -0.24185,0.194092 -0.23314,0.204457 -0.22398,0.214431 -0.21443,0.223997 -0.20446,0.23314 -0.1941,0.241833 -0.18335,0.25007 -0.17235,0.257832 -0.1608,0.265099 -0.14908,0.271865 -0.13717,0.27811 -0.12491,0.283829 -0.11248,0.289006 -0.0997,0.293634 -0.0867,0.297702 -0.0737,0.301204 -0.0604,0.30413 -0.0471,0.306482 -0.0338,0.308247 -0.0203,0.309425 -0.007,0.310012 7e-5,12.072156 0.007,0.310015 0.0203,0.309427 0.0337,0.308246 0.0471,0.306481 0.0604,0.304132 0.0737,0.301204 0.0867,0.297702 0.0997,0.293633 0.11247,0.289006 0.12491,0.28383 0.13717,0.278111 0.14908,0.271865 0.1608,0.265098 0.17236,0.25783 0.18335,0.250071 0.1941,0.241835 0.20446,0.233137 0.21442,0.223999 0.22399,0.214431 0.23314,0.204456 0.24184,0.194093 0.25007,0.18336 0.25784,0.172281 0.26507,0.160867 10.45477,6.036076 0.27188,0.149146 0.2781,0.137153 0.28383,0.124894 0.28901,0.112384 0.29363,0.09968 0.29769,0.08676 0.30121,0.0737 0.30414,0.0605 0.30648,0.04718 0.30825,0.03376 0.30941,0.02027 0.31002,0.0068 0.31003,-0.0068 0.30941,-0.02027 0.30825,-0.03376 0.30648,-0.04718 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.08676 0.29363,-0.09968 0.28901,-0.112384 0.28383,-0.124894 0.2781,-0.137153 0.27188,-0.149146 10.45479,-6.036082 0.2651,-0.160874 0.25783,-0.172281 0.25007,-0.183359 0.24185,-0.194094 0.23314,-0.204456 0.22398,-0.21443 0.21443,-0.224 0.20446,-0.233137 0.1941,-0.241835 0.18335,-0.25007 0.17235,-0.25783 0.1608,-0.265099 0.14908,-0.271865 0.13717,-0.27811 0.12491,-0.283831 0.11248,-0.289006 0.0997,-0.293633 0.0867,-0.297701 0.0737,-0.301204 0.0604,-0.304133 0.0471,-0.306481 0.0338,-0.308245 0.0203,-0.309427 0.007,-0.31001 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="7"
+ data-key-i="8"
+ id="path661" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 325.4535,51.380225 -0.007,-0.310017 -0.0203,-0.309426 -0.0338,-0.308247 -0.0471,-0.306481 -0.0604,-0.304131 -0.0737,-0.301204 -0.0867,-0.297701 -0.0997,-0.293635 -0.11248,-0.289006 -0.12491,-0.283828 -0.13717,-0.278111 -0.14908,-0.271865 -0.1608,-0.265099 -0.17235,-0.257832 -0.18335,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.22398,-0.21443 -0.23314,-0.204458 -0.24185,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.26503,-0.160868 -10.45471,-6.036075 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112384 -0.29364,-0.09968 -0.29769,-0.08678 -0.30121,-0.0737 -0.30413,-0.0605 -0.30649,-0.04717 -0.30824,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30942,0.02027 -0.30824,0.03376 -0.30649,0.04717 -0.30413,0.0605 -0.30121,0.0737 -0.29769,0.08678 -0.29364,0.09968 -0.289,0.112384 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.45479,6.03608 -0.2651,0.160874 -0.25784,0.172281 -0.25007,0.183359 -0.24184,0.194092 -0.23314,0.204457 -0.22399,0.214431 -0.21442,0.223997 -0.20446,0.23314 -0.1941,0.241833 -0.18335,0.25007 -0.17236,0.257832 -0.1608,0.265099 -0.14908,0.271865 -0.13717,0.27811 -0.12491,0.283829 -0.11247,0.289006 -0.0997,0.293634 -0.0867,0.297702 -0.0737,0.301204 -0.0604,0.30413 -0.0471,0.306482 -0.0337,0.308247 -0.0203,0.309425 -0.007,0.310012 3e-5,12.072156 0.007,0.310015 0.0203,0.309427 0.0338,0.308246 0.0471,0.306481 0.0604,0.304132 0.0737,0.301204 0.0867,0.297702 0.0997,0.293633 0.11247,0.289006 0.12491,0.28383 0.13717,0.278111 0.14908,0.271865 0.1608,0.265098 0.17235,0.25783 0.18335,0.250071 0.1941,0.241835 0.20446,0.233137 0.21443,0.223999 0.22399,0.214431 0.23313,0.204456 0.24185,0.194093 0.25007,0.18336 0.25783,0.172281 0.26503,0.160867 10.45472,6.036076 0.27187,0.149146 0.27811,0.137153 0.28383,0.124894 0.289,0.112384 0.29364,0.09968 0.29769,0.08676 0.30121,0.0737 0.30413,0.0605 0.30649,0.04718 0.30824,0.03376 0.30942,0.02027 0.31002,0.0068 0.31002,-0.0068 0.30942,-0.02027 0.30824,-0.03376 0.30649,-0.04718 0.30413,-0.0605 0.30121,-0.0737 0.29769,-0.08676 0.29364,-0.09968 0.289,-0.112384 0.28383,-0.124894 0.27811,-0.137153 0.27187,-0.149146 10.45479,-6.036082 0.2651,-0.160874 0.25784,-0.172281 0.25007,-0.183359 0.24184,-0.194094 0.23314,-0.204456 0.22399,-0.21443 0.21442,-0.224 0.20446,-0.233137 0.1941,-0.241835 0.18336,-0.25007 0.17235,-0.25783 0.1608,-0.265099 0.14908,-0.271865 0.13717,-0.27811 0.12491,-0.283831 0.11247,-0.289006 0.0997,-0.293633 0.0867,-0.297701 0.0737,-0.301204 0.0604,-0.304133 0.0471,-0.306481 0.0338,-0.308245 0.0203,-0.309427 0.007,-0.31001 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="8"
+ data-key-i="7"
+ id="path663" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 287.25175,51.380225 -0.007,-0.310017 -0.0203,-0.309426 -0.0338,-0.308247 -0.0471,-0.306481 -0.0604,-0.304131 -0.0737,-0.301204 -0.0867,-0.297701 -0.0997,-0.293635 -0.11247,-0.289006 -0.12491,-0.283828 -0.13717,-0.278111 -0.14908,-0.271865 -0.1608,-0.265099 -0.17236,-0.257832 -0.18335,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21442,-0.223998 -0.22399,-0.21443 -0.23314,-0.204458 -0.24184,-0.194092 -0.25007,-0.183359 -0.25784,-0.172281 -0.26502,-0.160868 -10.45472,-6.036075 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112384 -0.29364,-0.09968 -0.29769,-0.08678 -0.30121,-0.0737 -0.30414,-0.0605 -0.30648,-0.04717 -0.30825,-0.03376 -0.30941,-0.02027 -0.31002,-0.0068 -0.31003,0.0068 -0.30941,0.02027 -0.30825,0.03376 -0.30648,0.04717 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.08678 -0.29363,0.09968 -0.28901,0.112384 -0.28383,0.124893 -0.2781,0.137153 -0.27188,0.149147 -10.45479,6.03608 -0.2651,0.160874 -0.25783,0.172281 -0.25007,0.183359 -0.24185,0.194092 -0.23313,0.204457 -0.22399,0.214431 -0.21443,0.223997 -0.20446,0.23314 -0.1941,0.241833 -0.18335,0.25007 -0.17235,0.257832 -0.1608,0.265099 -0.14908,0.271865 -0.13717,0.27811 -0.12491,0.283829 -0.11247,0.289006 -0.0997,0.293634 -0.0867,0.297702 -0.0737,0.301204 -0.0604,0.30413 -0.0471,0.306482 -0.0338,0.308247 -0.0203,0.309425 -0.007,0.310012 7e-5,12.072156 0.007,0.310015 0.0203,0.309427 0.0338,0.308246 0.0471,0.306481 0.0604,0.304132 0.0737,0.301204 0.0867,0.297702 0.0997,0.293633 0.11247,0.289006 0.12491,0.28383 0.13718,0.278111 0.14907,0.271865 0.1608,0.265098 0.17236,0.25783 0.18335,0.250071 0.1941,0.241835 0.20446,0.233137 0.21442,0.223999 0.22399,0.214431 0.23314,0.204456 0.24184,0.194093 0.25007,0.18336 0.25784,0.172281 0.26502,0.160867 10.45472,6.036076 0.27188,0.149146 0.2781,0.137153 0.28383,0.124894 0.28901,0.112384 0.29363,0.09968 0.29769,0.08676 0.30121,0.0737 0.30414,0.0605 0.30648,0.04718 0.30825,0.03376 0.30941,0.02027 0.31003,0.0068 0.31002,-0.0068 0.30941,-0.02027 0.30825,-0.03376 0.30648,-0.04718 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.08676 0.29364,-0.09968 0.289,-0.112384 0.28383,-0.124894 0.27811,-0.137153 0.27187,-0.149146 10.45479,-6.036082 0.2651,-0.160874 0.25783,-0.172281 0.25007,-0.183359 0.24185,-0.194094 0.23314,-0.204456 0.22398,-0.21443 0.21443,-0.224 0.20446,-0.233137 0.1941,-0.241835 0.18335,-0.25007 0.17235,-0.25783 0.16081,-0.265099 0.14907,-0.271865 0.13717,-0.27811 0.12491,-0.283831 0.11248,-0.289006 0.0997,-0.293633 0.0867,-0.297701 0.0737,-0.301204 0.0604,-0.304133 0.0471,-0.306481 0.0338,-0.308245 0.0203,-0.309427 0.007,-0.31001 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="9"
+ data-key-i="6"
+ id="path665" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 227.93425,75.643572 0.27187,0.149146 0.27811,0.137153 0.28383,0.124894 0.289,0.112384 0.29364,0.09968 0.29769,0.08676 0.30121,0.0737 0.30414,0.0605 0.30648,0.04718 0.30824,0.03376 0.30942,0.02027 0.31002,0.0068 0.31002,-0.0068 0.30942,-0.02027 0.30824,-0.03376 0.30649,-0.04718 0.30414,-0.0605 0.3012,-0.0737 0.29769,-0.08676 0.29364,-0.09968 0.289,-0.112384 0.28383,-0.124894 0.27811,-0.137153 0.27187,-0.149146 10.45479,-6.036082 0.2651,-0.160874 0.25784,-0.172281 0.25007,-0.183359 0.24184,-0.194094 0.23314,-0.204456 0.22399,-0.21443 0.21443,-0.224 0.20445,-0.233137 0.19411,-0.241835 0.18335,-0.25007 0.17235,-0.25783 0.1608,-0.265099 0.14908,-0.271865 0.13717,-0.27811 0.12491,-0.283831 0.11247,-0.289006 0.0997,-0.293633 0.0867,-0.297701 0.0737,-0.301204 0.0604,-0.304133 0.0471,-0.306481 0.0338,-0.308245 0.0202,-0.309427 0.007,-0.31001 -3e-5,-12.072154 -0.007,-0.310017 -0.0203,-0.309426 -0.0338,-0.308247 -0.0471,-0.306481 -0.0604,-0.304131 -0.0737,-0.301204 -0.0867,-0.297701 -0.0997,-0.293635 -0.11248,-0.289006 -0.12491,-0.283828 -0.13717,-0.278111 -0.14907,-0.271865 -0.16081,-0.265099 -0.17235,-0.257832 -0.18335,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.22398,-0.21443 -0.23314,-0.204458 -0.24185,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.26502,-0.160868 -10.45472,-6.036075 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112384 -0.29364,-0.09968 -0.29769,-0.08678 -0.3012,-0.0737 -0.30414,-0.0605 -0.30649,-0.04717 -0.30824,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30942,0.02027 -0.30824,0.03376 -0.30648,0.04717 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.08678 -0.29364,0.09968 -0.289,0.112384 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.45479,6.03608 -0.2651,0.160874 -0.25784,0.172281 -0.25007,0.183359 -0.24184,0.194092 -0.23314,0.204457 -0.22399,0.214431 -0.21442,0.223997 -0.20446,0.23314 -0.1941,0.241833 -0.18335,0.25007 -0.17236,0.257832 -0.1608,0.265099 -0.14907,0.271865 -0.13718,0.27811 -0.12491,0.283829 -0.11247,0.289006 -0.0997,0.293634 -0.0867,0.297702 -0.0737,0.301204 -0.0606,0.30413 -0.0471,0.306482 -0.0338,0.308247 -0.0203,0.309425 -0.007,0.310012 1.8e-4,12.072156 0.007,0.310015 0.0203,0.309427 0.0338,0.308246 0.0471,0.306481 0.0606,0.304132 0.0737,0.301204 0.0867,0.297702 0.0997,0.293633 0.11248,0.289006 0.12491,0.28383 0.13717,0.278111 0.14907,0.271865 0.16081,0.265098 0.17235,0.25783 0.18335,0.250071 0.1941,0.241835 0.20446,0.233137 0.21443,0.223999 0.22398,0.214431 0.23314,0.204456 0.24184,0.194093 0.25008,0.18336 0.25783,0.172281 0.26493,0.160867 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="10"
+ data-key-i="5"
+ id="path667" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 175.72404,63.452386 0.007,0.310015 0.0203,0.309427 0.0338,0.308246 0.0472,0.306481 0.0605,0.304132 0.0737,0.301204 0.0868,0.297702 0.0997,0.293633 0.11238,0.289006 0.1249,0.28383 0.13715,0.278111 0.14915,0.271865 0.16087,0.265098 0.17228,0.25783 0.18336,0.250071 0.19409,0.241835 0.20446,0.233137 0.21443,0.223999 0.224,0.214431 0.23314,0.204456 0.24183,0.194093 0.25007,0.18336 0.25783,0.172281 0.26491,0.160867 10.4546,6.036076 0.27187,0.149146 0.27811,0.137153 0.28383,0.124894 0.289,0.112384 0.29364,0.09968 0.2977,0.08676 0.3012,0.0737 0.30414,0.0605 0.30648,0.04718 0.30824,0.03376 0.30943,0.02027 0.31002,0.0068 0.31001,-0.0068 0.30943,-0.02027 0.30825,-0.03376 0.30648,-0.04718 0.30413,-0.0605 0.3012,-0.0737 0.2977,-0.08676 0.29364,-0.09968 0.289,-0.112384 0.28383,-0.124894 0.27811,-0.137153 0.27187,-0.149146 10.45479,-6.036082 0.2651,-0.160874 0.25784,-0.172281 0.25007,-0.183359 0.24184,-0.194094 0.23314,-0.204456 0.22398,-0.21443 0.21443,-0.224 0.20446,-0.233137 0.1941,-0.241835 0.18335,-0.25007 0.17235,-0.25783 0.16081,-0.265099 0.14907,-0.271865 0.13717,-0.27811 0.12491,-0.283831 0.11248,-0.289006 0.0997,-0.293633 0.0867,-0.297701 0.0737,-0.301204 0.0606,-0.304133 0.0471,-0.306481 0.0338,-0.308245 0.0203,-0.309427 0.007,-0.31001 -1.8e-4,-12.072154 -0.007,-0.310017 -0.0202,-0.309426 -0.0338,-0.308247 -0.0471,-0.306481 -0.0606,-0.304131 -0.0737,-0.301204 -0.0867,-0.297701 -0.0997,-0.293635 -0.11247,-0.289006 -0.12491,-0.283828 -0.13717,-0.278111 -0.14908,-0.271865 -0.1608,-0.265099 -0.17235,-0.257832 -0.18335,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.22399,-0.21443 -0.23313,-0.204458 -0.24185,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.26498,-0.160868 -10.45467,-6.036075 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112384 -0.29364,-0.09968 -0.2977,-0.08678 -0.3012,-0.0737 -0.30413,-0.0605 -0.30648,-0.04717 -0.30825,-0.03376 -0.30943,-0.02027 -0.31001,-0.0068 -0.31002,0.0068 -0.30943,0.02027 -0.30824,0.03376 -0.30648,0.04717 -0.30414,0.0605 -0.3012,0.0737 -0.2977,0.08678 -0.29364,0.09968 -0.289,0.112384 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.45479,6.03608 -0.2651,0.160874 -0.25783,0.172281 -0.25007,0.183359 -0.24184,0.194092 -0.23314,0.204457 -0.22399,0.214431 -0.21444,0.223997 -0.20445,0.23314 -0.19409,0.241833 -0.18336,0.25007 -0.17229,0.257832 -0.16087,0.265099 -0.14915,0.271865 -0.13715,0.27811 -0.12489,0.283829 -0.11239,0.289006 -0.0997,0.293634 -0.0868,0.297702 -0.0737,0.301204 -0.0605,0.30413 -0.0472,0.306482 -0.0338,0.308247 -0.0203,0.309425 -0.007,0.310012 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="11"
+ data-key-i="4"
+ id="path669" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 172.64649,51.380225 -0.007,-0.310017 -0.0203,-0.309426 -0.0338,-0.308247 -0.0472,-0.306481 -0.0605,-0.304131 -0.0737,-0.301204 -0.0868,-0.297701 -0.0997,-0.293635 -0.11238,-0.289006 -0.1249,-0.283828 -0.13715,-0.278111 -0.14915,-0.271865 -0.16087,-0.265099 -0.17228,-0.257832 -0.18336,-0.25007 -0.1941,-0.241833 -0.20445,-0.233139 -0.21443,-0.223998 -0.224,-0.21443 -0.23314,-0.204458 -0.24183,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.2649,-0.160868 -10.45461,-6.036075 -0.27186,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.28901,-0.112384 -0.29363,-0.09968 -0.2977,-0.08678 -0.30121,-0.0737 -0.30413,-0.0605 -0.30648,-0.04717 -0.30825,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30942,0.02027 -0.30825,0.03376 -0.30648,0.04717 -0.30413,0.0605 -0.3012,0.0737 -0.29771,0.08678 -0.29363,0.09968 -0.28901,0.112384 -0.28382,0.124893 -0.27812,0.137153 -0.27186,0.149147 -10.4548,6.03608 -0.2651,0.160874 -0.25783,0.172281 -0.25007,0.183359 -0.24183,0.194092 -0.23314,0.204457 -0.224,0.214431 -0.21443,0.223997 -0.20446,0.23314 -0.19409,0.241833 -0.18336,0.25007 -0.17228,0.257832 -0.16087,0.265099 -0.14915,0.271865 -0.13715,0.27811 -0.1249,0.283829 -0.11238,0.289006 -0.0997,0.293634 -0.0868,0.297702 -0.0737,0.301204 -0.0605,0.30413 -0.0472,0.306482 -0.0338,0.308247 -0.0203,0.309425 -0.007,0.310012 1.9e-4,12.072156 0.007,0.310015 0.0203,0.309427 0.0337,0.308246 0.0472,0.306481 0.0605,0.304132 0.0737,0.301204 0.0868,0.297702 0.0997,0.293633 0.11239,0.289006 0.12489,0.28383 0.13715,0.278111 0.14915,0.271865 0.16087,0.265098 0.17229,0.25783 0.18335,0.250071 0.1941,0.241835 0.20445,0.233137 0.21444,0.223999 0.22399,0.214431 0.23314,0.204456 0.24184,0.194093 0.25007,0.18336 0.25783,0.172281 0.26495,0.160867 10.45465,6.036076 0.27186,0.149146 0.27812,0.137153 0.28382,0.124894 0.28901,0.112384 0.29363,0.09968 0.29771,0.08676 0.3012,0.0737 0.30413,0.0605 0.30648,0.04718 0.30825,0.03376 0.30942,0.02027 0.31002,0.0068 0.31002,-0.0068 0.30942,-0.02027 0.30825,-0.03376 0.30648,-0.04718 0.30413,-0.0605 0.30121,-0.0737 0.2977,-0.08676 0.29363,-0.09968 0.28901,-0.112384 0.28383,-0.124894 0.27811,-0.137153 0.27186,-0.149146 10.4548,-6.036082 0.2651,-0.160874 0.25783,-0.172281 0.25007,-0.183359 0.24184,-0.194094 0.23313,-0.204456 0.224,-0.21443 0.21443,-0.224 0.20446,-0.233137 0.19409,-0.241835 0.18336,-0.25007 0.17228,-0.25783 0.16088,-0.265099 0.14914,-0.271865 0.13716,-0.27811 0.12489,-0.283831 0.11238,-0.289006 0.0997,-0.293633 0.0868,-0.297701 0.0737,-0.301204 0.0605,-0.304133 0.0472,-0.306481 0.0338,-0.308245 0.0203,-0.309427 0.007,-0.31001 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="12"
+ data-key-i="3"
+ id="path671" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 134.44474,51.380225 -0.007,-0.310017 -0.0203,-0.309426 -0.0338,-0.308247 -0.0472,-0.306481 -0.0605,-0.304131 -0.0737,-0.301204 -0.0868,-0.297701 -0.0997,-0.293635 -0.11238,-0.289006 -0.12489,-0.283828 -0.13716,-0.278111 -0.14914,-0.271865 -0.16088,-0.265099 -0.17228,-0.257832 -0.18336,-0.25007 -0.19409,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.224,-0.21443 -0.23313,-0.204458 -0.24184,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.26491,-0.160868 -10.4546,-6.036075 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112384 -0.29364,-0.09968 -0.2977,-0.08678 -0.3012,-0.0737 -0.30413,-0.0605 -0.30648,-0.04717 -0.30825,-0.03376 -0.30943,-0.02027 -0.31001,-0.0068 -0.31002,0.0068 -0.30943,0.02027 -0.30824,0.03376 -0.30648,0.04717 -0.30413,0.0605 -0.30121,0.0737 -0.2977,0.08678 -0.29363,0.09968 -0.28901,0.112384 -0.28383,0.124893 -0.27811,0.137153 -0.27186,0.149147 -10.4548,6.03608 -0.2651,0.160874 -0.25783,0.172281 -0.25007,0.183359 -0.24184,0.194092 -0.23313,0.204457 -0.224,0.214431 -0.21443,0.223997 -0.20446,0.23314 -0.19409,0.241833 -0.18336,0.25007 -0.17228,0.257832 -0.16088,0.265099 -0.14915,0.271865 -0.13715,0.27811 -0.12489,0.283829 -0.11239,0.289006 -0.0997,0.293634 -0.0868,0.297702 -0.0737,0.301204 -0.0605,0.30413 -0.0472,0.306482 -0.0338,0.308247 -0.0203,0.309425 -0.007,0.310012 2e-4,12.072156 0.007,0.310015 0.0203,0.309427 0.0338,0.308246 0.0472,0.306481 0.0605,0.304132 0.0737,0.301204 0.0868,0.297702 0.0997,0.293633 0.11238,0.289006 0.1249,0.28383 0.13715,0.278111 0.14915,0.271865 0.16087,0.265098 0.17228,0.25783 0.18336,0.250071 0.19409,0.241835 0.20446,0.233137 0.21443,0.223999 0.224,0.214431 0.23314,0.204456 0.24183,0.194093 0.25007,0.18336 0.25783,0.172281 0.26491,0.160867 10.45461,6.036076 0.27186,0.149146 0.27811,0.137153 0.28383,0.124894 0.28901,0.112384 0.29363,0.09968 0.2977,0.08676 0.30121,0.0737 0.30413,0.0605 0.30648,0.04718 0.30824,0.03376 0.30943,0.02027 0.31002,0.0068 0.31001,-0.0068 0.30943,-0.02027 0.30825,-0.03376 0.30648,-0.04718 0.30413,-0.0605 0.3012,-0.0737 0.2977,-0.08676 0.29364,-0.09968 0.289,-0.112384 0.28383,-0.124894 0.27811,-0.137153 0.27187,-0.149146 10.4548,-6.036082 0.2651,-0.160874 0.25783,-0.172281 0.25007,-0.183359 0.24183,-0.194094 0.23314,-0.204456 0.224,-0.21443 0.21443,-0.224 0.20445,-0.233137 0.1941,-0.241835 0.18336,-0.25007 0.17228,-0.25783 0.16087,-0.265099 0.14915,-0.271865 0.13715,-0.27811 0.12489,-0.283831 0.11239,-0.289006 0.0997,-0.293633 0.0868,-0.297701 0.0737,-0.301204 0.0605,-0.304133 0.0472,-0.306481 0.0338,-0.308245 0.0203,-0.309427 0.007,-0.31001 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="13"
+ data-key-i="2"
+ id="path673" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 75.12723,75.643572 0.27187,0.149146 0.27811,0.137153 0.28382,0.124894 0.28901,0.112384 0.29364,0.09968 0.2977,0.08676 0.3012,0.0737 0.30413,0.0605 0.30648,0.04718 0.30825,0.03376 0.30943,0.02027 0.31001,0.0068 0.31002,-0.0068 0.30942,-0.02027 0.30825,-0.03376 0.30648,-0.04718 0.30413,-0.0605 0.30121,-0.0737 0.2977,-0.08676 0.29363,-0.09968 0.28901,-0.112384 0.28383,-0.124894 0.27811,-0.137153 0.27186,-0.149146 10.4548,-6.036082 0.2651,-0.160874 0.25783,-0.172281 0.25007,-0.183359 0.24184,-0.194094 0.23313,-0.204456 0.224,-0.21443 0.21443,-0.224 0.20446,-0.233137 0.19409,-0.241835 0.18336,-0.25007 0.17228,-0.25783 0.16088,-0.265099 0.14914,-0.271865 0.13716,-0.27811 0.12489,-0.283831 0.11238,-0.289006 0.0997,-0.293633 0.0868,-0.297701 0.0737,-0.301204 0.0605,-0.304133 0.0472,-0.306481 0.0338,-0.308245 0.0203,-0.309427 0.007,-0.31001 -2e-4,-12.072154 -0.007,-0.310017 -0.0203,-0.309426 -0.0338,-0.308247 -0.0472,-0.306481 -0.0605,-0.304131 -0.0737,-0.301204 -0.0868,-0.297701 -0.0997,-0.293635 -0.11238,-0.289006 -0.1249,-0.283828 -0.13715,-0.278111 -0.14915,-0.271865 -0.16087,-0.265099 -0.17228,-0.257832 -0.18336,-0.25007 -0.19409,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.224,-0.21443 -0.23314,-0.204458 -0.24183,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.26491,-0.160868 -10.4546,-6.036075 -0.27186,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.28901,-0.112384 -0.29363,-0.09968 -0.2977,-0.08678 -0.30121,-0.0737 -0.30413,-0.0605 -0.30648,-0.04717 -0.30825,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31001,0.0068 -0.30943,0.02027 -0.30825,0.03376 -0.30648,0.04717 -0.30413,0.0605 -0.3012,0.0737 -0.2977,0.08678 -0.29364,0.09968 -0.28901,0.112384 -0.28382,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.4548,6.03608 -0.2651,0.160874 -0.25783,0.172281 -0.25007,0.183359 -0.24183,0.194092 -0.23314,0.204457 -0.224,0.214431 -0.21443,0.223997 -0.20446,0.23314 -0.19409,0.241833 -0.18336,0.25007 -0.17228,0.257832 -0.16087,0.265099 -0.14915,0.271865 -0.13715,0.27811 -0.1249,0.283829 -0.11238,0.289006 -0.0997,0.293634 -0.0868,0.297702 -0.0737,0.301204 -0.0605,0.30413 -0.0472,0.306482 -0.0338,0.308247 -0.0203,0.309425 -0.007,0.310012 2e-4,12.072156 0.007,0.310015 0.0203,0.309427 0.0338,0.308246 0.0472,0.306481 0.0605,0.304132 0.0737,0.301204 0.0868,0.297702 0.0997,0.293633 0.11239,0.289006 0.12489,0.28383 0.13715,0.278111 0.14915,0.271865 0.16088,0.265098 0.17228,0.25783 0.18336,0.250071 0.19409,0.241835 0.20445,0.233137 0.21444,0.223999 0.22399,0.214431 0.23314,0.204456 0.24184,0.194093 0.25007,0.18336 0.25783,0.172281 0.2649,0.160867 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="14"
+ data-key-i="1"
+ id="path675" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 44.03278,39.189039 -0.27187,-0.149147 -0.27811,-0.137153 -0.28382,-0.124893 -0.28901,-0.112384 -0.29364,-0.09968 -0.2977,-0.08678 -0.3012,-0.0737 -0.30413,-0.0605 -0.30648,-0.04717 -0.30825,-0.03376 -0.30943,-0.02027 -0.31001,-0.0068 -0.31002,0.0068 -0.30942,0.02027 -0.30825,0.03376 -0.30648,0.04717 -0.30413,0.0605 -0.30121,0.0737 -0.2977,0.08678 -0.29363,0.09968 -0.28901,0.112391 -0.28383,0.124886 -0.27811,0.13715 -0.27186,0.14915 -10.4548,6.03608 -0.2651,0.160866 -0.25783,0.172278 -0.25007,0.183359 -0.24184,0.194092 -0.23313,0.204458 -0.224,0.21443 -0.21443,0.223998 -0.20446,0.233139 -0.19409,0.241833 -0.18336,0.25007 -0.17228,0.257832 -0.16087,0.265099 -0.14915,0.271865 -0.13714,0.278111 -0.12489,0.283828 -0.11239,0.289006 -0.0997,0.293635 -0.0868,0.297701 -0.0737,0.301204 -0.0605,0.304131 -0.0472,0.306481 -0.0338,0.308247 -0.0203,0.309426 -0.007,0.310017 1.9e-4,12.072161 0.007,0.310015 0.0203,0.309427 0.0338,0.308246 0.0472,0.306481 0.0605,0.304132 0.0737,0.301204 0.0868,0.297702 0.0997,0.293633 0.11239,0.289006 0.12488,0.28383 0.13715,0.278111 0.14915,0.271865 0.16087,0.265098 0.17228,0.25783 0.18336,0.250071 0.19409,0.241835 0.20446,0.233137 0.21443,0.223999 0.224,0.214431 0.23313,0.204456 0.24184,0.194093 0.25007,0.18336 0.25783,0.172281 0.26491,0.160867 10.45461,6.036076 0.27186,0.149146 0.27811,0.137153 0.28383,0.124894 0.28901,0.112384 0.29363,0.09968 0.2977,0.08676 0.30121,0.0737 0.30413,0.0605 0.30648,0.04718 0.30825,0.03376 0.30942,0.02027 0.31002,0.0068 0.31001,-0.0068 0.30943,-0.02027 0.30825,-0.03376 0.30648,-0.04718 0.30413,-0.0605 0.3012,-0.0737 0.2977,-0.08676 0.29364,-0.09968 0.28901,-0.112384 0.28382,-0.124894 0.27811,-0.137153 0.27187,-0.149146 10.4548,-6.036082 0.2651,-0.160874 0.25783,-0.172281 0.25007,-0.183359 0.24183,-0.194094 0.23314,-0.204456 0.224,-0.21443 0.21443,-0.224 0.20445,-0.233137 0.1941,-0.241835 0.18336,-0.25007 0.17228,-0.25783 0.16087,-0.265099 0.14915,-0.271865 0.13715,-0.27811 0.1249,-0.283831 0.11238,-0.289006 0.0997,-0.293633 0.0868,-0.297701 0.0737,-0.301204 0.0605,-0.304133 0.0472,-0.306481 0.0338,-0.308245 0.0203,-0.309427 0.007,-0.31001 -2e-4,-12.072154 -0.007,-0.310017 -0.0203,-0.309426 -0.0338,-0.308247 -0.0472,-0.306481 -0.0605,-0.304131 -0.0737,-0.301204 -0.0868,-0.297701 -0.0997,-0.293635 -0.11239,-0.289006 -0.12489,-0.283828 -0.13716,-0.278111 -0.14914,-0.271865 -0.16088,-0.265099 -0.17228,-0.257832 -0.18336,-0.25007 -0.19409,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.224,-0.21443 -0.23313,-0.204458 -0.24184,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.2649,-0.160868 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="15"
+ data-key-i="0"
+ id="path677" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 17.8246,108.72726 0.27186,0.14915 0.27811,0.13715 0.28383,0.12489 0.28901,0.11239 0.29363,0.0997 0.2977,0.0868 0.30121,0.0737 0.30413,0.0605 0.30648,0.0472 0.30825,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30413,-0.0605 0.30121,-0.0737 0.2977,-0.0868 0.29363,-0.0997 0.28901,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27186,-0.14914 10.4548,-6.03609 0.2651,-0.16087 0.25783,-0.17228 0.25007,-0.18336 0.24183,-0.19409 0.23314,-0.20446 0.224,-0.21443 0.21443,-0.224 0.20446,-0.23314 0.19409,-0.24183 0.18336,-0.25007 0.17228,-0.25783 0.16086,-0.2651 0.14915,-0.271875 0.13715,-0.27811 0.12489,-0.28382 0.11239,-0.28901 0.0997,-0.29363 0.0868,-0.29771 0.0737,-0.3012 0.0605,-0.30413 0.0472,-0.30648 0.0337,-0.30825 0.0203,-0.30943 0.007,-0.31 -1.4e-4,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0472,-0.30648 -0.0605,-0.30413 -0.0737,-0.30121 -0.0868,-0.2977 -0.0997,-0.29363 -0.11239,-0.28901 -0.12489,-0.28383 -0.13715,-0.27811 -0.14915,-0.27186 -0.16087,-0.2651 -0.17227,-0.257833 -0.18336,-0.25007 -0.1941,-0.241833 -0.20445,-0.233139 -0.21443,-0.223998 -0.224,-0.214431 -0.23314,-0.204457 -0.24183,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.26491,-0.160859 -10.45461,-6.036084 -0.27186,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.28901,-0.112385 -0.29363,-0.09968 -0.2977,-0.08676 -0.30121,-0.0737 -0.30413,-0.0605 -0.30648,-0.04717 -0.30825,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30942,0.02027 -0.30825,0.03376 -0.30648,0.04717 -0.30413,0.0605 -0.30121,0.0737 -0.2977,0.08676 -0.29363,0.09968 -0.28901,0.112384 -0.28383,0.124894 -0.27811,0.137153 -0.27186,0.149154 -10.4548005,6.036074 -0.2651,0.160856 -0.25783,0.172281 -0.25007,0.18336 -0.24183,0.194091 -0.23314,0.204458 -0.224,0.214431 -0.21443,0.223997 -0.20446,0.233139 -0.19409,0.241833 -0.18336,0.250071 -0.17228,0.257828 -0.16086,0.2651 -0.14915,0.27187 -0.13715,0.27811 -0.12489,0.28383 -0.11239,0.289 -0.0997,0.29364 -0.0868,0.2977 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0337,0.30825 -0.0203,0.30943 -0.007,0.31002 1.4e-4,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11239,0.28901 0.12489,0.28383 0.13715,0.27811 0.14915,0.271865 0.16087,0.2651 0.17227,0.25783 0.18336,0.25007 0.1941,0.24184 0.20445,0.23314 0.21443,0.22399 0.224,0.21443 0.23314,0.20446 0.24183,0.19409 0.25007,0.18336 0.25783,0.17228 0.26491,0.16087 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="16"
+ data-key-i="12"
+ id="path679" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 56.02635,108.72727 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.2977,0.0868 0.3012,0.0737 0.30413,0.0605 0.30649,0.0472 0.30824,0.0338 0.30943,0.0203 0.31001,0.007 0.31002,-0.007 0.30943,-0.0203 0.30824,-0.0338 0.30649,-0.0472 0.30413,-0.0605 0.3012,-0.0737 0.2977,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.45479,-6.03609 0.2651,-0.16087 0.25783,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.224,-0.21443 0.21443,-0.224 0.20445,-0.23314 0.1941,-0.24183 0.18335,-0.25007 0.17229,-0.25783 0.16087,-0.2651 0.14915,-0.271875 0.13715,-0.27811 0.12489,-0.28382 0.11239,-0.28901 0.0997,-0.29363 0.0868,-0.29771 0.0737,-0.3012 0.0605,-0.30413 0.0472,-0.30648 0.0338,-0.30825 0.0203,-0.30943 0.007,-0.31 -2e-4,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0472,-0.30648 -0.0605,-0.30413 -0.0737,-0.30121 -0.0868,-0.2977 -0.0997,-0.29363 -0.11238,-0.28901 -0.12489,-0.28383 -0.13716,-0.27811 -0.14914,-0.27186 -0.16088,-0.2651 -0.17228,-0.257833 -0.18336,-0.25007 -0.19409,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.224,-0.214431 -0.23314,-0.204457 -0.24183,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.26491,-0.160859 -10.4546,-6.036084 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112385 -0.29364,-0.09968 -0.2977,-0.08676 -0.3012,-0.0737 -0.30413,-0.0605 -0.30649,-0.04717 -0.30824,-0.03376 -0.30943,-0.02027 -0.31002,-0.0068 -0.31001,0.0068 -0.30943,0.02027 -0.30824,0.03376 -0.30649,0.04717 -0.30413,0.0605 -0.3012,0.0737 -0.2977,0.08676 -0.29364,0.09968 -0.289,0.112385 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.4548,6.036081 -0.26509,0.160856 -0.25783,0.172281 -0.25007,0.18336 -0.24184,0.194091 -0.23314,0.204458 -0.224,0.214431 -0.21443,0.223997 -0.20445,0.233139 -0.1941,0.241833 -0.18336,0.250071 -0.17228,0.257828 -0.16087,0.2651 -0.14915,0.27187 -0.13715,0.27811 -0.12489,0.28383 -0.11239,0.289 -0.0997,0.29364 -0.0868,0.2977 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31002 2e-4,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11238,0.28901 0.12489,0.28383 0.13716,0.27811 0.14914,0.271865 0.16088,0.2651 0.17228,0.25783 0.18336,0.25007 0.19409,0.24184 0.20446,0.23314 0.21443,0.22399 0.224,0.21443 0.23313,0.20446 0.24184,0.19409 0.25007,0.18336 0.25783,0.17228 0.26491,0.16087 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="17"
+ data-key-i="13"
+ id="path681" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 94.22811,108.72726 0.27186,0.14915 0.27811,0.13715 0.28383,0.12489 0.28901,0.11239 0.29363,0.0997 0.2977,0.0868 0.30121,0.0737 0.30413,0.0605 0.30648,0.0472 0.30825,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30413,-0.0605 0.3012,-0.0737 0.29771,-0.0868 0.29363,-0.0997 0.28901,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27186,-0.14914 10.4548,-6.03609 0.2651,-0.16087 0.25783,-0.17228 0.25007,-0.18336 0.24183,-0.19409 0.23314,-0.20446 0.224,-0.21443 0.21443,-0.224 0.20446,-0.23314 0.19409,-0.24183 0.18336,-0.25007 0.17228,-0.25783 0.16087,-0.2651 0.14915,-0.271875 0.13715,-0.27811 0.1249,-0.28382 0.11238,-0.28901 0.0997,-0.29363 0.0868,-0.29771 0.0737,-0.3012 0.0605,-0.30413 0.0472,-0.30648 0.0338,-0.30825 0.0203,-0.30943 0.007,-0.31 -1.9e-4,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0472,-0.30648 -0.0605,-0.30413 -0.0737,-0.30121 -0.0868,-0.2977 -0.0997,-0.29363 -0.11239,-0.28901 -0.12489,-0.28383 -0.13715,-0.27811 -0.14915,-0.27186 -0.16087,-0.2651 -0.17228,-0.257833 -0.18336,-0.25007 -0.1941,-0.241833 -0.20445,-0.233139 -0.21443,-0.223998 -0.224,-0.214431 -0.23314,-0.204457 -0.24184,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.2649,-0.160859 -10.4546,-6.036084 -0.27186,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.28901,-0.112385 -0.29363,-0.09968 -0.29771,-0.08676 -0.3012,-0.0737 -0.30413,-0.0605 -0.30648,-0.04717 -0.30825,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30942,0.02027 -0.30825,0.03376 -0.30648,0.04717 -0.30413,0.0605 -0.30121,0.0737 -0.2977,0.08676 -0.29363,0.09968 -0.28901,0.112385 -0.28383,0.124893 -0.27811,0.137153 -0.27186,0.149147 -10.4548,6.036081 -0.2651,0.160856 -0.25783,0.172281 -0.25007,0.18336 -0.24183,0.194091 -0.23314,0.204458 -0.224,0.214431 -0.21443,0.223997 -0.20446,0.233139 -0.19409,0.241833 -0.18336,0.250071 -0.17228,0.257828 -0.16088,0.2651 -0.14914,0.27187 -0.13716,0.27811 -0.12489,0.28383 -0.11238,0.289 -0.0997,0.29364 -0.0868,0.2977 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31002 2e-4,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11239,0.28901 0.12489,0.28383 0.13715,0.27811 0.14915,0.271865 0.16087,0.2651 0.17228,0.25783 0.18336,0.25007 0.1941,0.24184 0.20445,0.23314 0.21443,0.22399 0.224,0.21443 0.23314,0.20446 0.24183,0.19409 0.25007,0.18336 0.25783,0.17228 0.2649,0.16087 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="18"
+ data-key-i="14"
+ id="path683" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 132.42986,108.72727 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.2977,0.0868 0.3012,0.0737 0.30413,0.0605 0.30648,0.0472 0.30825,0.0338 0.30943,0.0203 0.31001,0.007 0.31002,-0.007 0.30943,-0.0203 0.30824,-0.0338 0.30648,-0.0472 0.30414,-0.0605 0.3012,-0.0737 0.2977,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.45479,-6.03609 0.2651,-0.16087 0.25783,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22399,-0.21443 0.21444,-0.224 0.20445,-0.23314 0.19409,-0.24183 0.18336,-0.25007 0.17229,-0.25783 0.16087,-0.2651 0.14915,-0.271875 0.13715,-0.27811 0.12489,-0.28382 0.11239,-0.28901 0.0997,-0.29363 0.0868,-0.29771 0.0737,-0.3012 0.0605,-0.30413 0.0472,-0.30648 0.0338,-0.30825 0.0203,-0.30943 0.007,-0.31 -2e-4,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0472,-0.30648 -0.0605,-0.30413 -0.0737,-0.30121 -0.0868,-0.2977 -0.0997,-0.29363 -0.11238,-0.28901 -0.1249,-0.28383 -0.13715,-0.27811 -0.14915,-0.27186 -0.16087,-0.2651 -0.17228,-0.257833 -0.18336,-0.25007 -0.19409,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.224,-0.214431 -0.23314,-0.204457 -0.24183,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.26491,-0.160859 -10.4546,-6.036084 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112385 -0.29364,-0.09968 -0.2977,-0.08676 -0.3012,-0.0737 -0.30414,-0.0605 -0.30648,-0.04717 -0.30824,-0.03376 -0.30943,-0.02027 -0.31002,-0.0068 -0.31001,0.0068 -0.30943,0.02027 -0.30825,0.03376 -0.30648,0.04717 -0.30413,0.0605 -0.3012,0.0737 -0.2977,0.08676 -0.29364,0.09968 -0.289,0.112385 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.4548,6.036081 -0.26509,0.160856 -0.25783,0.172281 -0.25008,0.18336 -0.24183,0.194091 -0.23314,0.204458 -0.224,0.214431 -0.21443,0.223997 -0.20445,0.233139 -0.1941,0.241833 -0.18336,0.250071 -0.17228,0.257828 -0.16087,0.2651 -0.14915,0.27187 -0.13715,0.27811 -0.12489,0.28383 -0.11239,0.289 -0.0997,0.29364 -0.0868,0.2977 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31002 1.9e-4,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11238,0.28901 0.12489,0.28383 0.13716,0.27811 0.14914,0.271865 0.16088,0.2651 0.17228,0.25783 0.18336,0.25007 0.19409,0.24184 0.20446,0.23314 0.21443,0.22399 0.224,0.21443 0.23313,0.20446 0.24184,0.19409 0.25007,0.18336 0.25783,0.17228 0.26491,0.16087 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="19"
+ data-key-i="15"
+ id="path685" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 177.73892,72.272729 -0.27186,-0.149147 -0.27812,-0.137153 -0.28382,-0.124893 -0.28901,-0.112385 -0.29363,-0.09968 -0.29771,-0.08676 -0.3012,-0.0737 -0.30413,-0.0605 -0.30648,-0.04717 -0.30825,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30942,0.02027 -0.30825,0.03376 -0.30648,0.04717 -0.30413,0.0605 -0.30121,0.0737 -0.2977,0.08676 -0.29363,0.09968 -0.28901,0.112385 -0.28383,0.124893 -0.27811,0.137153 -0.27186,0.149147 -10.4548,6.036081 -0.2651,0.160856 -0.25783,0.172281 -0.25007,0.18336 -0.24184,0.194091 -0.23313,0.204458 -0.224,0.214431 -0.21443,0.223997 -0.20446,0.233139 -0.19409,0.241833 -0.18336,0.250071 -0.17228,0.257828 -0.16088,0.2651 -0.14914,0.27187 -0.13716,0.27811 -0.12489,0.28383 -0.11238,0.289 -0.0997,0.29364 -0.0868,0.2977 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31002 1.9e-4,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11238,0.28901 0.1249,0.28383 0.13715,0.27811 0.14915,0.271865 0.16087,0.2651 0.17228,0.25783 0.18336,0.25007 0.1941,0.24184 0.20445,0.23314 0.21443,0.22399 0.224,0.21443 0.23314,0.20446 0.24183,0.19409 0.25007,0.18336 0.25783,0.17228 0.26491,0.16087 10.4546,6.03607 0.27186,0.14915 0.27811,0.13715 0.28383,0.12489 0.28901,0.11239 0.29363,0.0997 0.2977,0.0868 0.30121,0.0737 0.30413,0.0605 0.30648,0.0472 0.30825,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30413,-0.0605 0.3012,-0.0737 0.29771,-0.0868 0.29363,-0.0997 0.28901,-0.11238 0.28382,-0.12489 0.27812,-0.13716 0.27186,-0.14914 10.4548,-6.03609 0.2651,-0.16087 0.25783,-0.17228 0.25007,-0.18336 0.24183,-0.19409 0.23314,-0.20446 0.224,-0.21443 0.21443,-0.224 0.20446,-0.23314 0.19409,-0.24183 0.18336,-0.25007 0.17228,-0.25783 0.16087,-0.2651 0.14915,-0.271875 0.13715,-0.27811 0.1249,-0.28382 0.11238,-0.28901 0.0997,-0.29363 0.0868,-0.29771 0.0737,-0.3012 0.0605,-0.30413 0.0472,-0.30648 0.0338,-0.30825 0.0203,-0.30943 0.007,-0.31 -2e-4,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0472,-0.30648 -0.0605,-0.30413 -0.0737,-0.30121 -0.0868,-0.2977 -0.0997,-0.29363 -0.11239,-0.28901 -0.12489,-0.28383 -0.13715,-0.27811 -0.14915,-0.27186 -0.16087,-0.2651 -0.17229,-0.257833 -0.18335,-0.25007 -0.1941,-0.241833 -0.20445,-0.233139 -0.21443,-0.223998 -0.224,-0.214431 -0.23314,-0.204457 -0.24184,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.2649,-0.160859 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="20"
+ data-key-i="16"
+ id="path687" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 208.83337,108.72727 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.29769,0.0868 0.30121,0.0737 0.30414,0.0605 0.30648,0.0472 0.30825,0.0338 0.30941,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30824,-0.0338 0.30649,-0.0472 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.0868 0.29363,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27188,-0.14914 10.45478,-6.03609 0.26511,-0.16087 0.25783,-0.17228 0.25007,-0.18336 0.24185,-0.19409 0.23313,-0.20446 0.22399,-0.21443 0.21443,-0.224 0.20446,-0.23314 0.1941,-0.24183 0.18335,-0.25007 0.17235,-0.25783 0.1608,-0.2651 0.14908,-0.271875 0.13717,-0.27811 0.12491,-0.28382 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0606,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0202,-0.30943 0.007,-0.31 -1.2e-4,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0606,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11247,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14908,-0.27186 -0.1608,-0.2651 -0.17235,-0.257833 -0.18336,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21442,-0.223998 -0.22399,-0.214431 -0.23314,-0.204457 -0.24184,-0.194092 -0.25007,-0.183359 -0.25784,-0.172281 -0.26493,-0.160859 -10.45461,-6.036084 -0.27188,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112385 -0.29363,-0.09968 -0.29769,-0.08676 -0.30121,-0.0737 -0.30414,-0.0605 -0.30649,-0.04717 -0.30824,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30941,0.02027 -0.30825,0.03376 -0.30648,0.04717 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.08676 -0.29364,0.09968 -0.289,0.112385 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.4548,6.036081 -0.2651,0.160856 -0.25783,0.172281 -0.25007,0.18336 -0.24183,0.194091 -0.23314,0.204458 -0.224,0.214431 -0.21443,0.223997 -0.20445,0.233139 -0.1941,0.241833 -0.18336,0.250071 -0.17228,0.257828 -0.16087,0.2651 -0.14915,0.27187 -0.13715,0.27811 -0.12489,0.28383 -0.11239,0.289 -0.0997,0.29364 -0.0868,0.2977 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31002 1.9e-4,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11238,0.28901 0.12489,0.28383 0.13716,0.27811 0.14914,0.271865 0.16088,0.2651 0.17228,0.25783 0.18336,0.25007 0.19409,0.24184 0.20446,0.23314 0.21443,0.22399 0.224,0.21443 0.23313,0.20446 0.24184,0.19409 0.25007,0.18336 0.25783,0.17228 0.2649,0.16087 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="21"
+ data-key-i="17"
+ id="path689" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 247.03513,108.72727 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.29769,0.0868 0.3012,0.0737 0.30414,0.0605 0.30649,0.0472 0.30824,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30824,-0.0338 0.30648,-0.0472 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.45479,-6.03609 0.2651,-0.16087 0.25784,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22399,-0.21443 0.21442,-0.224 0.20446,-0.23314 0.1941,-0.24183 0.18335,-0.25007 0.17236,-0.25783 0.1608,-0.2651 0.14907,-0.271875 0.13717,-0.27811 0.12492,-0.28382 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30943 0.007,-0.31 -7e-5,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11247,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14908,-0.27186 -0.1608,-0.2651 -0.17235,-0.257833 -0.18335,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.22399,-0.214431 -0.23313,-0.204457 -0.24185,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.26504,-0.160859 -10.45471,-6.036084 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112385 -0.29364,-0.09968 -0.29769,-0.08676 -0.30121,-0.0737 -0.30414,-0.0605 -0.30648,-0.04717 -0.30824,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30942,0.02027 -0.30824,0.03376 -0.30649,0.04717 -0.30414,0.0605 -0.3012,0.0737 -0.29769,0.08676 -0.29364,0.09968 -0.289,0.112385 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.45479,6.036081 -0.26511,0.160856 -0.25783,0.172281 -0.25007,0.18336 -0.24184,0.194091 -0.23314,0.204458 -0.22399,0.214431 -0.21443,0.223997 -0.20446,0.233139 -0.1941,0.241833 -0.18335,0.250071 -0.17235,0.257828 -0.1608,0.2651 -0.14908,0.27187 -0.13717,0.27811 -0.12491,0.28383 -0.11247,0.289 -0.0997,0.29364 -0.0867,0.2977 -0.0737,0.3012 -0.0606,0.30413 -0.0471,0.30648 -0.0337,0.30825 -0.0203,0.30943 -0.007,0.31002 1.3e-4,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0606,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11247,0.28901 0.12491,0.28383 0.13718,0.27811 0.14907,0.271865 0.1608,0.2651 0.17236,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23314 0.21442,0.22399 0.22399,0.21443 0.23314,0.20446 0.24184,0.19409 0.25007,0.18336 0.25784,0.17228 0.26492,0.16087 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="22"
+ data-key-i="18"
+ id="path691" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 271.22844,96.536075 0.007,0.31002 0.0202,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11247,0.28901 0.12491,0.28383 0.13717,0.27811 0.14908,0.271865 0.1608,0.2651 0.17235,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23314 0.21443,0.22399 0.22399,0.21443 0.23314,0.20446 0.24184,0.19409 0.25007,0.18336 0.25783,0.17228 0.26508,0.16087 10.45477,6.03608 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.29769,0.0868 0.30121,0.0737 0.30414,0.0605 0.30648,0.0472 0.30825,0.0338 0.30941,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30824,-0.0338 0.30649,-0.0472 0.30414,-0.0605 0.30121,-0.0737 0.29768,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.45479,-6.03609 0.26511,-0.16087 0.25783,-0.17228 0.25007,-0.18336 0.24185,-0.19409 0.23313,-0.20446 0.22399,-0.21443 0.21443,-0.224 0.20446,-0.23314 0.1941,-0.24183 0.18335,-0.25007 0.17235,-0.25783 0.1608,-0.2651 0.14908,-0.271875 0.13717,-0.27811 0.12491,-0.28382 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30943 0.007,-0.31 -7e-5,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11248,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14907,-0.27186 -0.16081,-0.2651 -0.17235,-0.257833 -0.18335,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.22398,-0.214431 -0.23314,-0.204457 -0.24184,-0.194092 -0.25007,-0.183359 -0.25784,-0.172281 -0.26503,-0.160859 -10.45472,-6.036084 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112385 -0.29364,-0.09968 -0.29768,-0.08676 -0.30121,-0.0737 -0.30414,-0.0605 -0.30649,-0.04717 -0.30824,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30941,0.02027 -0.30825,0.03376 -0.30648,0.04717 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.08676 -0.29364,0.09968 -0.289,0.112385 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.45479,6.036081 -0.2651,0.160856 -0.25784,0.172281 -0.25007,0.18336 -0.24184,0.194091 -0.23314,0.204458 -0.22398,0.214431 -0.21443,0.223997 -0.20446,0.233139 -0.1941,0.241833 -0.18335,0.250071 -0.17235,0.257828 -0.16081,0.2651 -0.14907,0.27187 -0.13717,0.27811 -0.12491,0.28383 -0.11248,0.289 -0.0997,0.29364 -0.0867,0.2977 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31002 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="23"
+ data-key-i="19"
+ id="path693" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 344.55438,84.463915 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11247,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14908,-0.27186 -0.1608,-0.2651 -0.17235,-0.257833 -0.18335,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.22399,-0.214431 -0.23313,-0.204457 -0.24185,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.26504,-0.160859 -10.45471,-6.036084 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112385 -0.29364,-0.09968 -0.29769,-0.08676 -0.30121,-0.0737 -0.30414,-0.0605 -0.30648,-0.04717 -0.30825,-0.03376 -0.30941,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30942,0.02027 -0.30824,0.03376 -0.30649,0.04717 -0.30414,0.0605 -0.3012,0.0737 -0.29769,0.08676 -0.29364,0.09968 -0.289,0.112385 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.45479,6.036081 -0.26511,0.160856 -0.25783,0.172281 -0.25007,0.18336 -0.24185,0.194091 -0.23313,0.204458 -0.22399,0.214431 -0.21443,0.223997 -0.20446,0.233139 -0.1941,0.241833 -0.18335,0.250071 -0.17235,0.257828 -0.1608,0.2651 -0.14908,0.27187 -0.13717,0.27811 -0.12491,0.28383 -0.11247,0.289 -0.0997,0.29364 -0.0867,0.2977 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31002 7e-5,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11248,0.28901 0.12491,0.28383 0.13717,0.27811 0.14907,0.271865 0.16081,0.2651 0.17235,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23314 0.21443,0.22399 0.22398,0.21443 0.23314,0.20446 0.24184,0.19409 0.25007,0.18336 0.25784,0.17228 0.26503,0.16087 10.45472,6.03608 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.29769,0.0868 0.3012,0.0737 0.30414,0.0605 0.30649,0.0472 0.30824,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30941,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.45479,-6.03609 0.2651,-0.16087 0.25784,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22398,-0.21443 0.21443,-0.224 0.20446,-0.23314 0.1941,-0.24183 0.18335,-0.25007 0.17235,-0.25783 0.16081,-0.2651 0.14907,-0.271875 0.13717,-0.27811 0.12491,-0.28382 0.11248,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30943 0.007,-0.31 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="24"
+ data-key-i="20"
+ id="path695" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 361.64039,108.72727 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.29769,0.0868 0.30121,0.0737 0.30414,0.0605 0.30648,0.0472 0.30825,0.0338 0.30941,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30824,-0.0338 0.30649,-0.0472 0.30414,-0.0605 0.3012,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.45479,-6.03609 0.26511,-0.16087 0.25783,-0.17228 0.25007,-0.18336 0.24185,-0.19409 0.23313,-0.20446 0.22399,-0.21443 0.21443,-0.224 0.20446,-0.23314 0.1941,-0.24183 0.18335,-0.25007 0.17235,-0.25783 0.1608,-0.2651 0.14908,-0.271875 0.13717,-0.27811 0.12491,-0.28382 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0202,-0.30943 0.007,-0.31 -2e-5,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11248,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14907,-0.27186 -0.16081,-0.2651 -0.17235,-0.257833 -0.18335,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.22398,-0.214431 -0.23314,-0.204457 -0.24184,-0.194092 -0.25007,-0.183359 -0.25784,-0.172281 -0.26503,-0.160859 -10.45472,-6.036084 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112385 -0.29364,-0.09968 -0.29769,-0.08676 -0.3012,-0.0737 -0.30414,-0.0605 -0.30649,-0.04717 -0.30824,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30941,0.02027 -0.30825,0.03376 -0.30648,0.04717 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.08676 -0.29364,0.09968 -0.289,0.112385 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.45479,6.036081 -0.2651,0.160856 -0.25784,0.172281 -0.25007,0.18336 -0.24184,0.194091 -0.23314,0.204458 -0.22398,0.214431 -0.21443,0.223997 -0.20446,0.233139 -0.1941,0.241833 -0.18335,0.250071 -0.17235,0.257828 -0.16081,0.2651 -0.14907,0.27187 -0.13717,0.27811 -0.12491,0.28383 -0.11248,0.289 -0.0997,0.29364 -0.0867,0.2977 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31002 7e-5,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11247,0.28901 0.12491,0.28383 0.13717,0.27811 0.14908,0.271865 0.1608,0.2651 0.17235,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23314 0.21443,0.22399 0.22399,0.21443 0.23313,0.20446 0.24185,0.19409 0.25007,0.18336 0.25783,0.17228 0.26503,0.16087 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="25"
+ data-key-i="21"
+ id="path697" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 420.95789,84.463915 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11247,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14908,-0.27186 -0.1608,-0.2651 -0.17235,-0.257833 -0.18335,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.22399,-0.214431 -0.23314,-0.204457 -0.24184,-0.194092 -0.25007,-0.183359 -0.25783,-0.172281 -0.26503,-0.160859 -10.45472,-6.036084 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112385 -0.29364,-0.09968 -0.29769,-0.08676 -0.30121,-0.0737 -0.30414,-0.0605 -0.30648,-0.04717 -0.30825,-0.03376 -0.30941,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30942,0.02027 -0.30824,0.03376 -0.30649,0.04717 -0.30414,0.0605 -0.30121,0.0737 -0.29768,0.08676 -0.29364,0.09968 -0.289,0.112385 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.45479,6.036081 -0.26511,0.160856 -0.25783,0.172281 -0.25007,0.18336 -0.24185,0.194091 -0.23313,0.204458 -0.22399,0.214431 -0.21443,0.223997 -0.20446,0.233139 -0.1941,0.241833 -0.18335,0.250071 -0.17235,0.257828 -0.1608,0.2651 -0.14908,0.27187 -0.13717,0.27811 -0.12491,0.28383 -0.11247,0.289 -0.0997,0.29364 -0.0867,0.2977 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31002 7e-5,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11248,0.28901 0.12491,0.28383 0.13717,0.27811 0.14907,0.271865 0.16081,0.2651 0.17235,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23314 0.21443,0.22399 0.22398,0.21443 0.23314,0.20446 0.24184,0.19409 0.25007,0.18336 0.25784,0.17228 0.26503,0.16087 10.45472,6.03608 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.29768,0.0868 0.30121,0.0737 0.30414,0.0605 0.30649,0.0472 0.30824,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30941,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.45479,-6.03609 0.2651,-0.16087 0.25784,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22398,-0.21443 0.21443,-0.224 0.20446,-0.23314 0.1941,-0.24183 0.18335,-0.25007 0.17235,-0.25783 0.16081,-0.2651 0.14907,-0.271875 0.13717,-0.27811 0.12491,-0.28382 0.11248,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30943 0.007,-0.31 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="26"
+ data-key-i="22"
+ id="path699" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 438.0439,108.72727 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.29769,0.0868 0.30121,0.0737 0.30414,0.0605 0.30648,0.0472 0.30824,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30824,-0.0338 0.30649,-0.0472 0.30414,-0.0605 0.3012,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.45479,-6.03609 0.26511,-0.16087 0.25783,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22399,-0.21443 0.21443,-0.224 0.20446,-0.23314 0.1941,-0.24183 0.18335,-0.25007 0.17235,-0.25783 0.1608,-0.2651 0.14908,-0.271875 0.13717,-0.27811 0.12491,-0.28382 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30943 0.007,-0.31 -8e-5,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11248,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14907,-0.27186 -0.16081,-0.2651 -0.17235,-0.257833 -0.18335,-0.25007 -0.1941,-0.241833 -0.20446,-0.233139 -0.21443,-0.223998 -0.22398,-0.214431 -0.23314,-0.204457 -0.24184,-0.194092 -0.25007,-0.183359 -0.25784,-0.172281 -0.26502,-0.160859 -10.45472,-6.036084 -0.27187,-0.149147 -0.27811,-0.137153 -0.28383,-0.124893 -0.289,-0.112385 -0.29364,-0.09968 -0.29769,-0.08676 -0.3012,-0.0737 -0.30414,-0.0605 -0.30649,-0.04717 -0.30824,-0.03376 -0.30942,-0.02027 -0.31002,-0.0068 -0.31002,0.0068 -0.30942,0.02027 -0.30824,0.03376 -0.30648,0.04717 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.08676 -0.29364,0.09968 -0.289,0.112385 -0.28383,0.124893 -0.27811,0.137153 -0.27187,0.149147 -10.45479,6.036081 -0.2651,0.160856 -0.25784,0.172281 -0.25007,0.18336 -0.24184,0.194091 -0.23314,0.204458 -0.22399,0.214431 -0.21442,0.223997 -0.20446,0.233139 -0.1941,0.241833 -0.18335,0.250071 -0.17236,0.257828 -0.1608,0.2651 -0.14907,0.27187 -0.13717,0.27811 -0.12492,0.28383 -0.11247,0.289 -0.0997,0.29364 -0.0867,0.2977 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31002 7e-5,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11247,0.28901 0.12491,0.28383 0.13717,0.27811 0.14908,0.271865 0.1608,0.2651 0.17235,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23314 0.21443,0.22399 0.22399,0.21443 0.23313,0.20446 0.24185,0.19409 0.25007,0.18336 0.25783,0.17228 0.26504,0.16087 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="27"
+ data-key-i="23"
+ id="path701" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 478.26052,117.54761 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0606,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11248,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14907,-0.27186 -0.16081,-0.2651 -0.17235,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20446,-0.23314 -0.21443,-0.22399 -0.22398,-0.21443 -0.23314,-0.20446 -0.24184,-0.19409 -0.25008,-0.18336 -0.25783,-0.17228 -0.26492,-0.16088 -10.45462,-6.03607 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.29769,-0.0868 -0.30121,-0.0737 -0.30414,-0.0605 -0.30648,-0.0472 -0.30824,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30942,0.0203 -0.30824,0.0338 -0.30649,0.0472 -0.30414,0.0605 -0.3012,0.0737 -0.29769,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.45479,6.03608 -0.2651,0.16088 -0.25784,0.17228 -0.25007,0.18336 -0.24184,0.19409 -0.23314,0.20446 -0.22399,0.21443 -0.21443,0.224 -0.20445,0.23314 -0.19411,0.24183 -0.18335,0.25007 -0.17235,0.25783 -0.1608,0.2651 -0.14908,0.27186 -0.13717,0.27812 -0.12491,0.28383 -0.11247,0.289 -0.0997,0.29363 -0.0867,0.29771 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 7e-5,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11248,0.28901 0.12491,0.28383 0.13717,0.27811 0.14907,0.27186 0.16081,0.2651 0.17235,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23314 0.21443,0.22399 0.22398,0.21443 0.23314,0.20446 0.24185,0.19409 0.25007,0.18336 0.25783,0.17228 0.26503,0.16087 10.45471,6.03608 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.29769,0.0868 0.3012,0.0737 0.30414,0.0605 0.30649,0.0472 0.30824,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30824,-0.0338 0.30648,-0.0472 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.45479,-6.03608 0.2651,-0.16088 0.25784,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22399,-0.21443 0.21442,-0.224 0.20446,-0.23313 0.1941,-0.24184 0.18335,-0.25007 0.17236,-0.25783 0.1608,-0.2651 0.14907,-0.27186 0.13718,-0.27811 0.12491,-0.28383 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0606,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31002 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="28"
+ data-key-i="35"
+ id="path703" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 426.05033,105.35642 -0.27188,-0.14914 -0.2781,-0.13716 -0.28384,-0.12489 -0.289,-0.11238 -0.29363,-0.0997 -0.29769,-0.0868 -0.30121,-0.0737 -0.30414,-0.0605 -0.30648,-0.0472 -0.30825,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30941,0.0203 -0.30825,0.0338 -0.30648,0.0472 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.45479,6.03608 -0.2651,0.16088 -0.25783,0.17228 -0.25008,0.18336 -0.24184,0.19409 -0.23314,0.20446 -0.22398,0.21443 -0.21443,0.224 -0.20446,0.23314 -0.1941,0.24183 -0.18335,0.25007 -0.17235,0.25783 -0.16081,0.2651 -0.14907,0.27186 -0.13717,0.27812 -0.12491,0.28383 -0.11248,0.289 -0.0997,0.29363 -0.0867,0.29771 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 8e-5,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11247,0.28901 0.12491,0.28383 0.13717,0.27811 0.14908,0.27186 0.1608,0.2651 0.17235,0.25783 0.18336,0.25007 0.1941,0.24184 0.20446,0.23314 0.21442,0.22399 0.22399,0.21443 0.23314,0.20446 0.24184,0.19409 0.25007,0.18336 0.25784,0.17228 0.26502,0.16087 10.45472,6.03608 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.29769,0.0868 0.30121,0.0737 0.30414,0.0605 0.30648,0.0472 0.30825,0.0338 0.30941,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.0868 0.29363,-0.0997 0.289,-0.11238 0.28384,-0.12489 0.2781,-0.13716 0.27188,-0.14914 10.45479,-6.03608 0.2651,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24185,-0.19409 0.23313,-0.20446 0.22399,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.1941,-0.24184 0.18335,-0.25007 0.17235,-0.25783 0.1608,-0.2651 0.14908,-0.27186 0.13717,-0.27811 0.12491,-0.28383 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31002 -7e-5,-12.07215 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11247,-0.28901 -0.12491,-0.28383 -0.13718,-0.27811 -0.14907,-0.27186 -0.1608,-0.2651 -0.17236,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20446,-0.23314 -0.21442,-0.22399 -0.22399,-0.21443 -0.23314,-0.20446 -0.24184,-0.19409 -0.25007,-0.18336 -0.25784,-0.17228 -0.26503,-0.16088 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="29"
+ data-key-i="34"
+ id="path705" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 401.85701,117.54761 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11247,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14908,-0.27186 -0.1608,-0.2651 -0.17235,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20446,-0.23314 -0.21443,-0.22399 -0.22399,-0.21443 -0.23313,-0.20446 -0.24185,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.26503,-0.16088 -10.45472,-6.03607 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.29769,-0.0868 -0.30121,-0.0737 -0.30413,-0.0605 -0.30649,-0.0472 -0.30824,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30942,0.0203 -0.30824,0.0338 -0.30649,0.0472 -0.30414,0.0605 -0.3012,0.0737 -0.29769,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.45479,6.03608 -0.2651,0.16088 -0.25784,0.17228 -0.25007,0.18336 -0.24184,0.19409 -0.23314,0.20446 -0.22399,0.21443 -0.21442,0.224 -0.20446,0.23314 -0.1941,0.24183 -0.18336,0.25007 -0.17235,0.25783 -0.1608,0.2651 -0.14908,0.27186 -0.13717,0.27812 -0.12491,0.28383 -0.11247,0.289 -0.0997,0.29363 -0.0867,0.29771 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 8e-5,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11248,0.28901 0.12491,0.28383 0.13717,0.27811 0.14908,0.27186 0.1608,0.2651 0.17235,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23314 0.21443,0.22399 0.22398,0.21443 0.23314,0.20446 0.24185,0.19409 0.25007,0.18336 0.25783,0.17228 0.26502,0.16087 10.45472,6.03608 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.29769,0.0868 0.3012,0.0737 0.30414,0.0605 0.30649,0.0472 0.30824,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30824,-0.0338 0.30649,-0.0472 0.30413,-0.0605 0.30121,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.45479,-6.03608 0.2651,-0.16088 0.25784,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22399,-0.21443 0.21442,-0.224 0.20446,-0.23313 0.1941,-0.24184 0.18335,-0.25007 0.17236,-0.25783 0.1608,-0.2651 0.14908,-0.27186 0.13717,-0.27811 0.12491,-0.28383 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31002 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="30"
+ data-key-i="33"
+ id="path707" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 349.64682,105.35642 -0.27188,-0.14914 -0.2781,-0.13716 -0.28383,-0.12489 -0.28901,-0.11238 -0.29363,-0.0997 -0.29769,-0.0868 -0.30121,-0.0737 -0.30414,-0.0605 -0.30648,-0.0472 -0.30825,-0.0338 -0.30941,-0.0203 -0.31003,-0.007 -0.31002,0.007 -0.30941,0.0203 -0.30825,0.0338 -0.30648,0.0472 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.0868 -0.29363,0.0997 -0.28901,0.11238 -0.28383,0.12489 -0.2781,0.13716 -0.27188,0.14914 -10.45479,6.03608 -0.2651,0.16088 -0.25783,0.17228 -0.25007,0.18336 -0.24185,0.19409 -0.23314,0.20446 -0.22398,0.21443 -0.21443,0.224 -0.20446,0.23314 -0.1941,0.24183 -0.18335,0.25007 -0.17235,0.25783 -0.1608,0.2651 -0.14908,0.27186 -0.13717,0.27812 -0.12491,0.28383 -0.11248,0.289 -0.0997,0.29363 -0.0867,0.29771 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 7e-5,12.07216 0.007,0.31002 0.0203,0.30942 0.0337,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11247,0.28901 0.12491,0.28383 0.13717,0.27811 0.14908,0.27186 0.1608,0.2651 0.17236,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23314 0.21442,0.22399 0.22399,0.21443 0.23314,0.20446 0.24184,0.19409 0.25007,0.18336 0.25784,0.17228 0.26507,0.16087 10.45477,6.03608 0.27188,0.14914 0.2781,0.13716 0.28383,0.12489 0.28901,0.11238 0.29363,0.0997 0.29769,0.0868 0.30121,0.0737 0.30414,0.0605 0.30648,0.0472 0.30825,0.0338 0.30941,0.0203 0.31002,0.007 0.31003,-0.007 0.30941,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.0868 0.29363,-0.0997 0.28901,-0.11238 0.28383,-0.12489 0.2781,-0.13716 0.27188,-0.14914 10.45479,-6.03608 0.2651,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24185,-0.19409 0.23314,-0.20446 0.22398,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.1941,-0.24184 0.18335,-0.25007 0.17235,-0.25783 0.1608,-0.2651 0.14908,-0.27186 0.13717,-0.27811 0.12491,-0.28383 0.11248,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31002 -7e-5,-12.07215 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11247,-0.28901 -0.12491,-0.28383 -0.13718,-0.27811 -0.14907,-0.27186 -0.1608,-0.2651 -0.17236,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20446,-0.23314 -0.21442,-0.22399 -0.22399,-0.21443 -0.23314,-0.20446 -0.24184,-0.19409 -0.25007,-0.18336 -0.25784,-0.17228 -0.26502,-0.16088 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="31"
+ data-key-i="32"
+ id="path709" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 311.44506,105.35642 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.29769,-0.0868 -0.30121,-0.0737 -0.30413,-0.0605 -0.30649,-0.0472 -0.30824,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30942,0.0203 -0.30824,0.0338 -0.30649,0.0472 -0.30413,0.0605 -0.30121,0.0737 -0.29769,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.45479,6.03608 -0.2651,0.16088 -0.25784,0.17228 -0.25007,0.18336 -0.24184,0.19409 -0.23314,0.20446 -0.22399,0.21443 -0.21442,0.224 -0.20446,0.23314 -0.1941,0.24183 -0.18335,0.25007 -0.17236,0.25783 -0.1608,0.2651 -0.14908,0.27186 -0.13717,0.27812 -0.12491,0.28383 -0.11247,0.289 -0.0997,0.29363 -0.0867,0.29771 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0337,0.30825 -0.0203,0.30943 -0.007,0.31001 3e-5,12.07215 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11247,0.28901 0.12491,0.28383 0.13717,0.27811 0.14908,0.27186 0.1608,0.2651 0.17235,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23314 0.21443,0.22399 0.22399,0.21443 0.23313,0.20446 0.24185,0.19409 0.25007,0.18336 0.25783,0.17228 0.26503,0.16088 10.45472,6.03607 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.29769,0.0868 0.30121,0.0737 0.30413,0.0605 0.30649,0.0472 0.30824,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30824,-0.0338 0.30649,-0.0472 0.30413,-0.0605 0.30121,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.45479,-6.03608 0.2651,-0.16088 0.25784,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22399,-0.21443 0.21442,-0.224 0.20446,-0.23313 0.1941,-0.24184 0.18336,-0.25007 0.17235,-0.25783 0.1608,-0.2651 0.14908,-0.27186 0.13717,-0.27811 0.12491,-0.28383 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31001 -7e-5,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11248,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14908,-0.27186 -0.1608,-0.2651 -0.17235,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20446,-0.23314 -0.21443,-0.22399 -0.22398,-0.21443 -0.23314,-0.20446 -0.24185,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.26503,-0.16087 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="32"
+ data-key-i="31"
+ id="path711" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 273.24331,105.35642 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.29769,-0.0868 -0.30121,-0.0737 -0.30414,-0.0605 -0.30648,-0.0472 -0.30825,-0.0338 -0.30941,-0.0203 -0.31002,-0.007 -0.31003,0.007 -0.30941,0.0203 -0.30825,0.0338 -0.30648,0.0472 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.0868 -0.29363,0.0997 -0.28901,0.11238 -0.28383,0.12489 -0.2781,0.13716 -0.27188,0.14914 -10.45479,6.03608 -0.2651,0.16088 -0.25783,0.17228 -0.25007,0.18336 -0.24185,0.19409 -0.23313,0.20446 -0.22399,0.21443 -0.21443,0.224 -0.20446,0.23314 -0.1941,0.24183 -0.18335,0.25007 -0.17235,0.25783 -0.1608,0.2651 -0.14908,0.27186 -0.13717,0.27812 -0.12491,0.28383 -0.11247,0.289 -0.0997,0.29363 -0.0867,0.29771 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31001 7e-5,12.07215 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11247,0.28901 0.12491,0.28383 0.13718,0.27811 0.14907,0.27186 0.1608,0.2651 0.17236,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23314 0.21442,0.22399 0.22399,0.21443 0.23314,0.20446 0.24184,0.19409 0.25007,0.18336 0.25784,0.17228 0.26502,0.16088 10.45472,6.03607 0.27188,0.14914 0.2781,0.13716 0.28383,0.12489 0.28901,0.11238 0.29363,0.0997 0.29769,0.0868 0.30121,0.0737 0.30414,0.0605 0.30648,0.0472 0.30825,0.0338 0.30941,0.0203 0.31003,0.007 0.31002,-0.007 0.30941,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.45479,-6.03608 0.2651,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24185,-0.19409 0.23314,-0.20446 0.22398,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.1941,-0.24184 0.18335,-0.25007 0.17235,-0.25783 0.16081,-0.2651 0.14907,-0.27186 0.13717,-0.27811 0.12491,-0.28383 0.11248,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31001 -7e-5,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11247,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14908,-0.27186 -0.1608,-0.2651 -0.17236,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20446,-0.23314 -0.21442,-0.22399 -0.22399,-0.21443 -0.23314,-0.20446 -0.24184,-0.19409 -0.25007,-0.18336 -0.25784,-0.17228 -0.26503,-0.16087 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="33"
+ data-key-i="30"
+ id="path713" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 227.93425,141.81096 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.29769,0.0868 0.30121,0.0737 0.30414,0.0605 0.30648,0.0472 0.30824,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30824,-0.0338 0.30649,-0.0472 0.30414,-0.0605 0.3012,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.45479,-6.03608 0.2651,-0.16088 0.25784,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22399,-0.21443 0.21443,-0.224 0.20445,-0.23313 0.19411,-0.24184 0.18335,-0.25007 0.17235,-0.25783 0.1608,-0.2651 0.14908,-0.27186 0.13717,-0.27811 0.12491,-0.28383 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0202,-0.30942 0.007,-0.31001 -3e-5,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11248,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14907,-0.27186 -0.16081,-0.2651 -0.17235,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20446,-0.23314 -0.21443,-0.22399 -0.22398,-0.21443 -0.23314,-0.20446 -0.24185,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.26502,-0.16087 -10.45472,-6.03608 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.29769,-0.0868 -0.3012,-0.0737 -0.30414,-0.0605 -0.30649,-0.0472 -0.30824,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30942,0.0203 -0.30824,0.0338 -0.30648,0.0472 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.45479,6.03608 -0.2651,0.16088 -0.25784,0.17228 -0.25007,0.18336 -0.24184,0.19409 -0.23314,0.20446 -0.22399,0.21443 -0.21442,0.224 -0.20446,0.23314 -0.1941,0.24183 -0.18335,0.25007 -0.17236,0.25783 -0.1608,0.2651 -0.14907,0.27186 -0.13718,0.27812 -0.12491,0.28383 -0.11247,0.289 -0.0997,0.29363 -0.0867,0.29771 -0.0737,0.3012 -0.0606,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31001 1.7e-4,12.07215 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0606,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11248,0.28901 0.12491,0.28383 0.13717,0.27811 0.14907,0.27186 0.16081,0.2651 0.17235,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23314 0.21443,0.22399 0.22398,0.21443 0.23314,0.20446 0.24184,0.19409 0.25008,0.18336 0.25783,0.17228 0.26493,0.16088 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="34"
+ data-key-i="29"
+ id="path715" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 175.72404,129.61977 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11238,0.28901 0.1249,0.28383 0.13715,0.27811 0.14915,0.27186 0.16087,0.2651 0.17228,0.25783 0.18336,0.25007 0.19409,0.24184 0.20446,0.23314 0.21443,0.22399 0.224,0.21443 0.23314,0.20446 0.24183,0.19409 0.25007,0.18336 0.25783,0.17228 0.26491,0.16088 10.4546,6.03607 0.27187,0.14914 0.27811,0.13716 0.28383,0.12489 0.289,0.11238 0.29364,0.0997 0.2977,0.0868 0.3012,0.0737 0.30414,0.0605 0.30648,0.0472 0.30824,0.0338 0.30943,0.0203 0.31002,0.007 0.31001,-0.007 0.30943,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30413,-0.0605 0.3012,-0.0737 0.2977,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.45479,-6.03608 0.2651,-0.16088 0.25784,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22398,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.1941,-0.24184 0.18335,-0.25007 0.17235,-0.25783 0.16081,-0.2651 0.14907,-0.27186 0.13717,-0.27811 0.12491,-0.28383 0.11248,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0606,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31001 -1.7e-4,-12.07216 -0.007,-0.31002 -0.0202,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0606,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11247,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14908,-0.27186 -0.1608,-0.2651 -0.17235,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20446,-0.23314 -0.21443,-0.22399 -0.22399,-0.21443 -0.23313,-0.20446 -0.24185,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.26499,-0.16087 -10.45466,-6.03608 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.2977,-0.0868 -0.3012,-0.0737 -0.30413,-0.0605 -0.30648,-0.0472 -0.30825,-0.0338 -0.30943,-0.0203 -0.31001,-0.007 -0.31002,0.007 -0.30943,0.0203 -0.30824,0.0338 -0.30648,0.0472 -0.30414,0.0605 -0.3012,0.0737 -0.2977,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.45479,6.03608 -0.2651,0.16088 -0.25783,0.17228 -0.25007,0.18336 -0.24184,0.19409 -0.23314,0.20446 -0.22399,0.21443 -0.21444,0.224 -0.20445,0.23314 -0.19409,0.24183 -0.18336,0.25007 -0.17229,0.25783 -0.16087,0.2651 -0.14915,0.27186 -0.13715,0.27812 -0.12489,0.28383 -0.11239,0.289 -0.0997,0.29363 -0.0868,0.29771 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31001 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="35"
+ data-key-i="28"
+ id="path717" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 137.52229,129.61977 0.007,0.31002 0.0203,0.30942 0.0337,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11239,0.28901 0.12489,0.28383 0.13715,0.27811 0.14915,0.27186 0.16087,0.2651 0.17229,0.25783 0.18335,0.25007 0.1941,0.24184 0.20445,0.23314 0.21444,0.22399 0.22399,0.21443 0.23314,0.20446 0.24184,0.19409 0.25007,0.18336 0.25783,0.17228 0.26495,0.16087 10.45465,6.03608 0.27186,0.14914 0.27812,0.13716 0.28382,0.12489 0.28901,0.11238 0.29363,0.0997 0.29771,0.0868 0.3012,0.0737 0.30413,0.0605 0.30648,0.0472 0.30825,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30413,-0.0605 0.30121,-0.0737 0.2977,-0.0868 0.29363,-0.0997 0.28901,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27186,-0.14914 10.4548,-6.03608 0.2651,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23313,-0.20446 0.224,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.19409,-0.24184 0.18336,-0.25007 0.17228,-0.25783 0.16088,-0.2651 0.14914,-0.27186 0.13716,-0.27811 0.12489,-0.28383 0.11238,-0.28901 0.0997,-0.29363 0.0868,-0.29771 0.0737,-0.3012 0.0605,-0.30413 0.0472,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31002 -2e-4,-12.07215 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0472,-0.30648 -0.0605,-0.30413 -0.0737,-0.30121 -0.0868,-0.2977 -0.0997,-0.29363 -0.11238,-0.28901 -0.1249,-0.28383 -0.13715,-0.27811 -0.14915,-0.27186 -0.16087,-0.2651 -0.17228,-0.25783 -0.18336,-0.25007 -0.1941,-0.24184 -0.20445,-0.23314 -0.21443,-0.22399 -0.224,-0.21443 -0.23314,-0.20446 -0.24183,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.2649,-0.16088 -10.45461,-6.03607 -0.27186,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.28901,-0.11238 -0.29363,-0.0997 -0.2977,-0.0868 -0.30121,-0.0737 -0.30413,-0.0605 -0.30648,-0.0472 -0.30825,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30942,0.0203 -0.30825,0.0338 -0.30648,0.0472 -0.30413,0.0605 -0.3012,0.0737 -0.29771,0.0868 -0.29363,0.0997 -0.28901,0.11238 -0.28382,0.12489 -0.27812,0.13716 -0.27186,0.14914 -10.4548,6.03608 -0.2651,0.16088 -0.25783,0.17228 -0.25007,0.18336 -0.24183,0.19409 -0.23314,0.20446 -0.224,0.21443 -0.21443,0.224 -0.20446,0.23314 -0.19409,0.24183 -0.18336,0.25007 -0.17228,0.25783 -0.16087,0.2651 -0.14915,0.27186 -0.13715,0.27812 -0.1249,0.28383 -0.11238,0.289 -0.0997,0.29363 -0.0868,0.29771 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="36"
+ data-key-i="27"
+ id="path719" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 99.32053,129.61977 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11238,0.28901 0.1249,0.28383 0.13715,0.27811 0.14915,0.27186 0.16087,0.2651 0.17228,0.25783 0.18336,0.25007 0.19409,0.24184 0.20446,0.23314 0.21443,0.22399 0.224,0.21443 0.23314,0.20446 0.24183,0.19409 0.25007,0.18336 0.25783,0.17228 0.26491,0.16087 10.45461,6.03608 0.27186,0.14914 0.27811,0.13716 0.28383,0.12489 0.28901,0.11238 0.29363,0.0997 0.2977,0.0868 0.30121,0.0737 0.30413,0.0605 0.30648,0.0472 0.30824,0.0338 0.30943,0.0203 0.31002,0.007 0.31001,-0.007 0.30943,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30413,-0.0605 0.3012,-0.0737 0.2977,-0.0868 0.29364,-0.0997 0.289,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.4548,-6.03608 0.2651,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24183,-0.19409 0.23314,-0.20446 0.224,-0.21443 0.21443,-0.224 0.20445,-0.23313 0.1941,-0.24184 0.18336,-0.25007 0.17228,-0.25783 0.16087,-0.2651 0.14915,-0.27186 0.13715,-0.27811 0.12489,-0.28383 0.11239,-0.28901 0.0997,-0.29363 0.0868,-0.29771 0.0737,-0.3012 0.0605,-0.30413 0.0472,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31002 -1.9e-4,-12.07215 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0472,-0.30648 -0.0605,-0.30413 -0.0737,-0.30121 -0.0868,-0.2977 -0.0997,-0.29363 -0.11238,-0.28901 -0.12489,-0.28383 -0.13716,-0.27811 -0.14914,-0.27186 -0.16088,-0.2651 -0.17228,-0.25783 -0.18336,-0.25007 -0.19409,-0.24184 -0.20446,-0.23314 -0.21443,-0.22399 -0.224,-0.21443 -0.23313,-0.20446 -0.24184,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.26491,-0.16088 -10.4546,-6.03607 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.2977,-0.0868 -0.3012,-0.0737 -0.30413,-0.0605 -0.30648,-0.0472 -0.30825,-0.0338 -0.30943,-0.0203 -0.31001,-0.007 -0.31002,0.007 -0.30943,0.0203 -0.30824,0.0338 -0.30648,0.0472 -0.30413,0.0605 -0.30121,0.0737 -0.2977,0.0868 -0.29363,0.0997 -0.28901,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27186,0.14914 -10.4548,6.03608 -0.2651,0.16088 -0.25783,0.17228 -0.25007,0.18336 -0.24184,0.19409 -0.23313,0.20446 -0.224,0.21443 -0.21443,0.224 -0.20446,0.23314 -0.19409,0.24183 -0.18336,0.25007 -0.17228,0.25783 -0.16088,0.2651 -0.14915,0.27186 -0.13715,0.27812 -0.12489,0.28383 -0.11239,0.289 -0.0997,0.29363 -0.0868,0.29771 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="37"
+ data-key-i="26"
+ id="path721" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 75.12723,141.81096 0.27187,0.14914 0.27811,0.13716 0.28382,0.12489 0.28901,0.11238 0.29364,0.0997 0.2977,0.0868 0.3012,0.0737 0.30413,0.0605 0.30648,0.0472 0.30825,0.0338 0.30943,0.0203 0.31001,0.007 0.31002,-0.007 0.30942,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30413,-0.0605 0.30121,-0.0737 0.2977,-0.0868 0.29363,-0.0997 0.28901,-0.11238 0.28383,-0.12489 0.27811,-0.13716 0.27186,-0.14914 10.4548,-6.03608 0.2651,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23313,-0.20446 0.224,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.19409,-0.24184 0.18336,-0.25007 0.17228,-0.25783 0.16088,-0.2651 0.14914,-0.27186 0.13716,-0.27811 0.12489,-0.28383 0.11238,-0.28901 0.0997,-0.29363 0.0868,-0.29771 0.0737,-0.3012 0.0605,-0.30413 0.0472,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31002 -2e-4,-12.07215 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0472,-0.30648 -0.0605,-0.30413 -0.0737,-0.30121 -0.0868,-0.2977 -0.0997,-0.29363 -0.11238,-0.28901 -0.1249,-0.28383 -0.13715,-0.27811 -0.14915,-0.27186 -0.16087,-0.2651 -0.17228,-0.25783 -0.18336,-0.25007 -0.19409,-0.24184 -0.20446,-0.23314 -0.21443,-0.22399 -0.224,-0.21443 -0.23314,-0.20446 -0.24183,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.2649,-0.16088 -10.45461,-6.03607 -0.27186,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.28901,-0.11238 -0.29363,-0.0997 -0.2977,-0.0868 -0.30121,-0.0737 -0.30413,-0.0605 -0.30648,-0.0472 -0.30825,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31001,0.007 -0.30943,0.0203 -0.30825,0.0338 -0.30648,0.0472 -0.30413,0.0605 -0.3012,0.0737 -0.2977,0.0868 -0.29364,0.0997 -0.28901,0.11238 -0.28382,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.4548,6.03608 -0.2651,0.16088 -0.25783,0.17228 -0.25007,0.18336 -0.24183,0.19409 -0.23314,0.20446 -0.224,0.21443 -0.21443,0.224 -0.20446,0.23314 -0.19409,0.24183 -0.18336,0.25007 -0.17228,0.25783 -0.16087,0.2651 -0.14915,0.27186 -0.13715,0.27812 -0.1249,0.28383 -0.11238,0.289 -0.0997,0.29363 -0.0868,0.29771 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 1.9e-4,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11239,0.28901 0.12489,0.28383 0.13715,0.27811 0.14915,0.27186 0.16088,0.2651 0.17228,0.25783 0.18336,0.25007 0.19409,0.24184 0.20445,0.23314 0.21444,0.22399 0.22399,0.21443 0.23314,0.20446 0.24184,0.19409 0.25007,0.18336 0.25783,0.17228 0.2649,0.16087 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="38"
+ data-key-i="25"
+ id="path723" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 44.03278,105.35642 -0.27187,-0.14914 -0.27811,-0.13716 -0.28382,-0.12489 -0.28901,-0.11238 -0.29364,-0.0997 -0.2977,-0.0868 -0.3012,-0.0737 -0.30413,-0.0605 -0.30648,-0.0472 -0.30825,-0.0338 -0.30943,-0.0203 -0.31001,-0.007 -0.31002,0.007 -0.30942,0.0203 -0.30825,0.0338 -0.30648,0.0472 -0.30413,0.0605 -0.30121,0.0737 -0.2977,0.0868 -0.29363,0.0997 -0.28901,0.11239 -0.28383,0.12489 -0.27811,0.13714 -0.27186,0.14915 -10.4548,6.03608 -0.2651,0.16087 -0.25783,0.17228 -0.25007,0.18336 -0.24184,0.19409 -0.23313,0.20446 -0.224,0.21443 -0.21443,0.22399 -0.20446,0.23314 -0.19409,0.24184 -0.18336,0.25007 -0.17228,0.25783 -0.16087,0.2651 -0.14915,0.27186 -0.13714,0.27811 -0.12489,0.28383 -0.11239,0.28901 -0.0997,0.29363 -0.0868,0.2977 -0.0737,0.30121 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30942 -0.007,0.31002 1.9e-4,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11239,0.28901 0.12488,0.28383 0.13715,0.27811 0.14915,0.27186 0.16087,0.2651 0.17228,0.25783 0.18336,0.25007 0.19409,0.24184 0.20446,0.23314 0.21443,0.22399 0.224,0.21443 0.23313,0.20446 0.24184,0.19409 0.25007,0.18336 0.25783,0.17228 0.26491,0.16087 10.45461,6.03608 0.27186,0.14915 0.27811,0.13714 0.28383,0.1249 0.28901,0.11238 0.29363,0.0997 0.2977,0.0868 0.30121,0.0737 0.30413,0.0605 0.30648,0.0472 0.30825,0.0338 0.30942,0.0203 0.31002,0.007 0.31001,-0.007 0.30943,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30413,-0.0605 0.3012,-0.0737 0.2977,-0.0868 0.29364,-0.0997 0.28901,-0.11238 0.28382,-0.12489 0.27811,-0.13716 0.27187,-0.14914 10.4548,-6.03608 0.2651,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24183,-0.19409 0.23314,-0.20446 0.224,-0.21443 0.21443,-0.224 0.20445,-0.23313 0.1941,-0.24184 0.18336,-0.25007 0.17228,-0.25783 0.16087,-0.2651 0.14915,-0.27186 0.13715,-0.27811 0.1249,-0.28383 0.11238,-0.28901 0.0997,-0.29363 0.0868,-0.29771 0.0737,-0.3012 0.0605,-0.30413 0.0472,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31002 -2e-4,-12.07215 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0472,-0.30648 -0.0605,-0.30413 -0.0737,-0.30121 -0.0868,-0.2977 -0.0997,-0.29363 -0.11239,-0.28901 -0.12489,-0.28383 -0.13716,-0.27811 -0.14914,-0.27186 -0.16088,-0.2651 -0.17228,-0.25783 -0.18336,-0.25007 -0.19409,-0.24184 -0.20446,-0.23314 -0.21443,-0.22399 -0.224,-0.21443 -0.23313,-0.20446 -0.24184,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.2649,-0.16088 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="39"
+ data-key-i="24"
+ id="path725" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 24.9319,138.44011 -0.27186,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.28901,-0.11238 -0.29363,-0.0997 -0.2977,-0.0868 -0.30121,-0.0737 -0.30413,-0.0605 -0.30648,-0.0472 -0.30825,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30942,0.0203 -0.30825,0.0338 -0.30648,0.0472 -0.30413,0.0605 -0.30121,0.0737 -0.2977,0.0868 -0.29363,0.0997 -0.28901,0.11239 -0.28383,0.12489 -0.27811,0.13715 -0.27186,0.14915 -10.4548005,6.03607 -0.2651,0.16088 -0.25783,0.17228 -0.25007,0.18336 -0.24183,0.19409 -0.23314,0.20446 -0.224,0.21443 -0.21443,0.224 -0.20446,0.23314 -0.19409,0.24183 -0.18336,0.25007 -0.17228,0.25783 -0.16086,0.2651 -0.14915,0.27186 -0.13715,0.27812 -0.12489,0.28383 -0.11239,0.289 -0.0997,0.29363 -0.0868,0.29771 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0337,0.30825 -0.0203,0.30943 -0.007,0.31 1.4e-4,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11239,0.28901 0.12489,0.28383 0.13715,0.27811 0.14915,0.27186 0.16087,0.2651 0.17227,0.25783 0.18336,0.25007 0.1941,0.24184 0.20445,0.23313 0.21443,0.224 0.224,0.21443 0.23314,0.20446 0.24183,0.19409 0.25007,0.18336 0.25783,0.17228 0.26491,0.16088 10.4546105,6.03612 0.27186,0.14919 0.27811,0.13715 0.28383,0.12489 0.28901,0.11239 0.29363,0.0997 0.2977,0.0868 0.30121,0.0737 0.30413,0.0605 0.30648,0.0472 0.30825,0.0337 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30413,-0.0605 0.30121,-0.0737 0.2977,-0.0868 0.29363,-0.0997 0.28901,-0.11239 0.28383,-0.12489 0.27811,-0.13714 0.27186,-0.14915 10.4548,-6.03608 0.2651,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24183,-0.19409 0.23314,-0.20446 0.224,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.19409,-0.24184 0.18336,-0.25007 0.17228,-0.25783 0.16086,-0.2651 0.14915,-0.27186 0.13715,-0.27811 0.12489,-0.28383 0.11239,-0.28901 0.0997,-0.29363 0.0868,-0.29771 0.0737,-0.3012 0.0605,-0.30413 0.0472,-0.30648 0.0337,-0.30825 0.0203,-0.30942 0.007,-0.31001 -1.4e-4,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0472,-0.30648 -0.0605,-0.30413 -0.0737,-0.30121 -0.0868,-0.2977 -0.0997,-0.29363 -0.11239,-0.28901 -0.12489,-0.28383 -0.13715,-0.27811 -0.14915,-0.27186 -0.16087,-0.2651 -0.17227,-0.25783 -0.18336,-0.25007 -0.1941,-0.24184 -0.20445,-0.23313 -0.21443,-0.224 -0.224,-0.21443 -0.23314,-0.20446 -0.24183,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.26491,-0.16088 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="40"
+ data-key-i="36"
+ id="path727" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 42.0179,162.70346 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11238,0.28901 0.12489,0.28383 0.13716,0.27811 0.14914,0.27186 0.16088,0.2651 0.17228,0.25783 0.18336,0.25007 0.19409,0.24184 0.20446,0.23313 0.21443,0.224 0.224,0.21443 0.23313,0.20446 0.24184,0.19409 0.25007,0.18336 0.25783,0.17228 0.26491,0.16087 10.4546,6.03613 0.27187,0.14919 0.27811,0.13715 0.28383,0.12489 0.289,0.11239 0.29364,0.0997 0.2977,0.0868 0.3012,0.0737 0.30413,0.0605 0.30649,0.0472 0.30824,0.0337 0.30943,0.0203 0.31001,0.007 0.31002,-0.007 0.30943,-0.0203 0.30824,-0.0338 0.30649,-0.0472 0.30413,-0.0605 0.3012,-0.0737 0.2977,-0.0868 0.29364,-0.0997 0.289,-0.11239 0.28383,-0.12489 0.27811,-0.13714 0.27187,-0.14915 10.45479,-6.03608 0.2651,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.224,-0.21443 0.21443,-0.224 0.20445,-0.23313 0.1941,-0.24184 0.18335,-0.25007 0.17229,-0.25783 0.16087,-0.2651 0.14915,-0.27186 0.13715,-0.27811 0.12489,-0.28383 0.11239,-0.28901 0.0997,-0.29363 0.0868,-0.29771 0.0737,-0.3012 0.0605,-0.30413 0.0472,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31001 -2e-4,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0472,-0.30648 -0.0605,-0.30413 -0.0737,-0.30121 -0.0868,-0.2977 -0.0997,-0.29363 -0.11238,-0.28901 -0.12489,-0.28383 -0.13716,-0.27811 -0.14914,-0.27186 -0.16088,-0.2651 -0.17228,-0.25783 -0.18336,-0.25007 -0.19409,-0.24184 -0.20446,-0.23313 -0.21443,-0.224 -0.224,-0.21443 -0.23314,-0.20446 -0.24183,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.26491,-0.16088 -10.4546,-6.03607 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.2977,-0.0868 -0.3012,-0.0737 -0.30413,-0.0605 -0.30649,-0.0472 -0.30824,-0.0338 -0.30943,-0.0203 -0.31002,-0.007 -0.31001,0.007 -0.30943,0.0203 -0.30824,0.0338 -0.30649,0.0472 -0.30413,0.0605 -0.3012,0.0737 -0.2977,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.4548,6.03608 -0.26509,0.16088 -0.25783,0.17228 -0.25007,0.18336 -0.24184,0.19409 -0.23314,0.20446 -0.224,0.21443 -0.21443,0.224 -0.20445,0.23314 -0.1941,0.24183 -0.18336,0.25007 -0.17228,0.25783 -0.16087,0.2651 -0.14915,0.27186 -0.13715,0.27812 -0.12489,0.28383 -0.11239,0.289 -0.0997,0.29363 -0.0868,0.29771 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="41"
+ data-key-i="37"
+ id="path729" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 80.21966,162.70346 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11239,0.28901 0.12489,0.28383 0.13715,0.27811 0.14915,0.27186 0.16087,0.2651 0.17228,0.25783 0.18336,0.25007 0.1941,0.24184 0.20445,0.23313 0.21443,0.224 0.224,0.21443 0.23314,0.20446 0.24183,0.19409 0.25007,0.18336 0.25783,0.17228 0.26491,0.16087 10.4546,6.03613 0.27186,0.14919 0.27811,0.13715 0.28383,0.12489 0.28901,0.11239 0.29363,0.0997 0.2977,0.0868 0.30121,0.0737 0.30413,0.0605 0.30648,0.0472 0.30825,0.0337 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30413,-0.0605 0.3012,-0.0737 0.29771,-0.0868 0.29363,-0.0997 0.28901,-0.11239 0.28383,-0.12489 0.27811,-0.13714 0.27186,-0.14915 10.4548,-6.03608 0.2651,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24183,-0.19409 0.23314,-0.20446 0.224,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.19409,-0.24184 0.18336,-0.25007 0.17228,-0.25783 0.16087,-0.2651 0.14915,-0.27186 0.13715,-0.27811 0.1249,-0.28383 0.11238,-0.28901 0.0997,-0.29363 0.0868,-0.29771 0.0737,-0.3012 0.0605,-0.30413 0.0472,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31001 -2e-4,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0472,-0.30648 -0.0605,-0.30413 -0.0737,-0.30121 -0.0868,-0.2977 -0.0997,-0.29363 -0.11239,-0.28901 -0.12489,-0.28383 -0.13715,-0.27811 -0.14915,-0.27186 -0.16087,-0.2651 -0.17228,-0.25783 -0.18336,-0.25007 -0.1941,-0.24184 -0.20445,-0.23313 -0.21443,-0.224 -0.224,-0.21443 -0.23314,-0.20446 -0.24184,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.26489,-0.16088 -10.45461,-6.03607 -0.27186,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.28901,-0.11238 -0.29363,-0.0997 -0.29771,-0.0868 -0.3012,-0.0737 -0.30413,-0.0605 -0.30648,-0.0472 -0.30825,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30942,0.0203 -0.30825,0.0338 -0.30648,0.0472 -0.30413,0.0605 -0.30121,0.0737 -0.2977,0.0868 -0.29363,0.0997 -0.28901,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27186,0.14914 -10.4548,6.03608 -0.2651,0.16088 -0.25783,0.17228 -0.25007,0.18336 -0.24183,0.19409 -0.23314,0.20446 -0.224,0.21443 -0.21443,0.224 -0.20446,0.23314 -0.19409,0.24183 -0.18336,0.25007 -0.17228,0.25783 -0.16088,0.2651 -0.14914,0.27186 -0.13716,0.27812 -0.12489,0.28383 -0.11238,0.289 -0.0997,0.29363 -0.0868,0.29771 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="42"
+ data-key-i="38"
+ id="path731" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 118.42141,162.70346 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11238,0.28901 0.12489,0.28383 0.13716,0.27811 0.14914,0.27186 0.16088,0.2651 0.17228,0.25783 0.18336,0.25007 0.19409,0.24184 0.20446,0.23313 0.21443,0.224 0.224,0.21443 0.23313,0.20446 0.24184,0.19409 0.25007,0.18336 0.25783,0.17228 0.26491,0.16087 10.4546,6.03613 0.27187,0.14919 0.27811,0.13715 0.28383,0.12489 0.289,0.11239 0.29364,0.0997 0.2977,0.0868 0.3012,0.0737 0.30413,0.0605 0.30648,0.0472 0.30825,0.0337 0.30943,0.0203 0.31001,0.007 0.31002,-0.007 0.30943,-0.0203 0.30824,-0.0338 0.30648,-0.0472 0.30414,-0.0605 0.3012,-0.0737 0.2977,-0.0868 0.29364,-0.0997 0.289,-0.11239 0.28383,-0.12489 0.27811,-0.13714 0.27187,-0.14915 10.45479,-6.03608 0.2651,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22399,-0.21443 0.21444,-0.224 0.20445,-0.23313 0.19409,-0.24184 0.18336,-0.25007 0.17229,-0.25783 0.16087,-0.2651 0.14915,-0.27186 0.13715,-0.27811 0.12489,-0.28383 0.11239,-0.28901 0.0997,-0.29363 0.0868,-0.29771 0.0737,-0.3012 0.0605,-0.30413 0.0472,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31001 -2e-4,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0472,-0.30648 -0.0605,-0.30413 -0.0737,-0.30121 -0.0868,-0.2977 -0.0997,-0.29363 -0.11238,-0.28901 -0.1249,-0.28383 -0.13715,-0.27811 -0.14915,-0.27186 -0.16087,-0.2651 -0.17228,-0.25783 -0.18336,-0.25007 -0.19409,-0.24184 -0.20446,-0.23313 -0.21443,-0.224 -0.224,-0.21443 -0.23314,-0.20446 -0.24183,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.26491,-0.16088 -10.4546,-6.03607 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.2977,-0.0868 -0.3012,-0.0737 -0.30414,-0.0605 -0.30648,-0.0472 -0.30824,-0.0338 -0.30943,-0.0203 -0.31002,-0.007 -0.31001,0.007 -0.30943,0.0203 -0.30825,0.0338 -0.30648,0.0472 -0.30413,0.0605 -0.3012,0.0737 -0.2977,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.4548,6.03608 -0.26509,0.16088 -0.25783,0.17228 -0.25008,0.18336 -0.24183,0.19409 -0.23314,0.20446 -0.224,0.21443 -0.21443,0.224 -0.20445,0.23314 -0.1941,0.24183 -0.18336,0.25007 -0.17228,0.25783 -0.16087,0.2651 -0.14915,0.27186 -0.13715,0.27812 -0.12489,0.28383 -0.11239,0.289 -0.0997,0.29363 -0.0868,0.29771 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="43"
+ data-key-i="39"
+ id="path733" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 177.73892,138.44011 -0.27186,-0.14914 -0.27812,-0.13716 -0.28382,-0.12489 -0.28901,-0.11238 -0.29363,-0.0997 -0.29771,-0.0868 -0.3012,-0.0737 -0.30413,-0.0605 -0.30648,-0.0472 -0.30825,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30942,0.0203 -0.30825,0.0338 -0.30648,0.0472 -0.30413,0.0605 -0.30121,0.0737 -0.2977,0.0868 -0.29363,0.0997 -0.28901,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27186,0.14914 -10.4548,6.03608 -0.2651,0.16088 -0.25783,0.17228 -0.25007,0.18336 -0.24184,0.19409 -0.23313,0.20446 -0.224,0.21443 -0.21443,0.224 -0.20446,0.23314 -0.19409,0.24183 -0.18336,0.25007 -0.17228,0.25783 -0.16088,0.2651 -0.14914,0.27186 -0.13716,0.27812 -0.12489,0.28383 -0.11238,0.289 -0.0997,0.29363 -0.0868,0.29771 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 1.9e-4,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11238,0.28901 0.1249,0.28383 0.13715,0.27811 0.14915,0.27186 0.16087,0.2651 0.17228,0.25783 0.18336,0.25007 0.1941,0.24184 0.20445,0.23313 0.21443,0.224 0.224,0.21443 0.23314,0.20446 0.24183,0.19409 0.25007,0.18336 0.25783,0.17228 0.2649,0.16087 10.45461,6.03613 0.27186,0.14919 0.27811,0.13715 0.28383,0.12489 0.28901,0.11239 0.29363,0.0997 0.2977,0.0868 0.30121,0.0737 0.30413,0.0605 0.30648,0.0472 0.30825,0.0337 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30413,-0.0605 0.3012,-0.0737 0.29771,-0.0868 0.29363,-0.0997 0.28901,-0.11239 0.28382,-0.12489 0.27812,-0.13714 0.27186,-0.14915 10.4548,-6.03608 0.2651,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24183,-0.19409 0.23314,-0.20446 0.224,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.19409,-0.24184 0.18336,-0.25007 0.17228,-0.25783 0.16087,-0.2651 0.14915,-0.27186 0.13715,-0.27811 0.1249,-0.28383 0.11238,-0.28901 0.0997,-0.29363 0.0868,-0.29771 0.0737,-0.3012 0.0605,-0.30413 0.0472,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31001 -1.9e-4,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0472,-0.30648 -0.0605,-0.30413 -0.0737,-0.30121 -0.0868,-0.2977 -0.0997,-0.29363 -0.11239,-0.28901 -0.12489,-0.28383 -0.13715,-0.27811 -0.14915,-0.27186 -0.16087,-0.2651 -0.17229,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20445,-0.23313 -0.21443,-0.224 -0.224,-0.21443 -0.23314,-0.20446 -0.24184,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.2649,-0.16088 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="44"
+ data-key-i="40"
+ id="path735" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 208.83337,174.89465 0.27187,0.14915 0.27811,0.13715 0.28383,0.12488 0.289,0.11239 0.29364,0.0997 0.29769,0.0868 0.30121,0.0737 0.30414,0.0605 0.30648,0.0472 0.30825,0.0338 0.30941,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30824,-0.0338 0.30649,-0.0472 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.0868 0.29363,-0.0997 0.289,-0.11239 0.28383,-0.12488 0.27811,-0.13715 0.27188,-0.14915 10.45478,-6.03608 0.26511,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24185,-0.19409 0.23313,-0.20446 0.22399,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.1941,-0.24184 0.18335,-0.25007 0.17235,-0.25783 0.1608,-0.2651 0.14908,-0.27186 0.13717,-0.27811 0.12491,-0.28383 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0606,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0202,-0.30942 0.007,-0.31001 -1.2e-4,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0606,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11247,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14908,-0.27186 -0.1608,-0.2651 -0.17235,-0.25783 -0.18336,-0.25007 -0.1941,-0.24184 -0.20446,-0.23313 -0.21442,-0.224 -0.22399,-0.21443 -0.23314,-0.20446 -0.24184,-0.19409 -0.25007,-0.18336 -0.25784,-0.17228 -0.26493,-0.16088 -10.45461,-6.03607 -0.27188,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29363,-0.0997 -0.29769,-0.0868 -0.30121,-0.0737 -0.30414,-0.0605 -0.30649,-0.0472 -0.30824,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30941,0.0203 -0.30825,0.0338 -0.30648,0.0472 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.4548,6.03608 -0.2651,0.16088 -0.25783,0.17228 -0.25007,0.18336 -0.24183,0.19409 -0.23314,0.20446 -0.224,0.21443 -0.21443,0.224 -0.20445,0.23314 -0.1941,0.24183 -0.18336,0.25007 -0.17228,0.25783 -0.16087,0.2651 -0.14915,0.27186 -0.13715,0.27812 -0.12489,0.28383 -0.11239,0.289 -0.0997,0.29363 -0.0868,0.29771 -0.0737,0.3012 -0.0605,0.30413 -0.0472,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 1.9e-4,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0472,0.30648 0.0605,0.30413 0.0737,0.30121 0.0868,0.2977 0.0997,0.29363 0.11238,0.28901 0.12489,0.28383 0.13716,0.27811 0.14914,0.27186 0.16088,0.2651 0.17228,0.25783 0.18336,0.25007 0.19409,0.24184 0.20446,0.23313 0.21443,0.224 0.224,0.21443 0.23313,0.20446 0.24184,0.19409 0.25007,0.18336 0.25783,0.17228 0.26491,0.16087 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="45"
+ data-key-i="41"
+ id="path737" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 247.03513,174.89465 0.27187,0.14915 0.27811,0.13715 0.28383,0.12488 0.289,0.11239 0.29364,0.0997 0.29769,0.0868 0.3012,0.0737 0.30414,0.0605 0.30649,0.0472 0.30824,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30824,-0.0338 0.30648,-0.0472 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11239 0.28383,-0.12488 0.27811,-0.13715 0.27187,-0.14915 10.45479,-6.03608 0.2651,-0.16088 0.25784,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22399,-0.21443 0.21442,-0.224 0.20446,-0.23313 0.1941,-0.24184 0.18335,-0.25007 0.17236,-0.25783 0.1608,-0.2651 0.14907,-0.27186 0.13717,-0.27811 0.12492,-0.28383 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31001 -8e-5,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11247,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14908,-0.27186 -0.1608,-0.2651 -0.17235,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20446,-0.23313 -0.21443,-0.224 -0.22399,-0.21443 -0.23313,-0.20446 -0.24185,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.26503,-0.16088 -10.45472,-6.03607 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.29769,-0.0868 -0.30121,-0.0737 -0.30414,-0.0605 -0.30648,-0.0472 -0.30824,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30942,0.0203 -0.30824,0.0338 -0.30649,0.0472 -0.30414,0.0605 -0.3012,0.0737 -0.29769,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.45479,6.03608 -0.26511,0.16088 -0.25783,0.17228 -0.25007,0.18336 -0.24184,0.19409 -0.23314,0.20446 -0.22399,0.21443 -0.21443,0.224 -0.20446,0.23314 -0.1941,0.24183 -0.18335,0.25007 -0.17235,0.25783 -0.1608,0.2651 -0.14908,0.27186 -0.13717,0.27812 -0.12491,0.28383 -0.11247,0.289 -0.0997,0.29363 -0.0867,0.29771 -0.0737,0.3012 -0.0606,0.30413 -0.0471,0.30648 -0.0337,0.30825 -0.0203,0.30943 -0.007,0.31 1.2e-4,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0606,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11247,0.28901 0.12491,0.28383 0.13718,0.27811 0.14907,0.27186 0.1608,0.2651 0.17236,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23313 0.21442,0.224 0.22399,0.21443 0.23314,0.20446 0.24184,0.19409 0.25007,0.18336 0.25784,0.17228 0.26493,0.16087 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="46"
+ data-key-i="42"
+ id="path739" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 271.22844,162.70346 0.007,0.31002 0.0202,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11247,0.28901 0.12491,0.28383 0.13717,0.27811 0.14908,0.27186 0.1608,0.2651 0.17235,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23313 0.21443,0.224 0.22399,0.21443 0.23314,0.20446 0.24184,0.19409 0.25007,0.18336 0.25783,0.17228 0.26508,0.16087 10.45477,6.03608 0.27187,0.14915 0.27811,0.13715 0.28383,0.12488 0.289,0.11239 0.29364,0.0997 0.29769,0.0868 0.30121,0.0737 0.30414,0.0605 0.30648,0.0472 0.30825,0.0338 0.30941,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30824,-0.0338 0.30649,-0.0472 0.30414,-0.0605 0.30121,-0.0737 0.29768,-0.0868 0.29364,-0.0997 0.289,-0.11239 0.28383,-0.12488 0.27811,-0.13715 0.27187,-0.14915 10.45479,-6.03608 0.26511,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24185,-0.19409 0.23313,-0.20446 0.22399,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.1941,-0.24184 0.18335,-0.25007 0.17235,-0.25783 0.1608,-0.2651 0.14908,-0.27186 0.13717,-0.27811 0.12491,-0.28383 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31001 -7e-5,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11248,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14907,-0.27186 -0.16081,-0.2651 -0.17235,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20446,-0.23313 -0.21443,-0.224 -0.22398,-0.21443 -0.23314,-0.20446 -0.24184,-0.19409 -0.25007,-0.18336 -0.25784,-0.17228 -0.26503,-0.16088 -10.45472,-6.03607 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.29768,-0.0868 -0.30121,-0.0737 -0.30414,-0.0605 -0.30649,-0.0472 -0.30824,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30941,0.0203 -0.30825,0.0338 -0.30648,0.0472 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.45479,6.03608 -0.2651,0.16088 -0.25784,0.17228 -0.25007,0.18336 -0.24184,0.19409 -0.23314,0.20446 -0.22398,0.21443 -0.21443,0.224 -0.20446,0.23314 -0.1941,0.24183 -0.18335,0.25007 -0.17235,0.25783 -0.16081,0.2651 -0.14907,0.27186 -0.13717,0.27812 -0.12491,0.28383 -0.11248,0.289 -0.0997,0.29363 -0.0867,0.29771 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="47"
+ data-key-i="43"
+ id="path741" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 344.55438,150.6313 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11247,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14908,-0.27186 -0.1608,-0.2651 -0.17235,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20446,-0.23313 -0.21443,-0.224 -0.22399,-0.21443 -0.23313,-0.20446 -0.24185,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.26504,-0.16088 -10.45471,-6.03607 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.29769,-0.0868 -0.30121,-0.0737 -0.30414,-0.0605 -0.30648,-0.0472 -0.30825,-0.0338 -0.30941,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30942,0.0203 -0.30824,0.0338 -0.30649,0.0472 -0.30414,0.0605 -0.3012,0.0737 -0.29769,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.45479,6.03608 -0.26511,0.16088 -0.25783,0.17228 -0.25007,0.18336 -0.24185,0.19409 -0.23313,0.20446 -0.22399,0.21443 -0.21443,0.224 -0.20446,0.23314 -0.1941,0.24183 -0.18335,0.25007 -0.17235,0.25783 -0.1608,0.2651 -0.14908,0.27186 -0.13717,0.27812 -0.12491,0.28383 -0.11247,0.289 -0.0997,0.29363 -0.0867,0.29771 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 7e-5,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11248,0.28901 0.12491,0.28383 0.13717,0.27811 0.14907,0.27186 0.16081,0.2651 0.17235,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23313 0.21443,0.224 0.22398,0.21443 0.23314,0.20446 0.24184,0.19409 0.25007,0.18336 0.25784,0.17228 0.26503,0.16087 10.45472,6.03608 0.27187,0.14915 0.27811,0.13715 0.28383,0.12488 0.289,0.11239 0.29364,0.0997 0.29769,0.0868 0.3012,0.0737 0.30414,0.0605 0.30649,0.0472 0.30824,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30941,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11239 0.28383,-0.12488 0.27811,-0.13715 0.27187,-0.14915 10.45479,-6.03608 0.2651,-0.16088 0.25784,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22398,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.1941,-0.24184 0.18335,-0.25007 0.17235,-0.25783 0.16081,-0.2651 0.14907,-0.27186 0.13717,-0.27811 0.12491,-0.28383 0.11248,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31001 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="48"
+ data-key-i="44"
+ id="path743" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 347.63195,162.70346 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11247,0.28901 0.12491,0.28383 0.13717,0.27811 0.14908,0.27186 0.1608,0.2651 0.17235,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23313 0.21443,0.224 0.22399,0.21443 0.23313,0.20446 0.24185,0.19409 0.25007,0.18336 0.25783,0.17228 0.26503,0.16088 10.45472,6.03607 0.27187,0.14915 0.27811,0.13715 0.28383,0.12488 0.289,0.11239 0.29364,0.0997 0.29769,0.0868 0.30121,0.0737 0.30414,0.0605 0.30648,0.0472 0.30825,0.0338 0.30941,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30824,-0.0338 0.30649,-0.0472 0.30414,-0.0605 0.3012,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11239 0.28383,-0.12488 0.27811,-0.13715 0.27187,-0.14915 10.45479,-6.03608 0.26511,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24185,-0.19409 0.23313,-0.20446 0.22399,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.1941,-0.24184 0.18335,-0.25007 0.17235,-0.25783 0.1608,-0.2651 0.14908,-0.27186 0.13717,-0.27811 0.12491,-0.28383 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0202,-0.30942 0.007,-0.31001 -2e-5,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11248,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14907,-0.27186 -0.16081,-0.2651 -0.17235,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20446,-0.23313 -0.21443,-0.224 -0.22398,-0.21443 -0.23314,-0.20446 -0.24184,-0.19409 -0.25007,-0.18336 -0.25784,-0.17228 -0.26503,-0.16088 -10.45472,-6.03607 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.29769,-0.0868 -0.3012,-0.0737 -0.30414,-0.0605 -0.30649,-0.0472 -0.30824,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30941,0.0203 -0.30825,0.0338 -0.30648,0.0472 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.45479,6.03608 -0.2651,0.16088 -0.25784,0.17228 -0.25007,0.18336 -0.24184,0.19409 -0.23314,0.20446 -0.22398,0.21443 -0.21443,0.224 -0.20446,0.23314 -0.1941,0.24183 -0.18335,0.25007 -0.17235,0.25783 -0.16081,0.2651 -0.14907,0.27186 -0.13717,0.27812 -0.12491,0.28383 -0.11248,0.289 -0.0997,0.29363 -0.0867,0.29771 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="49"
+ data-key-i="45"
+ id="path745" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 406.94945,138.44011 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.29769,-0.0868 -0.30121,-0.0737 -0.30414,-0.0605 -0.30648,-0.0472 -0.30825,-0.0338 -0.30941,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30942,0.0203 -0.30824,0.0338 -0.30649,0.0472 -0.30414,0.0605 -0.30121,0.0737 -0.29768,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.45479,6.03608 -0.26511,0.16088 -0.25783,0.17228 -0.25007,0.18336 -0.24185,0.19409 -0.23313,0.20446 -0.22399,0.21443 -0.21443,0.224 -0.20446,0.23314 -0.1941,0.24183 -0.18335,0.25007 -0.17235,0.25783 -0.1608,0.2651 -0.14908,0.27186 -0.13717,0.27812 -0.12491,0.28383 -0.11247,0.289 -0.0997,0.29363 -0.0867,0.29771 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 7e-5,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11248,0.28901 0.12491,0.28383 0.13717,0.27811 0.14907,0.27186 0.16081,0.2651 0.17235,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23313 0.21443,0.224 0.22398,0.21443 0.23314,0.20446 0.24184,0.19409 0.25007,0.18336 0.25784,0.17228 0.26503,0.16087 10.45472,6.03608 0.27187,0.14915 0.27811,0.13715 0.28383,0.12488 0.289,0.11239 0.29364,0.0997 0.29768,0.0868 0.30121,0.0737 0.30414,0.0605 0.30649,0.0472 0.30824,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30941,-0.0203 0.30825,-0.0338 0.30648,-0.0472 0.30414,-0.0605 0.30121,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11239 0.28383,-0.12488 0.27811,-0.13715 0.27187,-0.14915 10.45479,-6.03608 0.2651,-0.16088 0.25784,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22398,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.1941,-0.24184 0.18335,-0.25007 0.17235,-0.25783 0.16081,-0.2651 0.14907,-0.27186 0.13717,-0.27811 0.12491,-0.28383 0.11248,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31001 -7e-5,-12.07216 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11247,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14908,-0.27186 -0.1608,-0.2651 -0.17235,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20446,-0.23313 -0.21443,-0.224 -0.22399,-0.21443 -0.23314,-0.20446 -0.24184,-0.19409 -0.25007,-0.18336 -0.25783,-0.17228 -0.26504,-0.16088 z"
- class="btn" /><path
+ class="key led"
+ data-led-i="50"
+ data-key-i="46"
+ id="path747" /><path
style="fill:#ececec;stroke:#000000;stroke-width:0.999999"
d="m 459.15964,150.6313 -0.007,-0.31002 -0.0203,-0.30942 -0.0338,-0.30825 -0.0471,-0.30648 -0.0604,-0.30413 -0.0737,-0.30121 -0.0867,-0.2977 -0.0997,-0.29363 -0.11248,-0.28901 -0.12491,-0.28383 -0.13717,-0.27811 -0.14907,-0.27186 -0.16081,-0.2651 -0.17235,-0.25783 -0.18335,-0.25007 -0.1941,-0.24184 -0.20446,-0.23313 -0.21443,-0.224 -0.22398,-0.21443 -0.23314,-0.20446 -0.24184,-0.19409 -0.25007,-0.18336 -0.25784,-0.17228 -0.26503,-0.16088 -10.45471,-6.03607 -0.27187,-0.14914 -0.27811,-0.13716 -0.28383,-0.12489 -0.289,-0.11238 -0.29364,-0.0997 -0.29769,-0.0868 -0.3012,-0.0737 -0.30414,-0.0605 -0.30649,-0.0472 -0.30824,-0.0338 -0.30942,-0.0203 -0.31002,-0.007 -0.31002,0.007 -0.30942,0.0203 -0.30824,0.0338 -0.30648,0.0472 -0.30414,0.0605 -0.30121,0.0737 -0.29769,0.0868 -0.29364,0.0997 -0.289,0.11238 -0.28383,0.12489 -0.27811,0.13716 -0.27187,0.14914 -10.45479,6.03608 -0.2651,0.16088 -0.25784,0.17228 -0.25007,0.18336 -0.24184,0.19409 -0.23314,0.20446 -0.22399,0.21443 -0.21442,0.224 -0.20446,0.23314 -0.1941,0.24183 -0.18335,0.25007 -0.17236,0.25783 -0.1608,0.2651 -0.14907,0.27186 -0.13717,0.27812 -0.12492,0.28383 -0.11247,0.289 -0.0997,0.29363 -0.0867,0.29771 -0.0737,0.3012 -0.0604,0.30413 -0.0471,0.30648 -0.0338,0.30825 -0.0203,0.30943 -0.007,0.31 7e-5,12.07216 0.007,0.31002 0.0203,0.30942 0.0338,0.30825 0.0471,0.30648 0.0604,0.30413 0.0737,0.30121 0.0867,0.2977 0.0997,0.29363 0.11247,0.28901 0.12491,0.28383 0.13717,0.27811 0.14908,0.27186 0.1608,0.2651 0.17235,0.25783 0.18335,0.25007 0.1941,0.24184 0.20446,0.23313 0.21443,0.224 0.22399,0.21443 0.23313,0.20446 0.24185,0.19409 0.25007,0.18336 0.25783,0.17228 0.26504,0.16087 10.45471,6.03608 0.27187,0.14915 0.27811,0.13715 0.28383,0.12488 0.289,0.11239 0.29364,0.0997 0.29769,0.0868 0.30121,0.0737 0.30414,0.0605 0.30648,0.0472 0.30824,0.0338 0.30942,0.0203 0.31002,0.007 0.31002,-0.007 0.30942,-0.0203 0.30824,-0.0338 0.30649,-0.0472 0.30414,-0.0605 0.3012,-0.0737 0.29769,-0.0868 0.29364,-0.0997 0.289,-0.11239 0.28383,-0.12488 0.27811,-0.13715 0.27187,-0.14915 10.45479,-6.03608 0.26511,-0.16088 0.25783,-0.17228 0.25007,-0.18336 0.24184,-0.19409 0.23314,-0.20446 0.22399,-0.21443 0.21443,-0.224 0.20446,-0.23313 0.1941,-0.24184 0.18335,-0.25007 0.17235,-0.25783 0.1608,-0.2651 0.14908,-0.27186 0.13717,-0.27811 0.12491,-0.28383 0.11247,-0.28901 0.0997,-0.29363 0.0867,-0.29771 0.0737,-0.3012 0.0604,-0.30413 0.0471,-0.30648 0.0338,-0.30825 0.0203,-0.30942 0.007,-0.31001 z"
- class="btn" /></g></g></svg>
+ class="key led"
+ data-led-i="51"
+ data-key-i="47"
+ id="path749" /></g></g></svg>